From ae07247a82b5f7ad5d4f651b6ef7987834406dfb Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 31 Jul 2022 03:23:07 +0200 Subject: [PATCH 1/5] Add links to all notifications that do not have a link (#3431) * refactor link * [FR] Error notifications should provide link to the error Fixes #3367 --- InvenTree/InvenTree/models.py | 8 +++++--- InvenTree/common/serializers.py | 21 +++++++++++++++++++-- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/InvenTree/InvenTree/models.py b/InvenTree/InvenTree/models.py index e8226cc5fb..67d0989188 100644 --- a/InvenTree/InvenTree/models.py +++ b/InvenTree/InvenTree/models.py @@ -650,13 +650,15 @@ def after_error_logged(sender, instance: Error, created: bool, **kwargs): users = get_user_model().objects.filter(is_staff=True) + link = InvenTree.helpers.construct_absolute_url( + reverse('admin:error_report_error_change', kwargs={'object_id': instance.pk}) + ) + context = { 'error': instance, 'name': _('Server Error'), 'message': _('An error has been logged by the server.'), - 'link': InvenTree.helpers.construct_absolute_url( - reverse('admin:error_report_error_change', kwargs={'object_id': instance.pk}) - ) + 'link': link } common.notifications.trigger_notification( diff --git a/InvenTree/common/serializers.py b/InvenTree/common/serializers.py index f703b82fbc..3bec482ff6 100644 --- a/InvenTree/common/serializers.py +++ b/InvenTree/common/serializers.py @@ -1,10 +1,12 @@ """JSON serializers for common components.""" +from django.urls import reverse + from rest_framework import serializers from common.models import (InvenTreeSetting, InvenTreeUserSetting, NotificationMessage) -from InvenTree.helpers import get_objectreference +from InvenTree.helpers import construct_absolute_url, get_objectreference from InvenTree.serializers import InvenTreeModelSerializer @@ -157,7 +159,22 @@ class NotificationMessageSerializer(InvenTreeModelSerializer): def get_target(self, obj): """Function to resolve generic object reference to target.""" - return get_objectreference(obj, 'target_content_type', 'target_object_id') + target = get_objectreference(obj, 'target_content_type', 'target_object_id') + + if 'link' not in target: + # Check if objekt has an absolute_url function + if hasattr(obj.target_object, 'get_absolute_url'): + target['link'] = obj.target_object.get_absolute_url() + else: + # check if user is staff - link to admin + request = self.context['request'] + if request.user and request.user.is_staff: + meta = obj.target_object._meta + target['link'] = construct_absolute_url(reverse( + f'admin:{meta.db_table}_change', + kwargs={'object_id': obj.target_object_id} + )) + return target def get_source(self, obj): """Function to resolve generic object reference to source.""" From d4eae9da116be3a1770ee757db0acdd25b2d471c Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 31 Jul 2022 11:23:14 +1000 Subject: [PATCH 2/5] New Crowdin updates (#3440) * updated translation base * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin * Fix: New translations django.po from Crowdin Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- InvenTree/locale/cs/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/de/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/el/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/en/LC_MESSAGES/django.po | 456 +++++++++--------- InvenTree/locale/es/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/es_MX/LC_MESSAGES/django.po | 456 +++++++++--------- InvenTree/locale/fa/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/fr/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/he/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/hu/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/id/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/it/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/ja/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/ko/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/nl/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/no/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/pl/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/pt/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/pt_br/LC_MESSAGES/django.po | 456 +++++++++--------- InvenTree/locale/ru/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/sv/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/th/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/tr/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/vi/LC_MESSAGES/django.po | 458 +++++++++---------- InvenTree/locale/zh/LC_MESSAGES/django.po | 458 +++++++++---------- 25 files changed, 5722 insertions(+), 5722 deletions(-) diff --git a/InvenTree/locale/cs/LC_MESSAGES/django.po b/InvenTree/locale/cs/LC_MESSAGES/django.po index efa5a99a7c..a4b34a7e38 100644 --- a/InvenTree/locale/cs/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:21\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:34\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -229,8 +229,8 @@ msgstr "Komentář" msgid "File comment" msgstr "Komentář k souboru" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/de/LC_MESSAGES/django.po b/InvenTree/locale/de/LC_MESSAGES/django.po index ab1d6dbea9..9d10549746 100644 --- a/InvenTree/locale/de/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:21\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -229,8 +229,8 @@ msgstr "Kommentar" msgid "File comment" msgstr "Datei-Kommentar" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Quell-Lagerartikel" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Datei" msgid "Select {name} file to upload" msgstr "{name} Datei zum Hochladen auswählen" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "Einstellungs-Wert" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "Wert ist keine gültige Option" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Wahrheitswert erforderlich" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "Nur Ganzzahl eingeben" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "Schlüsseltext muss eindeutig sein" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Keine Gruppe" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Neustart erforderlich" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "Eine Einstellung wurde geändert, die einen Neustart des Servers erfordert" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "Name der Serverinstanz" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "Kurze Beschreibung der Instanz" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Name der Instanz verwenden" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "Den Namen der Instanz in der Titelleiste verwenden" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "Anzeige von `Über` einschränken" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "Zeige das `Über` Fenster nur Administratoren" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Firmenname" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "interner Firmenname" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Basis-URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Basis-URL für dieses Instanz" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Standardwährung" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Standardwährung" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Von URL herunterladen" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Herunterladen von externen Bildern und Dateien von URLs erlaubt" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Bacode-Feature verwenden" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Barcode-Scanner Unterstützung" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "Barcode Webcam-Unterstützung" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "Barcode-Scannen über Webcam im Browser erlauben" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "IPN Regex" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "RegEx Muster für die Zuordnung von Teil-IPN" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Mehrere Artikel mit gleicher IPN erlaubt" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Mehrere Artikel mit gleicher IPN erlaubt" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Ändern von IPN erlaubt" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Ändern der IPN während des Bearbeiten eines Teils erlaubt" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Teil-Stückliste kopieren" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "Stückliste von Teil kopieren wenn das Teil dupliziert wird " -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "Teil-Parameter kopieren" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "Parameter-Daten für dieses Teil kopieren wenn das Teil dupliziert wird" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "Teil-Testdaten kopieren" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Test-Daten für dieses Teil kopieren wenn das Teil dupliziert wird" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Kategorie-Parametervorlage kopieren" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "Kategorie-Parameter Vorlagen kopieren wenn ein Teil angelegt wird" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Vorlage" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Teile sind standardmäßig Vorlagen" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Baugruppe" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Teile können standardmäßig aus anderen Teilen angefertigt werden" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Komponente" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Teile können standardmäßig in Baugruppen benutzt werden" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Kaufbar" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Artikel sind grundsätzlich kaufbar" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Verkäuflich" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Artikel sind grundsätzlich verkaufbar" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Nachverfolgbar" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Artikel sind grundsätzlich verfolgbar" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuell" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Teile sind grundsätzlich virtuell" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Import in Ansichten anzeigen" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Importassistent in einigen Teil-Ansichten anzeigen" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Preis in Formularen anzeigen" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Teilpreis in einigen Formularen anzeigen" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Preis in Stückliste anzeigen" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Preisinformationen in Stücklisten Tabellen einbeziehen" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Preisverlauf anzeigen" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "Historische Preise für Teil anzeigen" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Verwandte Teile anzeigen" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Verwandte Teile eines Teils anzeigen" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Ausgangsbestand erstellen" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Ausgangsbestand beim Erstellen von Teilen erstellen" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Interne Preise" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "Interne Preise für Teile aktivieren" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "Interner Preis als Stückliste-Preis" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "Interner Preis (falls vorhanden) in Stücklisten-Preisberechnungen verwenden" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Anzeigeformat für Teilenamen" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Format für den Namen eines Teiles" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Labeldruck aktivieren" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Labeldruck über die Website aktivieren" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Berichte aktivieren" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Berichterstellung aktivieren" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Entwickler-Modus" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Berichte im Entwickler-Modus generieren (als HTML)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Seitengröße" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Standardseitenformat für PDF-Bericht" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "Testberichte aktivieren" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Erstellung von Test-Berichten aktivieren" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "Testberichte anhängen" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Beim Drucken eines Testberichts dem zugehörigen Lagerbestand eine Kopie des Testberichts beifügen" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "Losnummer Vorlage" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "Vorlage für die Generierung von Standard-Losnummern für Lagerbestände" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "Bestands-Ablauf" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "Ablaufen von Bestand ermöglichen" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "Abgelaufenen Bestand verkaufen" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "Verkauf von abgelaufenem Bestand erlaubt" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "Bestands-Stehzeit" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "Anzahl an Tagen, an denen Bestand als abgestanden markiert wird, bevor sie ablaufen" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "Tage" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "Abgelaufenen Bestand verbauen" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "Verbauen von abgelaufenen Bestand erlaubt" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "Bestands-Eigentümerkontrolle" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "Eigentümerkontrolle für Lagerorte und Teile aktivieren" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "Auftrag Standardsendung" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "Erstelle eine Standardsendung für Aufträge" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Passwort vergessen aktivieren" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Passwort-vergessen-Funktion auf den Anmeldeseiten aktivieren" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Anmeldung erlauben" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Selbstregistrierung für Benutzer auf den Anmeldeseiten aktivieren" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "SSO aktivieren" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "SSO auf den Anmeldeseiten aktivieren" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Email-Adresse erforderlich" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "Benutzer müssen bei der Registrierung eine E-Mail angeben" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "SSO-Benutzer automatisch ausfüllen" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "Benutzer-Details automatisch aus SSO-Konto ausfüllen" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "E-Mail zweimal" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "Bei der Registrierung den Benutzer zweimal nach der E-Mail-Adresse fragen" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "Passwort zweimal" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "Bei der Registrierung den Benutzer zweimal nach dem Passwort fragen" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "Gruppe bei Registrierung" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "Gruppe der neue Benutzer bei der Registrierung zugewiesen werden" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "MFA erzwingen" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "Benutzer müssen Multifaktor-Authentifizierung verwenden." -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "Plugins beim Start prüfen" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "Beim Start überprüfen, ob alle Plugins installiert sind - Für Container aktivieren" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "URL-Integration aktivieren" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "Plugins zum Hinzufügen von URLs aktivieren" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "Navigations-Integration aktivieren" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "Plugins zur Integration in die Navigation aktivieren" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "App-Integration aktivieren" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "Plugins zum Hinzufügen von Apps aktivieren" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "Terminplan-Integration aktivieren" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "Geplante Aufgaben aktivieren" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "Ereignis-Integration aktivieren" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "Plugins ermöglichen auf interne Ereignisse zu reagieren" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "Abonnierte Teile anzeigen" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "Zeige abonnierte Teile auf der Startseite" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Abonnierte Kategorien anzeigen" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "Zeige abonnierte Teilkategorien auf der Startseite" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Neueste Teile anzeigen" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Zeige neueste Teile auf der Startseite" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "Aktuelle Teile-Stände" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "Anzahl der neusten Teile auf der Startseite" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "Nicht validierte Stücklisten anzeigen" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "Zeige Stücklisten, die noch nicht validiert sind, auf der Startseite" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Neueste Bestandänderungen anzeigen" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "Zeige zuletzt geänderte Lagerbestände auf der Startseite" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "aktueller Bestand" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "Anzahl des geänderten Bestands auf der Startseite" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Niedrigen Bestand anzeigen" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Zeige geringen Bestand auf der Startseite" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Lerren Bestand anzeigen" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "Zeige aufgebrauchte Lagerartikel auf der Startseite" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Benötigten Bestand anzeigen" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "Zeige Bestand für Bauaufträge auf der Startseite" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "Abgelaufenen Bestand anzeigen" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "Zeige abgelaufene Lagerbestände auf der Startseite" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "Alten Bestand anzeigen" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "Zeige überfällige Lagerartikel auf der Startseite" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "Ausstehende Bauaufträge anzeigen" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "Zeige ausstehende Bauaufträge auf der Startseite" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "Zeige überfällige Bauaufträge" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "Zeige überfällige Bauaufträge auf der Startseite" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "Ausstehende POs anzeigen" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "Zeige ausstehende POs auf der Startseite" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "Überfällige POs anzeigen" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "Zeige überfällige POs auf der Startseite" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "Ausstehende SOs anzeigen" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "Zeige ausstehende SOs auf der Startseite" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "Überfällige SOs anzeigen" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "Zeige überfällige SOs auf der Startseite" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "Label inline anzeigen" -#: common/models.py:1462 +#: common/models.py:1463 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:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "Berichte inline anzeigen" -#: common/models.py:1469 +#: common/models.py:1470 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:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "Teile suchen" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "Teile in der Suchvorschau anzeigen" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "Zuliefererteile durchsuchen" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "Zuliefererteile in der Suchvorschau anzeigen" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "Herstellerteile durchsuchen" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "Herstellerteile in der Suchvorschau anzeigen" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "Inaktive Teile in der Suchvorschau ausblenden" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "Kategorien durchsuchen" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "Teilekategorien in der Suchvorschau anzeigen" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "Bestand durchsuchen" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "Lagerartikel in Suchvorschau anzeigen" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "Nicht verfügbare Artikel ausblenden" -#: common/models.py:1518 +#: common/models.py:1519 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:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "Lagerorte durchsuchen" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "Lagerorte in Suchvorschau anzeigen" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "Firmen durchsuchen" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "Firmen in der Suchvorschau anzeigen" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "Bestellungen durchsuchen" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "Bestellungen in der Suchvorschau anzeigen" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktive Bestellungen ausblenden" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktive Bestellungen in der Suchvorschau ausblenden" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "Aufträge durchsuchen" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "Aufträge in der Suchvorschau anzeigen" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "Inaktive Aufträge ausblenden" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktive Aufträge in der Suchvorschau ausblenden" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "Anzahl Suchergebnisse" -#: common/models.py:1567 +#: common/models.py:1568 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:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "zeige Bestand in Eingabemasken" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "Zeige den verfügbaren Bestand in einigen Eingabemasken" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "Esc-Taste schließt Formulare" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "Benutze die Esc-Taste, um Formulare zu schließen" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "Fixierter Navigationsleiste" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "Position der Navigationsleiste am oberen Bildschirmrand fixieren" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "Datumsformat" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "Bevorzugtes Format für die Anzeige von Daten" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Teilzeitplanung" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "Zeige Zeitplanung für Teile" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "Preisstaffelungs Anzahl" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Preis" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "Stückpreis für die angegebene Anzahl" diff --git a/InvenTree/locale/el/LC_MESSAGES/django.po b/InvenTree/locale/el/LC_MESSAGES/django.po index 56e0ab60fb..724cb926b7 100644 --- a/InvenTree/locale/el/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/en/LC_MESSAGES/django.po b/InvenTree/locale/en/LC_MESSAGES/django.po index 8874a5b7cb..536322c0dd 100644 --- a/InvenTree/locale/en/LC_MESSAGES/django.po +++ b/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: 2022-07-27 22:07+0000\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -230,8 +230,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -994,7 +994,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1646,913 +1646,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/es/LC_MESSAGES/django.po b/InvenTree/locale/es/LC_MESSAGES/django.po index 44b5f1eebf..f54f9cb0f4 100644 --- a/InvenTree/locale/es/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/es_MX/LC_MESSAGES/django.po b/InvenTree/locale/es_MX/LC_MESSAGES/django.po index 8874a5b7cb..536322c0dd 100644 --- a/InvenTree/locale/es_MX/LC_MESSAGES/django.po +++ b/InvenTree/locale/es_MX/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-27 22:07+0000\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -230,8 +230,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -994,7 +994,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1646,913 +1646,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/fa/LC_MESSAGES/django.po b/InvenTree/locale/fa/LC_MESSAGES/django.po index c748d50ac0..d520d6fe28 100644 --- a/InvenTree/locale/fa/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/fr/LC_MESSAGES/django.po b/InvenTree/locale/fr/LC_MESSAGES/django.po index 2173510909..53d6e81d0d 100644 --- a/InvenTree/locale/fr/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -229,8 +229,8 @@ msgstr "Commentaire" msgid "File comment" msgstr "Commentaire du fichier" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Stock d'origine de l'article" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Fichier" msgid "Select {name} file to upload" msgstr "Sélectionner le fichier {name} à uploader" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "Valeur du paramètre" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "La valeur choisie n'est pas une option valide" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "La valeur doit être une valeur booléenne" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "La valeur doit être un nombre entier" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "La chaîne de caractères constituant la clé doit être unique" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Pas de groupe" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Redémarrage nécessaire" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "Un paramètre a été modifié, ce qui nécessite un redémarrage du serveur" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "Nom de l'instance du serveur" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "Chaîne de caractères descriptive pour l'instance serveur" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Utiliser le nom de l'instance" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "Utiliser le nom de l’instance dans la barre de titre" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "Limiter l'affichage de `about`" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "Afficher la modale `about` uniquement aux super-utilisateurs" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Nom de la société" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Nom de société interne" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "URL de base" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "URL de base pour l'instance serveur" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Devise par défaut" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Devises par défaut" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Télécharger depuis l'URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Autoriser le téléchargement d'images distantes et de fichiers à partir d'URLs externes" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "Confirmation requise" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "Exiger une confirmation explicite de l’utilisateur pour certaines actions." -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Support des code-barres" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Activer le support du scanner de code-barres" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "Prise en charge de la webcam code-barres" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "Autoriser la numérisation de codes-barres via la webcam dans le navigateur" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "Regex IPN" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "Expression régulière pour la correspondance avec l'IPN de la Pièce" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Autoriser les IPN dupliqués" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Permettre à plusieurs pièces de partager le même IPN" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Autoriser l'édition de l'IPN" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Permettre de modifier la valeur de l'IPN lors de l'édition d'une pièce" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Copier les données de la pièce" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "Copier les données des paramètres par défaut lors de la duplication d'une pièce" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "Copier les données des paramètres de la pièce" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "Copier les données des paramètres par défaut lors de la duplication d'une pièce" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "Copier les données de test de la pièce" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Copier les données de test par défaut lors de la duplication d'une pièce" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Copier les templates de paramètres de catégorie" -#: common/models.py:935 +#: common/models.py:936 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:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Modèle" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Les pièces sont des templates par défaut" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Assemblage" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Les composantes peuvent être assemblées à partir d'autres composants par défaut" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Composant" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Les composantes peuvent être utilisées comme sous-composants par défaut" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Achetable" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Les pièces sont achetables par défaut" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Vendable" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Les pièces sont vendables par défaut" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Traçable" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Les pièces sont traçables par défaut" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuelle" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Les pièces sont virtuelles par défaut" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Afficher l'import dans les vues" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Afficher l'assistant d'importation pour certaine vues de produits" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Afficher le prix dans les formulaires" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Afficher le prix de la pièce dans certains formulaires" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Afficher le prix dans la BOM" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Inclure les informations de prix dans les tableaux de la BOM" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Historique des prix" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "Afficher l'historique des prix pour la pièce" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Afficher les pièces connexes" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Afficher les pièces connexes à une pièce" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Créer un stock initial" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Créer le stock initial lors de la création d'une pièce" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Prix internes" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "Activer les prix internes pour les pièces" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "Prix interne comme prix nomenclature" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "Utiliser le prix interne (si définie) dans le calcul du prix nomenclature" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Format d'affichage du nom de la pièce" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Format pour afficher le nom de la pièce" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Activer l'impression d'étiquettes" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Activer l'impression d'étiquettes depuis l'interface Web" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "Étiquette image DPI" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Résolution DPI lors de la génération de fichiers image pour fournir aux plugins d'impression d'étiquettes" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Activer les rapports" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Activer la génération de rapports" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Mode Débogage" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Générer des rapports en mode debug (sortie HTML)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Taille de la page" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Taille de page par défaut pour les rapports PDF" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "Activer les rapports de test" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Activer la génération de rapports de test" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "Joindre des rapports de test" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Lors de l'impression d'un rapport de test, joignez une copie du rapport de test à l'article en stock associé" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "Modèle de code de lot" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "Modèle pour générer des codes par défaut pour les articles en stock" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "Expiration du stock" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "Activer la fonctionnalité d'expiration du stock" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "Vendre le stock expiré" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "Autoriser la vente de stock expiré" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "jours" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Activer les mots de passe oubliés" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Activer les inscriptions" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "Activer le SSO" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "Activer le SSO sur les pages de connexion" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Email requis" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "Saisie automatique des utilisateurs SSO" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "Courriel en double" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "Activer l'intégration de plugins" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "Activer l'intégration de plugin pour ajouter des apps" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Afficher les dernières pièces" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Afficher les dernières modifications du stock" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Afficher le stock épuisé" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "Afficher les stocks épuisés sur la page d'accueil" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Afficher le stock nécessaire" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "Format préféré pour l'affichage des dates" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Prix" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/he/LC_MESSAGES/django.po b/InvenTree/locale/he/LC_MESSAGES/django.po index 03ced3b9ad..be9b79e0c1 100644 --- a/InvenTree/locale/he/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -229,8 +229,8 @@ msgstr "הערה" msgid "File comment" msgstr "הערת קובץ" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/hu/LC_MESSAGES/django.po b/InvenTree/locale/hu/LC_MESSAGES/django.po index a453cf3530..e3173b3b33 100644 --- a/InvenTree/locale/hu/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -229,8 +229,8 @@ msgstr "Megjegyzés" msgid "File comment" msgstr "Leírás, bővebb infó" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Forrás készlet tétel" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1646,913 +1646,913 @@ msgstr "{name.title()} Fájl" msgid "Select {name} file to upload" msgstr "{name} fájl kiválasztása feltöltéshez" -#: common/models.py:451 +#: common/models.py:452 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:453 +#: common/models.py:454 msgid "Settings value" msgstr "Beállítás értéke" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "A kiválasztott érték nem egy érvényes lehetőség" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Az érték bináris kell legyen" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "Az érték egész szám kell legyen" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "Kulcs string egyedi kell legyen" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Nincs csoport" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Újraindítás szükséges" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "Egy olyan beállítás megváltozott ami a kiszolgáló újraindítását igényli" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "Kiszolgáló példány neve" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "String leíró a kiszolgáló példányhoz" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Példány név használata" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "Példány név használata a címsorban" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "Verzió infók megjelenítésének tiltása" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "Verzió infók megjelenítése csak admin felhasználóknak" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Cég neve" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Belső cégnév" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Kiindulási URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Kiindulási URL a kiszolgáló példányhoz" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Alapértelmezett pénznem" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Alapértelmezett pénznem" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Letöltés URL-ről" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Képek és fájlok letöltésének engedélyezése külső URL-ről" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "Letöltési méret korlát" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "Maximum megengedett letöltési mérete a távoli képeknek" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "Megerősítés igénylése" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "Kérjen felhasználói megerősítést bizonyos műveletekhez" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Vonalkód támogatás" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Vonalkód olvasó engedélyezése" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "Webkamerás vonalkód olvasás" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "Webkamerás kódolvasás engedélyezése a böngészőből" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "IPN reguláris kifejezés" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "Reguláris kifejezés ami illeszkedik az alkatrész IPN-re" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Többször is előforduló IPN engedélyezése" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Azonos IPN használható legyen több alkatrész esetén is" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "IPN szerkesztésének engedélyezése" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "IPN megváltoztatásánsak engedélyezése az alkatrész szerkesztése közben" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Alkatrészjegyzék adatok másolása" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "Alkatrész másoláskor az alkatrészjegyzék adatokat is másoljuk alapból" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "Alkatrész paraméterek másolása" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "Alkatrész másoláskor a paramétereket is másoljuk alapból" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "Alkatrész teszt adatok másolása" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Alkatrész másoláskor a tesztek adatait is másoljuk alapból" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Kategória paraméter sablonok másolása" -#: common/models.py:935 +#: common/models.py:936 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:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Sablon" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Alkatrészek alapból sablon alkatrészek legyenek" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Gyártmány" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Alkatrészeket alapból lehessen gyártani másik alkatrészekből" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Összetevő" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Alkatrészek alapból használhatók összetevőként más alkatrészekhez" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Beszerezhető" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Alkatrészek alapból beszerezhetők legyenek" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Értékesíthető" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Alkatrészek alapból eladhatók legyenek" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Követésre kötelezett" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Alkatrészek alapból követésre kötelezettek legyenek" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuális" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Alkatrészek alapból virtuálisak legyenek" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Importálás megjelenítése a nézetekben" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Import segéd megjelenítése néhány alkatrész nézetben" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Ár megjelenítése a formokon" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Alkatrész árak megjelenítése néhány formon" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Ár megjelenítése az alkatrészjegyzékben" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Árinformációk megjelenítése az alkatrészjegyzék táblákban" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Ártörténet megjelenítése" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "Alkatrész ártörténet megjelenítése" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Kapcsolódó alkatrészek megjelenítése" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Alkatrész kapcsolódó alkatrészeinek megjelenítése" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Kezdeti készlet létrehozása" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Kezdeti készlet megadása az alkatrész létrehozásakor" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Belső árak" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "Alkatrészekhez belső ár engedélyezése" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "Belső ár alkatrészjegyzék árként" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "Belső ár használata (ha van) az alkatrészjegyzék árszámításában" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Alkatrész név megjelenítés formátuma" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Formátum az alkatrész név megjelenítéséhez" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Címke nyomtatás engedélyezése" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Címke nyomtatás engedélyezése a web felületről" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "Címke kép DPI" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Képek felbontása amik átadásra kerülnek címkenyomtató pluginoknak" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Riportok engedélyezése" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Riportok előállításának engedélyezése" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Debug mód" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Riportok előállítása HTML formátumban (hibakereséshez)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Lapméret" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Alapértelmezett lapméret a PDF riportokhoz" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "Teszt riportok engedélyezése" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Teszt riportok előállításának engedélyezése" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "Teszt riportok hozzáadása" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Teszt riport nyomtatáskor egy másolat hozzáadása a készlet tételhez" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "Batch kód sablon" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "Sablon a készlet tételekhez alapértelmezett batch kódok előállításához" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "Készlet lejárata" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "Készlet lejárat kezelésének engedélyezése" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "Lejárt készlet értékesítése" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "Lejárt készlet értékesítésének engedélyezése" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "Álló készlet ideje" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "Napok száma amennyivel a lejárat előtt a készlet tételeket állottnak vesszük" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "nap" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "Lejárt készlet gyártása" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "Gyártás engedélyezése lejárt készletből" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "Készlet tulajdonosok kezelése" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "Tuajdonosok kezelésének engedélyezése a készlet helyekre és tételekre" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "Gyártási utasítás azonosító minta" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "Szükséges minta a gyártási utasítás azonosító mező előállításához" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "Vevői rendelés azonosító minta" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "Szükséges minta a vevői rendelés azonosító mező előállításához" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "Vevői rendeléshez alapértelmezett szállítmány" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "Szállítmány automatikus létrehozása az új vevő rendelésekhez" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "Beszerzési rendelés azonosító minta" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "Szükséges minta a beszerzési rendelés azonosító mező előállításához" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Elfelejtett jelszó engedélyezése" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Elfelejtett jelszó funkció engedélyezése a bejentkező oldalon" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Regisztráció engedélyezése" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Felhaszálók önkéntes regisztrációjának engedélyezése a bejelentkező oldalon" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "SSO engedélyezése" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "SSO engedélyezése a bejelentkező oldalon" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Email szükséges" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "Kötelező email megadás regisztrációkor" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "SSO felhasználók automatikus kitöltése" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "Felhasználó adatainak automatikus kitöltése az SSO fiókadatokból" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "Email kétszer" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "Regisztráláskor kétszer kérdezze a felhasználó email címét" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "Jelszó kétszer" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "Regisztráláskor kétszer kérdezze a felhasználó jelszavát" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "Csoport regisztráláskor" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "Csoport amihez a frissen regisztrált felhasználók hozzá lesznek rendelve" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "Többfaktoros hitelesítés kényszerítése" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "A felhasználóknak többfaktoros hitelesítést kell használniuk." -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "Pluginok ellenőrzése indításkor" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "Ellenőrizze induláskor hogy minden plugin telepítve van - engedélyezd konténer környezetben (docker)" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "URL integráció engedélyezése" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "URL útvonalalak hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "Navigációs integráció engedélyezése" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "Navigációs integráció engedélyezése a pluginok számára" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "App integráció engedélyezése" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "App hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "Ütemezés integráció engedélyezése" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "Háttérben futó feladatok hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "Esemény integráció engedélyezése" -#: common/models.py:1296 +#: common/models.py:1297 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:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 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:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "Értesítésre beállított alkatrészek megjelenítése" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "Alkatrész értesítések megjelenítése a főoldalon" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Értesítésre beállított kategóriák megjelenítése" -#: common/models.py:1343 +#: common/models.py:1344 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:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Legújabb alkatrészek megjelenítése" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Legújabb alkatrészek megjelenítése a főoldalon" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "Legfrissebb alkatrész szám" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "Főoldalon megjelenítendő legújabb alkatrészek" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "Jóváhagyás nélküli alkatrészjegyzékek megjelenítése" -#: common/models.py:1364 +#: common/models.py:1365 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:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Legfrissebb készlet változások megjelenítése" -#: common/models.py:1371 +#: common/models.py:1372 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:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "Legfrissebb készlet mennyiség" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "Főoldalon megjelenítendő legújabb készlet tételek száma" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Alacsony készlet megjelenítése" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Alacsony készletek megjelenítése a főoldalon" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Kimerült készlet megjelenítése" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "Kimerült készletek megjelenítése a főoldalon" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Gyártáshoz szükséges készlet megjelenítése" -#: common/models.py:1399 +#: common/models.py:1400 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:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "Lejárt készlet megjelenítése" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "Lejárt készletek megjelenítése a főoldalon" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "Állott készlet megjelenítése" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "Álló készletek megjelenítése a főoldalon" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "Függő gyártások megjelenítése" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "Folyamatban lévő gyártások megjelenítése a főoldalon" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "Késésben lévő gyártások megjelenítése" -#: common/models.py:1427 +#: common/models.py:1428 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:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "Kintlévő beszerzési rendelések megjelenítése" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "Kintlévő beszerzési rendelések megjelenítése a főoldalon" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "Késésben lévő megrendelések megjelenítése" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "Késésben lévő megrendelések megjelenítése a főoldalon" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "Függő vevői rendelések megjelenítése" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "Függő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "Késésben lévő vevői rendelések megjelenítése" -#: common/models.py:1455 +#: common/models.py:1456 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:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "Beágyazott címke megjelenítés" -#: common/models.py:1462 +#: common/models.py:1463 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:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "Beágyazott riport megjelenítés" -#: common/models.py:1469 +#: common/models.py:1470 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:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "Alkatrészek keresése" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "Alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "Beszállítói alkatrészek keresése" -#: common/models.py:1483 +#: common/models.py:1484 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:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "Gyártói alkatrészek keresése" -#: common/models.py:1490 +#: common/models.py:1491 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:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:1497 +#: common/models.py:1498 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:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "Kategóriák keresése" -#: common/models.py:1504 +#: common/models.py:1505 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:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "Készlet keresése" -#: common/models.py:1511 +#: common/models.py:1512 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:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "Nem elérhető készlet tételek elrejtése" -#: common/models.py:1518 +#: common/models.py:1519 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:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "Helyek keresése" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "Készlet helyek megjelenítése a keresési előnézetben" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "Cégek keresése" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "Cégek megjelenítése a keresési előnézetben" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "Beszerzési rendelések keresése" -#: common/models.py:1539 +#: common/models.py:1540 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:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktív beszerzési rendelések kihagyása" -#: common/models.py:1546 +#: common/models.py:1547 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:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "Vevői rendelések keresése" -#: common/models.py:1553 +#: common/models.py:1554 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:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "Inaktív vevői rendelések kihagyása" -#: common/models.py:1560 +#: common/models.py:1561 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:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "Keresési előnézet eredményei" -#: common/models.py:1567 +#: common/models.py:1568 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:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "Mennyiség megjelenítése a formokon" -#: common/models.py:1574 +#: common/models.py:1575 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:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "ESC billentyű zárja be a formot" -#: common/models.py:1581 +#: common/models.py:1582 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:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "Rögzített menüsor" -#: common/models.py:1588 +#: common/models.py:1589 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:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "Dátum formátum" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "Preferált dátum formátum a dátumok kijelzésekor" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Alkatrész ütemezés" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "Alkatrész ütemezési információk megjelenítése" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "Árlépcső mennyiség" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Ár" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "Egységár egy meghatározott mennyiség esetén" diff --git a/InvenTree/locale/id/LC_MESSAGES/django.po b/InvenTree/locale/id/LC_MESSAGES/django.po index 856aa5afa8..eccfc9757d 100644 --- a/InvenTree/locale/id/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/it/LC_MESSAGES/django.po b/InvenTree/locale/it/LC_MESSAGES/django.po index 6e75e5322e..6386200352 100644 --- a/InvenTree/locale/it/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -229,8 +229,8 @@ msgstr "Commento" msgid "File comment" msgstr "Commento del file" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Origine giacenza articolo" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "Seleziona il file {name} da caricare" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "Valore impostazioni" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "Il valore specificato non è un opzione valida" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Il valore deve essere un valore booleano" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "Il valore deve essere un intero" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "La stringa chiave deve essere univoca" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Nessun gruppo" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Riavvio richiesto" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "È stata modificata un'impostazione che richiede un riavvio del server" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "Descrittore stringa per l'istanza del server" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Utilizza nome istanza" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "Usa il nome dell'istanza nella barra del titolo" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Nome azienda" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Nome interno dell'azienda" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "URL Base" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "URL di base per l'istanza del server" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Valuta predefinita" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Valuta predefinita" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Scarica dall'URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Consenti il download di immagini e file remoti da URL esterno" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Supporto Codice A Barre" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Abilita supporto scanner codici a barre" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "Schema di espressione regolare per l'articolo corrispondente IPN" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Consenti duplicati IPN" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Permetti a più articoli di condividere lo stesso IPN" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Permetti modifiche al part number interno (IPN)" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Consenti di modificare il valore del part number durante la modifica di un articolo" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Copia I Dati Della distinta base dell'articolo" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "Copia I Dati Parametro dell'articolo" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "Copia i dati dei parametri di default quando si duplica un articolo" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Copia i dati di prova di default quando si duplica un articolo" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Copia Template Parametri Categoria" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "Copia i modelli dei parametri categoria quando si crea un articolo" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Gli articoli sono modelli per impostazione predefinita" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Assemblaggio" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Gli articoli possono essere assemblate da altri componenti per impostazione predefinita" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Componente" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Gli articoli possono essere assemblati da altri componenti per impostazione predefinita" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Acquistabile" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Vendibile" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Tracciabile" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Gli articoli sono tracciabili per impostazione predefinita" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuale" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Gli articoli sono virtuali per impostazione predefinita" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Mostra l'importazione nelle viste" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Mostra la procedura guidata di importazione in alcune viste articoli" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Mostra il prezzo nei moduli" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Mostra il prezzo dell'articolo in alcuni moduli" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Mostra il prezzo nella BOM" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Includi le informazioni sui prezzi nelle tabelle BOM" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Mostra articoli correlati" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Visualizza parti correlate per ogni articolo" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Crea giacenza iniziale" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Crea giacenza iniziale sulla creazione articolo" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Prezzi interni" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "Abilita prezzi interni per gli articoli" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "Prezzo interno come BOM-Price" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "Utilizzare il prezzo interno (se impostato) nel calcolo del prezzo BOM" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Formato di visualizzazione del nome articolo" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Formato per visualizzare il nome dell'articolo" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Abilita Report di Stampa" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Abilita generazione di report di stampa" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Modalità Debug" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Genera report in modalità debug (output HTML)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Dimensioni pagina" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Dimensione predefinita della pagina per i report PDF" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Abilita generazione di stampe di prova" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "Scadenza giacenza" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "Abilita funzionalità di scadenza della giacenza" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "Vendi giacenza scaduta" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "Consenti la vendita di stock scaduti" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "Numero di giorni in cui gli articoli in magazzino sono considerati obsoleti prima della scadenza" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "giorni" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "Controllo della proprietà della giacenza" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "Abilita il controllo della proprietà sulle posizioni e gli oggetti in giacenza" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Abilita password dimenticata" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Abilita la funzione password dimenticata nelle pagine di accesso" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Abilita registrazione" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Abilita auto-registrazione per gli utenti nelle pagine di accesso" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "SSO abilitato" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "Abilita SSO nelle pagine di accesso" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Email richiesta" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "Richiedi all'utente di fornire una email al momento dell'iscrizione" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "Riempimento automatico degli utenti SSO" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "Compila automaticamente i dettagli dell'utente dai dati dell'account SSO" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "Tasto impostazioni (deve essere univoco - maiuscole e minuscole" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Mostra le categorie sottoscritte" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "Mostra le categorie dei componenti sottoscritti nella homepage" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Mostra ultimi articoli" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:1462 +#: common/models.py:1463 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:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:1469 +#: common/models.py:1470 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:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "Risultati Dell'Anteprima Di Ricerca" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Prezzo" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/ja/LC_MESSAGES/django.po b/InvenTree/locale/ja/LC_MESSAGES/django.po index 02ee0b0c9b..b275466619 100644 --- a/InvenTree/locale/ja/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -229,8 +229,8 @@ msgstr "コメント:" msgid "File comment" msgstr "ファイルコメント" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "テンプレート" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "パーツはデフォルトのテンプレートです" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "アセンブリ" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "パーツはデフォルトで他のコンポーネントから組み立てることができます" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "コンポーネント" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "パーツはデフォルトでサブコンポーネントとして使用できます" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "購入可能" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "パーツはデフォルトで購入可能です" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "パーツはデフォルトで販売可能です" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "追跡可能" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "パーツはデフォルトで追跡可能です" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "デバッグモード" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/ko/LC_MESSAGES/django.po b/InvenTree/locale/ko/LC_MESSAGES/django.po index c5c3df2cee..41ede223a8 100644 --- a/InvenTree/locale/ko/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} 파일" msgid "Select {name} file to upload" msgstr "업로드할 {name} 파일을 선택하세요" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "재시작 필요" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "회사명" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "기본 통화" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "기본 통화" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "URL에서 다운로드" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "바코드 지원" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "구입 가능" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "판매 가능" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "디버그 모드" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "페이지 크기" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "PDF 보고서 기본 페이지 크기" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "SSO 활성화" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "로그인 페이지에서 SSO 활성화" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "이메일 필요" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "두 번 보내기" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/nl/LC_MESSAGES/django.po b/InvenTree/locale/nl/LC_MESSAGES/django.po index 2e9d9150d5..a97259b65e 100644 --- a/InvenTree/locale/nl/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -229,8 +229,8 @@ msgstr "Opmerking" msgid "File comment" msgstr "Bestand opmerking" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Bron voorraadartikel" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Bestand" msgid "Select {name} file to upload" msgstr "Kies {name} bestand om te uploaden" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig)" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "Instellingswaarde" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "Gekozen waarde is geen geldige optie" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Waarde moet een booleaanse waarde zijn" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "Waarde moet een geheel getal zijn" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "Sleutelreeks moet uniek zijn" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Geen groep" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Opnieuw opstarten vereist" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "Een instelling is gewijzigd waarvoor een herstart van de server vereist is" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "ID Serverinstantie" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "Stringbeschrijving voor de server instantie" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Gebruik de instantie naam" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "Gebruik de naam van de instantie in de titelbalk" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "Tonen `over` beperken" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Bedrijfsnaam" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Interne bedrijfsnaam" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Basis-URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Basis URL voor serverinstantie" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Standaard Valuta" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Standaard valuta" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Download van URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Download van afbeeldingen en bestanden vanaf een externe URL toestaan" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Streepjescodeondersteuning" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Streepjescodescanner ondersteuning inschakelen" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "Barcode Webcam Ondersteuning" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "Barcode via webcam scannen in browser toestaan" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "IPN Regex" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "Regulier expressiepatroon voor het overeenkomende Onderdeel IPN" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Duplicaat IPN toestaan" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Toestaan dat meerdere onderdelen dezelfde IPN gebruiken" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Bewerken IPN toestaan" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Sta het wijzigen van de IPN toe tijdens het bewerken van een onderdeel" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Kopieer Onderdeel Stuklijstgegevens" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "Kopieer standaard stuklijstgegevens bij het dupliceren van een onderdeel" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "Kopieer Onderdeel Parametergegevens" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "Parametergegevens standaard kopiëren bij het dupliceren van een onderdeel" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "Kopieer Onderdeel Testdata" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Testdata standaard kopiëren bij het dupliceren van een onderdeel" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Kopiëer Categorieparameter Sjablonen" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "Kopieer categorieparameter sjablonen bij het aanmaken van een onderdeel" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Sjabloon" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Onderdelen zijn standaard sjablonen" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Samenstelling" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Onderdelen kunnen standaard vanuit andere componenten worden samengesteld" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Component" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Onderdelen kunnen standaard worden gebruikt als subcomponenten" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Koopbaar" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Onderdelen kunnen standaard gekocht worden" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Verkoopbaar" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Onderdelen kunnen standaard verkocht worden" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Volgbaar" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Onderdelen kunnen standaard gevolgd worden" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtueel" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Onderdelen zijn standaard virtueel" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Toon Import in Weergaven" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Toon de importwizard in sommige onderdelenweergaven" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Toon Prijs in Formulieren" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Toon onderdeelprijs in sommige formulieren" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Prijs in Stuklijst Weergeven" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Prijsinformatie in Stuklijsttabellen opnemen" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Toon Prijsgeschiedenis" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "Toon historische prijzen voor Onderdeel" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Verwante onderdelen tonen" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Verwante onderdelen voor een onderdeel tonen" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Eerste voorraad aanmaken" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Aanmaken eerste voorraad bij het maken van onderdeel" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Interne Prijzen" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "Inschakelen van interne prijzen voor onderdelen" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "Interne Prijs als Stuklijst Prijs" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "Gebruik de interne prijs (indien ingesteld) in stuklijst prijsberekeningen" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Onderdelennaam Weergaveopmaak" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Opmaak om de onderdeelnaam weer te geven" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Printen van labels Inschakelen" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Printen van labels via de webinterface inschakelen" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "Label Afbeelding DPI" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI resolutie bij het genereren van afbeelginsbestanden voor label printer plugins" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Activeer Rapportages" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Activeer het genereren van rapporten" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Foutopsporingsmodus" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Rapporten genereren in debug modus (HTML uitvoer)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Paginagrootte" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Standaard paginagrootte voor PDF rapporten" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "Activeer Testrapporten" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Activeer het genereren van testrapporten" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "Testrapporten Toevoegen" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Bij het afdrukken van een Testrapport, voeg een kopie van het Testrapport toe aan het bijbehorende Voorraadartikel" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "Batchcode Sjabloon" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "Sjabloon voor het genereren van standaard batchcodes voor voorraadartikelen" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "Verlopen Voorraad" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "Verlopen voorraad functionaliteit inschakelen" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "Verkoop Verlopen Voorraad" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "Verkoop verlopen voorraad toestaan" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "Voorraad Vervaltijd" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "Aantal dagen voordat voorraadartikelen als verouderd worden beschouwd voor ze verlopen" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "dagen" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "Produceer Verlopen Voorraad" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "Sta productie met verlopen voorraad toe" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "Voorraad Eigenaar Toezicht" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "Eigenaarstoezicht over voorraadlocaties en items inschakelen" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Wachtwoord vergeten functie inschakelen" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Wachtwoord vergeten functie inschakelen op de inlogpagina's" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Registratie inschakelen" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Zelfregistratie voor gebruikers op de inlogpagina's inschakelen" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "SSO inschakelen" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "SSO inschakelen op de inlogpagina's" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "E-mailadres verplicht" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "Vereis gebruiker om e-mailadres te registreren bij aanmelding" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "E-mail twee keer" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "Laat gebruikers twee keer om hun wachtwoord vragen tijdens het aanmelden" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "Groep bij aanmelding" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "Groep waaraan nieuwe gebruikers worden toegewezen bij registratie" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "MFA afdwingen" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "Gebruikers moeten multifactor-beveiliging gebruiken." -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "Controleer plugins bij het opstarten" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "Activeer URL-integratie" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Toon laatste onderdelen" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Toon laatste onderdelen op de startpagina" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "Recente Voorraadtelling" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Toon recente voorraadwijzigingen" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "Toon recent aangepaste voorraadartikelen op de startpagina" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "Recente Voorraadtelling" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Toon lage voorraad" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Toon lage voorraad van artikelen op de startpagina" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Toon lege voorraad" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "Toon lege voorraad van artikelen op de startpagina" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Toon benodigde voorraad" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "Toon benodigde voorraad van artikelen voor productie op de startpagina" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "Toon verlopen voorraad" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "Toon verlopen voorraad van artikelen op de startpagina" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "Toon verouderde voorraad" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "Toon verouderde voorraad van artikelen op de startpagina" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "Toon openstaande producties" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "Toon openstaande producties op de startpagina" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "Toon achterstallige productie" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "Toon achterstallige producties op de startpagina" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "Toon uitstaande PO's" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "Toon uitstaande PO's op de startpagina" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "Toon achterstallige PO's" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "Toon achterstallige PO's op de startpagina" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "Toon uitstaande SO's" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "Toon uitstaande SO's op de startpagina" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "Toon achterstallige SO's" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "Toon achterstallige SO's op de startpagina" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "Zoek Onderdelen" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "Zoek in Voorraad" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "Toon inkooporders in het zoekvenster" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "Inactieve Inkooporders Weglaten" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inactieve inkooporders weglaten in het zoekvenster" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "Verkooporders zoeken" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "Inactieve Verkooporders Weglaten" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Prijs" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/no/LC_MESSAGES/django.po b/InvenTree/locale/no/LC_MESSAGES/django.po index 25cd8d9cf2..6b1978a191 100644 --- a/InvenTree/locale/no/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -229,8 +229,8 @@ msgstr "Kommenter" msgid "File comment" msgstr "Kommentar til fil" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Kilde lagervare" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "Velg {name} fil som skal lastes opp" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "Innstillingsnøkkel (må være unik - ufølsom for store of små bokstaver)" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "Valgt verdi er ikke et gyldig alternativ" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Verdien må være en boolsk verdi" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Ingen gruppe" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Omstart påkrevd" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "En innstilling har blitt endrett som krever en serveromstart" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Firmanavn" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Internt firmanavn" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Standardvaluta" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Standardvaluta" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Last ned fra URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Tilat nedlastning av eksterne bilder og filer fra ekstern URL" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Strekkode støtte" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Aktiver skrekkodeleser støtte" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Tilat duplisert IPN" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Tillat flere deler å dele samme IPN" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Tillat redigering av IPN" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Tillat å endre IPN-verdien mens du redigerer en del" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "Kopier testdata som standard ved duplisering av en del" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "Kopier kategori parametermaler ved oppretting av en del" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Mal" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Deler er maler som standard" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Montering" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Deler kan settes sammen fra andre komponenter som standard" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Komponent" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Deler kan bli brukt som underkomponenter som standard" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Kjøpbar" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Deler er kjøpbare som standard" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Salgbar" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Deler er salgbare som standard" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Sporbar" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Deler er sporbare som standard" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuelle" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Deler er virtuelle som standard" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Vis import i visninger" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Vis importveiviseren i noen deler visninger" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Vis pris i skjemaer" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Vis delpris i noen skjemaer" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Aktiver passord glemt" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Ativer funskjon for glemt passord på innloggingssidene" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Aktiver registrering" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Aktiver egenregistrerting for brukerer på påloggingssidene" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "Aktiver SSO" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "Aktiver SSO på innloggingssidene" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "E-postadresse kreves" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "Krevt at brukeren angi e-post ved registrering" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "Auto-utfyll SSO brukere" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "Fyll automatisk ut brukeropplysninger fra SSO kontodata" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "E-post to ganger" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "Ved registrering spør brukere to ganger for e-posten" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "Passord to ganger" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "Ved registrerting, spør brukere to ganger for passord" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "Gruppe for hvilke nye brukere som er tilknyttet registrering" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "Brukere må bruke flerfaktorsikkerhet." -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "Aktiver URL integrering" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "Aktiver navigasjonsintegrering" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "Aktiver app integrasjon" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "Vis abbonerte deler" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "Vis abbonerte deler på hjemmesiden" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Vis abbonerte kategorier" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "Vis abbonerte delkatekorier på hjemmesiden" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Vis nyeste deler" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Vis nyeste deler på hjemmesiden" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "Antall nylig deler" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "Vis uvaliderte BOMs" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "Vis BOMs som venter validering på hjemmesiden" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Vis nylige lagerendringer" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "Vis nylig endret lagervarer på hjemmesiden" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "Siste lagertelling" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "Antall nylige lagervarer som skal vises på indeksside" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Vis lav lager" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Vis lav lagervarer på hjemmesiden" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Vis tom lagervarer" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/pl/LC_MESSAGES/django.po b/InvenTree/locale/pl/LC_MESSAGES/django.po index 839274a44d..967bb91b2c 100644 --- a/InvenTree/locale/pl/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -229,8 +229,8 @@ msgstr "Komentarz" msgid "File comment" msgstr "Komentarz pliku" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Lokalizacja magazynowania przedmiotu" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Plik" msgid "Select {name} file to upload" msgstr "Wybierz plik {name} do przesłania" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "Ustawienia wartości" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "Wartość musi być wartością binarną" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "Wartość musi być liczbą całkowitą" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "Ciąg musi być unikatowy" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Brak grupy" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Wymagane ponowne uruchomienie" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "Zmieniono ustawienie, które wymaga restartu serwera" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "Użyj nazwy instancji" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Nazwa firmy" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Wewnętrzna nazwa firmy" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Bazowy URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Bazowy adres URL dla instancji serwera" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Domyślna waluta" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Domyślna waluta" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Pobierz z adresu URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Zezwól na pobieranie zewnętrznych obrazów i plików z zewnętrznego URL" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Obsługa kodu kreskowego" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Włącz obsługę skanera kodów" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "Wyrażenie regularne IPN" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Zezwól na powtarzający się IPN" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Zezwól na edycję IPN" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "Skopiuj BOM komponentu" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Szablon" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Złożenie" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Komponent" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Możliwość zakupu" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Części są domyślnie z możliwością zakupu" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Możliwość sprzedaży" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Części są domyślnie z możliwością sprzedaży" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Możliwość śledzenia" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Części są domyślnie z możliwością śledzenia" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Wirtualny" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Części są domyślnie wirtualne" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Pokaż cenę w BOM" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "Dołącz informacje cenowe w tabelach BOM" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Pokaż historię cen" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Utwórz początkowy stan magazynowy" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Ceny wewnętrzne" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Włącz drukowanie etykiet" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Włącz drukowanie etykiet z interfejsu WWW" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "DPI etykiety" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Włącz raporty" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Tryb Debugowania" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Rozmiar strony" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Domyślna wielkość strony dla raportów PDF" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "Włącz generowanie raportów testów" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "dni" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "Włącz opcję zapomnianego hasła" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "Włącz funkcję zapomnianego hasła na stronach logowania" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "Włącz rejestrację" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "Włącz samodzielną rejestrację dla użytkowników na stronach logowania" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "Włącz SSO" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "Włącz SSO na stronach logowania" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Adres e-mail jest wymagany" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "Autouzupełnianie użytkowników SSO" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "Automatycznie wypełnij dane użytkownika z danych konta SSO" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "E-mail dwa razy" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich adres e-mail" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "Hasło dwukrotnie" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich hasło" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "Grupuj przy rejestracji" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "Wymuś MFA" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "Użytkownicy muszą używać zabezpieczeń wieloskładnikowych." -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "Sprawdź wtyczki przy starcie" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "Włącz integrację URL" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "Włącz wtyczki, aby dodać ścieżki URL" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "Włącz integrację z aplikacją" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "Włącz wtyczki, aby dodać aplikacje" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "Włącz wtyczki, aby uruchamiać zaplanowane zadania" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "Klucz ustawień (musi być unikalny - niewrażliwy na wielkość liter" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "Pokaż obserwowane części" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "Pokaż obserwowane części na stronie głównej" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Pokaż obserwowane kategorie" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "Pokaż obserwowane kategorie części na stronie głównej" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Pokaż najnowsze części" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Pokaż najnowsze części na stronie głównej" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Pokaż niski stan magazynowy" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Pokaż elementy o niskim stanie na stronie głównej" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Pokaż wymagany stan zapasów" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "Szukaj części" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "Ukryj nieaktywne części" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "Pokaż ilość w formularzach" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "Stały pasek nawigacyjny" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "Format daty" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "Preferowany format wyświetlania dat" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planowanie komponentów" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Cena" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/pt/LC_MESSAGES/django.po b/InvenTree/locale/pt/LC_MESSAGES/django.po index 06ceb8d031..a3f4b74431 100644 --- a/InvenTree/locale/pt/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -229,8 +229,8 @@ msgstr "Comentario" msgid "File comment" msgstr "Comentario sobre arquivo" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/pt_br/LC_MESSAGES/django.po b/InvenTree/locale/pt_br/LC_MESSAGES/django.po index 17ca3387e9..209f9ff8a1 100644 --- a/InvenTree/locale/pt_br/LC_MESSAGES/django.po +++ b/InvenTree/locale/pt_br/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-27 22:07+0000\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -230,8 +230,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -994,7 +994,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1646,913 +1646,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/ru/LC_MESSAGES/django.po b/InvenTree/locale/ru/LC_MESSAGES/django.po index b5bf64d483..85f4c74869 100644 --- a/InvenTree/locale/ru/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -229,8 +229,8 @@ msgstr "Комментарий" msgid "File comment" msgstr "Комментарий к файлу" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Исходный складской предмет" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "Выберите {name} файл для загрузки" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Требуется перезапуск" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Название компании" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Внутреннее название компании" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Базовая ссылка" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Базовая ссылка для экземпляра сервера" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Валюта по умолчанию" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Валюта по умолчанию" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Скачать по ссылке" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Разрешить повторяющиеся IPN" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "Разрешить редактирование IPN" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Шаблон" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "По умолчанию детали являются шаблонами" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Сборка" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Компонент" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Можно продавать" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Отслеживание" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Показывать цену в формах" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "Показывать цену в BOM" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Показывать историю цены" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Показывать связанные детали" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Режим отладки" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "Необходимо указать EMail" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "Показывать детали, на которые включены уведомления" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "Показывать детали, на которые включены уведомления, на главной странице" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "Показывать категории, на которые включены уведомления" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "Показывать категории, на которые включены уведомления, на главной странице" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Показывать последние детали" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "Показывать последние детали на главной странице" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "Показывать непроверенные BOMы" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "Показывать BOMы, ожидающие проверки, на главной странице" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "Показывать изменившиеся складские запасы" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "Показывать единицы хранения с недавно изменившимися складскими запасами на главной странице" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "Показывать низкие складские запасы" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "Показывать единицы хранения с низкими складскими запасами на главной странице" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "Показывать закончившиеся детали" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "Показывать закончившиеся на складе единицы хранения на главной странице" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "Показывать требуемые детали" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "Показывать требуемые для сборки единицы хранения на главной странице" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "Показывать просрочку" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "Показывать единицы хранения с истёкшим сроком годности на главной странице" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "Показывать залежалые" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "Показывать залежалые единицы хранения на главной странице" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "Показывать незавершённые сборки" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "Показывать незавершённые сборки на главной странице" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "Показывать просроченные сборки" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "Показывать просроченные сборки на главной странице" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Цена" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/sv/LC_MESSAGES/django.po b/InvenTree/locale/sv/LC_MESSAGES/django.po index 9a794f6d0b..d0f0435a60 100644 --- a/InvenTree/locale/sv/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -229,8 +229,8 @@ msgstr "Kommentar" msgid "File comment" msgstr "Fil kommentar" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Fil" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "Ingen grupp" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "Omstart krävs" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "Serverinstans (Namn)" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Företagsnamn" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "Internt företagsnamn" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Bas-URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "Bas-URL för serverinstans" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Standardvaluta" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Standardvaluta" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "Ladda ned från URL" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Tillåt nedladdning av bilder och filer från extern URL" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "Kräv bekräftelse" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "Kräv uttrycklig användarbekräftelse för vissa åtgärder." -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Stöd för streckkoder" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Aktivera stöd för streckkodsläsare" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Virtuell" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Delar är virtuella som standard" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "Visa import i vyer" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "Visa importguiden i vissa delvyer" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Visa pris i formulär" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "Visa delars pris i vissa formulär" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "Visa prishistorik" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "Visa historisk prissättning för del" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "Visa relaterade delar" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "Visa relaterade delar för en del" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "Skapa ursprungligt lager" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "Skapa ursprungligt lager när delen skapas" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "Interna priser" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "Visningsformat för delnamn" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "Formatera för att visa artikelnamnet" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "Aktivera etikettutskrift" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "Aktivera etikettutskrift från webbgränssnittet" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "Etikettbild DPI" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "Aktivera rapporter" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "Aktivera generering av rapporter" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Debugläge" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Sidstorlek" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "Standard sidstorlek för PDF-rapporter" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "Aktivera testrapporter" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/th/LC_MESSAGES/django.po b/InvenTree/locale/th/LC_MESSAGES/django.po index 5a18f1a623..0987c89202 100644 --- a/InvenTree/locale/th/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:21\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:34\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -229,8 +229,8 @@ msgstr "" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/tr/LC_MESSAGES/django.po b/InvenTree/locale/tr/LC_MESSAGES/django.po index 2c7428212e..fd5785752b 100644 --- a/InvenTree/locale/tr/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -229,8 +229,8 @@ msgstr "Yorum" msgid "File comment" msgstr "Dosya yorumu" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "Kaynak stok kalemi" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "{name.title()} Dosya" msgid "Select {name} file to upload" msgstr "{name} dosyasını yüklemek için seçin" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "Anahtar dizesi benzersiz olmalı" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "Şirket adı" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "Ana URL" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "Varsayılan Para Birimi" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "Varsayılan para birimi" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "URL'den indir" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "Harici URL'den resim ve dosyaların indirilmesine izin ver" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "Barkod Desteği" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "Barkod tarayıcı desteğini etkinleştir" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "DPN Regex" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "Parça DPN eşleştirmesi için Düzenli İfade Kalıbı (Regex)" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "Yinelenen DPN'ye İzin Ver" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "Birden çok parçanın aynı DPN'yi paylaşmasına izin ver" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "DPN Düzenlemeye İzin Ver" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "Parçayı düzenlerken DPN değiştirmeye izin ver" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "Kategori Paremetre Sablonu Kopyala" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "Parça oluştururken kategori parametre şablonlarını kopyala" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "Şablon" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "Parçaları varsayılan olan şablondur" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "Montaj" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "Parçalar varsayılan olarak başka bileşenlerden monte edilebilir" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "Bileşen" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "Parçalar varsayılan olarak alt bileşen olarak kullanılabilir" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "Satın Alınabilir" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "Parçalar varsayılan olarak satın alınabilir" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "Satılabilir" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "Parçalar varsayılan olarak satılabilir" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "Takip Edilebilir" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "Parçalar varsayılan olarak takip edilebilir" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "Sanal" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "Parçalar varsayılan olarak sanaldır" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "Formlarda Fiyat Göster" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "İlgili parçaları göster" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "Hata Ayıklama Modu" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "Raporları hata ayıklama modunda üret (HTML çıktısı)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "Sayfa Boyutu" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "PDF raporlar için varsayılan sayfa boyutu" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "günler" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "Stok konumu ve ögeler üzerinde sahiplik kontrolünü etkinleştirin" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "Formlarda Miktarı Göster" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "Fiyat" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/vi/LC_MESSAGES/django.po b/InvenTree/locale/vi/LC_MESSAGES/django.po index b61d5f1132..01a3488e26 100644 --- a/InvenTree/locale/vi/LC_MESSAGES/django.po +++ b/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: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -229,8 +229,8 @@ msgstr "Bình luận" msgid "File comment" msgstr "" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "Hiển thị nguyên liệu mới nhất" -#: common/models.py:1350 +#: common/models.py:1351 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:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" diff --git a/InvenTree/locale/zh/LC_MESSAGES/django.po b/InvenTree/locale/zh/LC_MESSAGES/django.po index 255c1ea010..a4504556de 100644 --- a/InvenTree/locale/zh/LC_MESSAGES/django.po +++ b/InvenTree/locale/zh/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-27 07:45+0000\n" -"PO-Revision-Date: 2022-07-28 02:20\n" +"POT-Creation-Date: 2022-07-30 23:22+0000\n" +"PO-Revision-Date: 2022-07-30 23:33\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -229,8 +229,8 @@ msgstr "注释" msgid "File comment" msgstr "文件注释" -#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1636 -#: common/models.py:1637 common/models.py:1860 common/models.py:1861 +#: InvenTree/models.py:412 InvenTree/models.py:413 common/models.py:1637 +#: common/models.py:1638 common/models.py:1860 common/models.py:1861 #: common/models.py:2123 common/models.py:2124 part/models.py:2193 #: part/models.py:2213 plugin/models.py:238 plugin/models.py:239 #: report/templates/report/inventree_test_report_base.html:96 @@ -993,7 +993,7 @@ msgstr "源库存项" #: build/models.py:1330 build/serializers.py:193 #: build/templates/build/build_base.html:82 -#: build/templates/build/detail.html:34 common/models.py:1668 +#: build/templates/build/detail.html:34 common/models.py:1669 #: company/templates/company/supplier_part.html:279 order/models.py:897 #: order/models.py:1423 order/serializers.py:1155 #: order/templates/order/order_wizard/match_parts.html:30 part/forms.py:40 @@ -1645,913 +1645,913 @@ msgstr "" msgid "Select {name} file to upload" msgstr "" -#: common/models.py:451 +#: common/models.py:452 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:453 +#: common/models.py:454 msgid "Settings value" msgstr "" -#: common/models.py:494 +#: common/models.py:495 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:511 +#: common/models.py:512 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:522 +#: common/models.py:523 msgid "Value must be an integer value" msgstr "" -#: common/models.py:567 +#: common/models.py:568 msgid "Key string must be unique" msgstr "" -#: common/models.py:751 +#: common/models.py:752 msgid "No group" msgstr "" -#: common/models.py:804 +#: common/models.py:805 msgid "Restart required" msgstr "" -#: common/models.py:805 +#: common/models.py:806 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:812 +#: common/models.py:813 msgid "Server Instance Name" msgstr "" -#: common/models.py:814 +#: common/models.py:815 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:819 +#: common/models.py:820 msgid "Use instance name" msgstr "" -#: common/models.py:820 +#: common/models.py:821 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:826 +#: common/models.py:827 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:827 +#: common/models.py:828 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:833 company/models.py:93 company/models.py:94 +#: common/models.py:834 company/models.py:93 company/models.py:94 msgid "Company name" msgstr "公司名称" -#: common/models.py:834 +#: common/models.py:835 msgid "Internal company name" msgstr "内部公司名称" -#: common/models.py:839 +#: common/models.py:840 msgid "Base URL" msgstr "" -#: common/models.py:840 +#: common/models.py:841 msgid "Base URL for server instance" msgstr "" -#: common/models.py:847 +#: common/models.py:848 msgid "Default Currency" msgstr "" -#: common/models.py:848 +#: common/models.py:849 msgid "Default currency" msgstr "" -#: common/models.py:854 +#: common/models.py:855 msgid "Download from URL" msgstr "" -#: common/models.py:855 +#: common/models.py:856 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:861 +#: common/models.py:862 msgid "Download Size Limit" msgstr "" -#: common/models.py:862 +#: common/models.py:863 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:873 +#: common/models.py:874 msgid "Require confirm" msgstr "" -#: common/models.py:874 +#: common/models.py:875 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:880 templates/InvenTree/settings/sidebar.html:33 +#: common/models.py:881 templates/InvenTree/settings/sidebar.html:33 msgid "Barcode Support" msgstr "" -#: common/models.py:881 +#: common/models.py:882 msgid "Enable barcode scanner support" msgstr "启用条形码扫描支持" -#: common/models.py:887 +#: common/models.py:888 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:888 +#: common/models.py:889 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:894 +#: common/models.py:895 msgid "IPN Regex" msgstr "" -#: common/models.py:895 +#: common/models.py:896 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:899 +#: common/models.py:900 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:900 +#: common/models.py:901 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:906 +#: common/models.py:907 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:907 +#: common/models.py:908 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:913 +#: common/models.py:914 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:914 +#: common/models.py:915 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:920 +#: common/models.py:921 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:921 +#: common/models.py:922 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:927 +#: common/models.py:928 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:928 +#: common/models.py:929 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:934 +#: common/models.py:935 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:935 +#: common/models.py:936 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:941 part/models.py:2412 report/models.py:158 +#: common/models.py:942 part/models.py:2412 report/models.py:158 #: templates/js/translated/table_filters.js:38 #: templates/js/translated/table_filters.js:484 msgid "Template" msgstr "模板" -#: common/models.py:942 +#: common/models.py:943 msgid "Parts are templates by default" msgstr "" -#: common/models.py:948 part/models.py:887 templates/js/translated/bom.js:1448 +#: common/models.py:949 part/models.py:887 templates/js/translated/bom.js:1448 #: templates/js/translated/table_filters.js:176 #: templates/js/translated/table_filters.js:447 msgid "Assembly" msgstr "组装" -#: common/models.py:949 +#: common/models.py:950 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:955 part/models.py:893 +#: common/models.py:956 part/models.py:893 #: templates/js/translated/table_filters.js:455 msgid "Component" msgstr "组件" -#: common/models.py:956 +#: common/models.py:957 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:962 part/models.py:904 +#: common/models.py:963 part/models.py:904 msgid "Purchaseable" msgstr "可购买" -#: common/models.py:963 +#: common/models.py:964 msgid "Parts are purchaseable by default" msgstr "商品默认可购买" -#: common/models.py:969 part/models.py:909 +#: common/models.py:970 part/models.py:909 #: templates/js/translated/table_filters.js:476 msgid "Salable" msgstr "可销售" -#: common/models.py:970 +#: common/models.py:971 msgid "Parts are salable by default" msgstr "商品默认可销售" -#: common/models.py:976 part/models.py:899 +#: common/models.py:977 part/models.py:899 #: templates/js/translated/table_filters.js:46 #: templates/js/translated/table_filters.js:108 #: templates/js/translated/table_filters.js:488 msgid "Trackable" msgstr "可追踪" -#: common/models.py:977 +#: common/models.py:978 msgid "Parts are trackable by default" msgstr "商品默认可跟踪" -#: common/models.py:983 part/models.py:919 +#: common/models.py:984 part/models.py:919 #: part/templates/part/part_base.html:151 #: templates/js/translated/table_filters.js:42 #: templates/js/translated/table_filters.js:492 msgid "Virtual" msgstr "虚拟" -#: common/models.py:984 +#: common/models.py:985 msgid "Parts are virtual by default" msgstr "商品默认是虚拟的" -#: common/models.py:990 +#: common/models.py:991 msgid "Show Import in Views" msgstr "视图中显示导入" -#: common/models.py:991 +#: common/models.py:992 msgid "Display the import wizard in some part views" msgstr "在一些商品视图中显示导入向导" -#: common/models.py:997 +#: common/models.py:998 msgid "Show Price in Forms" msgstr "在表格中显示价格" -#: common/models.py:998 +#: common/models.py:999 msgid "Display part price in some forms" msgstr "以某些表格显示商品价格" -#: common/models.py:1009 +#: common/models.py:1010 msgid "Show Price in BOM" msgstr "" -#: common/models.py:1010 +#: common/models.py:1011 msgid "Include pricing information in BOM tables" msgstr "" -#: common/models.py:1021 +#: common/models.py:1022 msgid "Show Price History" msgstr "" -#: common/models.py:1022 +#: common/models.py:1023 msgid "Display historical pricing for Part" msgstr "" -#: common/models.py:1028 +#: common/models.py:1029 msgid "Show related parts" msgstr "显示相关商品" -#: common/models.py:1029 +#: common/models.py:1030 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1035 +#: common/models.py:1036 msgid "Create initial stock" msgstr "创建初始库存" -#: common/models.py:1036 +#: common/models.py:1037 msgid "Create initial stock on part creation" msgstr "" -#: common/models.py:1042 +#: common/models.py:1043 msgid "Internal Prices" msgstr "内部价格" -#: common/models.py:1043 +#: common/models.py:1044 msgid "Enable internal prices for parts" msgstr "启用内部商品价格" -#: common/models.py:1049 +#: common/models.py:1050 msgid "Internal Price as BOM-Price" msgstr "内部价格为BOM价格" -#: common/models.py:1050 +#: common/models.py:1051 msgid "Use the internal price (if set) in BOM-price calculations" msgstr "在 BOM价格计算中使用内部价格(如设置)" -#: common/models.py:1056 +#: common/models.py:1057 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1057 +#: common/models.py:1058 msgid "Format to display the part name" msgstr "" -#: common/models.py:1064 +#: common/models.py:1065 msgid "Enable label printing" msgstr "" -#: common/models.py:1065 +#: common/models.py:1066 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1071 +#: common/models.py:1072 msgid "Label Image DPI" msgstr "" -#: common/models.py:1072 +#: common/models.py:1073 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1081 +#: common/models.py:1082 msgid "Enable Reports" msgstr "" -#: common/models.py:1082 +#: common/models.py:1083 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1088 templates/stats.html:25 +#: common/models.py:1089 templates/stats.html:25 msgid "Debug Mode" msgstr "调试模式" -#: common/models.py:1089 +#: common/models.py:1090 msgid "Generate reports in debug mode (HTML output)" msgstr "在调试模式生成报告(HTML输出)" -#: common/models.py:1095 +#: common/models.py:1096 msgid "Page Size" msgstr "页面大小" -#: common/models.py:1096 +#: common/models.py:1097 msgid "Default page size for PDF reports" msgstr "PDF 报表默认页面大小" -#: common/models.py:1106 +#: common/models.py:1107 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1107 +#: common/models.py:1108 msgid "Enable generation of test reports" msgstr "启用生成测试报表" -#: common/models.py:1113 +#: common/models.py:1114 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1114 +#: common/models.py:1115 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1120 +#: common/models.py:1121 msgid "Batch Code Template" msgstr "" -#: common/models.py:1121 +#: common/models.py:1122 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1126 +#: common/models.py:1127 msgid "Stock Expiry" msgstr "库存到期" -#: common/models.py:1127 +#: common/models.py:1128 msgid "Enable stock expiry functionality" msgstr "启用库存到期功能" -#: common/models.py:1133 +#: common/models.py:1134 msgid "Sell Expired Stock" msgstr "销售过期库存" -#: common/models.py:1134 +#: common/models.py:1135 msgid "Allow sale of expired stock" msgstr "允许销售过期库存" -#: common/models.py:1140 +#: common/models.py:1141 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1141 +#: common/models.py:1142 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1143 +#: common/models.py:1144 msgid "days" msgstr "天" -#: common/models.py:1148 +#: common/models.py:1149 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1149 +#: common/models.py:1150 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1155 +#: common/models.py:1156 msgid "Stock Ownership Control" msgstr "库存所有权控制" -#: common/models.py:1156 +#: common/models.py:1157 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1162 +#: common/models.py:1163 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1163 +#: common/models.py:1164 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1169 +#: common/models.py:1170 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1170 +#: common/models.py:1171 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1176 +#: common/models.py:1177 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1177 +#: common/models.py:1178 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1183 +#: common/models.py:1184 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1184 +#: common/models.py:1185 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1191 +#: common/models.py:1192 msgid "Enable password forgot" msgstr "" -#: common/models.py:1192 +#: common/models.py:1193 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1198 +#: common/models.py:1199 msgid "Enable registration" msgstr "" -#: common/models.py:1199 +#: common/models.py:1200 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1205 +#: common/models.py:1206 msgid "Enable SSO" msgstr "" -#: common/models.py:1206 +#: common/models.py:1207 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1212 +#: common/models.py:1213 msgid "Email required" msgstr "" -#: common/models.py:1213 +#: common/models.py:1214 msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1219 +#: common/models.py:1220 msgid "Auto-fill SSO users" msgstr "" -#: common/models.py:1220 +#: common/models.py:1221 msgid "Automatically fill out user-details from SSO account-data" msgstr "" -#: common/models.py:1226 +#: common/models.py:1227 msgid "Mail twice" msgstr "" -#: common/models.py:1227 +#: common/models.py:1228 msgid "On signup ask users twice for their mail" msgstr "" -#: common/models.py:1233 +#: common/models.py:1234 msgid "Password twice" msgstr "" -#: common/models.py:1234 +#: common/models.py:1235 msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1240 +#: common/models.py:1241 msgid "Group on signup" msgstr "" -#: common/models.py:1241 +#: common/models.py:1242 msgid "Group to which new users are assigned on registration" msgstr "" -#: common/models.py:1247 +#: common/models.py:1248 msgid "Enforce MFA" msgstr "" -#: common/models.py:1248 +#: common/models.py:1249 msgid "Users must use multifactor security." msgstr "" -#: common/models.py:1254 +#: common/models.py:1255 msgid "Check plugins on startup" msgstr "" -#: common/models.py:1255 +#: common/models.py:1256 msgid "Check that all plugins are installed on startup - enable in container enviroments" msgstr "" -#: common/models.py:1263 +#: common/models.py:1264 msgid "Enable URL integration" msgstr "" -#: common/models.py:1264 +#: common/models.py:1265 msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:1271 +#: common/models.py:1272 msgid "Enable navigation integration" msgstr "" -#: common/models.py:1272 +#: common/models.py:1273 msgid "Enable plugins to integrate into navigation" msgstr "" -#: common/models.py:1279 +#: common/models.py:1280 msgid "Enable app integration" msgstr "" -#: common/models.py:1280 +#: common/models.py:1281 msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:1287 +#: common/models.py:1288 msgid "Enable schedule integration" msgstr "" -#: common/models.py:1288 +#: common/models.py:1289 msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:1295 +#: common/models.py:1296 msgid "Enable event integration" msgstr "" -#: common/models.py:1296 +#: common/models.py:1297 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:1313 common/models.py:1629 +#: common/models.py:1314 common/models.py:1630 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:1335 +#: common/models.py:1336 msgid "Show subscribed parts" msgstr "" -#: common/models.py:1336 +#: common/models.py:1337 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:1342 +#: common/models.py:1343 msgid "Show subscribed categories" msgstr "" -#: common/models.py:1343 +#: common/models.py:1344 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:1349 +#: common/models.py:1350 msgid "Show latest parts" msgstr "显示最近商品" -#: common/models.py:1350 +#: common/models.py:1351 msgid "Show latest parts on the homepage" msgstr "在主页上显示最近商品" -#: common/models.py:1356 +#: common/models.py:1357 msgid "Recent Part Count" msgstr "" -#: common/models.py:1357 +#: common/models.py:1358 msgid "Number of recent parts to display on index page" msgstr "" -#: common/models.py:1363 +#: common/models.py:1364 msgid "Show unvalidated BOMs" msgstr "" -#: common/models.py:1364 +#: common/models.py:1365 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:1370 +#: common/models.py:1371 msgid "Show recent stock changes" msgstr "" -#: common/models.py:1371 +#: common/models.py:1372 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:1377 +#: common/models.py:1378 msgid "Recent Stock Count" msgstr "" -#: common/models.py:1378 +#: common/models.py:1379 msgid "Number of recent stock items to display on index page" msgstr "" -#: common/models.py:1384 +#: common/models.py:1385 msgid "Show low stock" msgstr "" -#: common/models.py:1385 +#: common/models.py:1386 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:1391 +#: common/models.py:1392 msgid "Show depleted stock" msgstr "" -#: common/models.py:1392 +#: common/models.py:1393 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:1398 +#: common/models.py:1399 msgid "Show needed stock" msgstr "" -#: common/models.py:1399 +#: common/models.py:1400 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:1405 +#: common/models.py:1406 msgid "Show expired stock" msgstr "" -#: common/models.py:1406 +#: common/models.py:1407 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:1412 +#: common/models.py:1413 msgid "Show stale stock" msgstr "" -#: common/models.py:1413 +#: common/models.py:1414 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:1419 +#: common/models.py:1420 msgid "Show pending builds" msgstr "" -#: common/models.py:1420 +#: common/models.py:1421 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:1426 +#: common/models.py:1427 msgid "Show overdue builds" msgstr "显示逾期生产" -#: common/models.py:1427 +#: common/models.py:1428 msgid "Show overdue builds on the homepage" msgstr "在主页上显示逾期的生产" -#: common/models.py:1433 +#: common/models.py:1434 msgid "Show outstanding POs" msgstr "" -#: common/models.py:1434 +#: common/models.py:1435 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:1440 +#: common/models.py:1441 msgid "Show overdue POs" msgstr "" -#: common/models.py:1441 +#: common/models.py:1442 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:1447 +#: common/models.py:1448 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:1448 +#: common/models.py:1449 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:1454 +#: common/models.py:1455 msgid "Show overdue SOs" msgstr "" -#: common/models.py:1455 +#: common/models.py:1456 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:1461 +#: common/models.py:1462 msgid "Inline label display" msgstr "内嵌标签显示" -#: common/models.py:1462 +#: common/models.py:1463 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 标签,而不是以文件形式下载" -#: common/models.py:1468 +#: common/models.py:1469 msgid "Inline report display" msgstr "" -#: common/models.py:1469 +#: common/models.py:1470 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 报告,而不是以文件形式下载" -#: common/models.py:1475 +#: common/models.py:1476 msgid "Search Parts" msgstr "" -#: common/models.py:1476 +#: common/models.py:1477 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:1482 +#: common/models.py:1483 msgid "Seach Supplier Parts" msgstr "" -#: common/models.py:1483 +#: common/models.py:1484 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:1489 +#: common/models.py:1490 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:1490 +#: common/models.py:1491 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:1496 +#: common/models.py:1497 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:1497 +#: common/models.py:1498 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:1503 +#: common/models.py:1504 msgid "Search Categories" msgstr "" -#: common/models.py:1504 +#: common/models.py:1505 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:1510 +#: common/models.py:1511 msgid "Search Stock" msgstr "" -#: common/models.py:1511 +#: common/models.py:1512 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:1517 +#: common/models.py:1518 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:1518 +#: common/models.py:1519 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:1524 +#: common/models.py:1525 msgid "Search Locations" msgstr "" -#: common/models.py:1525 +#: common/models.py:1526 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:1531 +#: common/models.py:1532 msgid "Search Companies" msgstr "" -#: common/models.py:1532 +#: common/models.py:1533 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:1538 +#: common/models.py:1539 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:1539 +#: common/models.py:1540 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:1545 +#: common/models.py:1546 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:1546 +#: common/models.py:1547 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:1552 +#: common/models.py:1553 msgid "Search Sales Orders" msgstr "" -#: common/models.py:1553 +#: common/models.py:1554 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:1559 +#: common/models.py:1560 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:1560 +#: common/models.py:1561 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:1566 +#: common/models.py:1567 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/models.py:1567 +#: common/models.py:1568 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:1573 +#: common/models.py:1574 msgid "Show Quantity in Forms" msgstr "在表格中显示数量" -#: common/models.py:1574 +#: common/models.py:1575 msgid "Display available part quantity in some forms" msgstr "在某些表格中显示可用的商品数量" -#: common/models.py:1580 +#: common/models.py:1581 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:1581 +#: common/models.py:1582 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:1587 +#: common/models.py:1588 msgid "Fixed Navbar" msgstr "" -#: common/models.py:1588 +#: common/models.py:1589 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:1594 +#: common/models.py:1595 msgid "Date Format" msgstr "" -#: common/models.py:1595 +#: common/models.py:1596 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:1609 part/templates/part/detail.html:41 +#: common/models.py:1610 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:1610 +#: common/models.py:1611 msgid "Display part scheduling information" msgstr "" -#: common/models.py:1669 +#: common/models.py:1670 msgid "Price break quantity" msgstr "" -#: common/models.py:1676 company/serializers.py:366 +#: common/models.py:1677 company/serializers.py:366 #: company/templates/company/supplier_part.html:284 order/models.py:938 #: templates/js/translated/part.js:1065 templates/js/translated/part.js:2095 msgid "Price" msgstr "价格" -#: common/models.py:1677 +#: common/models.py:1678 msgid "Unit price at specified quantity" msgstr "" From e9b0f02ecdf1acec41c821fc9d679e5ffc71935a Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 31 Jul 2022 23:16:58 +1000 Subject: [PATCH 3/5] Update demo data hook to copy media files (#3441) * Simplify settings.py / config.py - get_setting function has been streamlined - move some functions into config.py * Spelling fix: IGNORRED is IGNORED * Ensure yaml is installed as part of docker image - invoke path is still mucking us around * Fix broken migration * Copy media files from demo dataset when installing test data * Cleanup settings.py * Fix for configuration file traversal * Line fix * Update quickstart guide for docker * Allow plugin file and plugin dir to be specified in configuration file * Cleanup config template file * Allow secret_key information to be provided in configuration file * Adjust root paths for CI tests * resolve paths * Revert paths for CI step * remove dead code * Revert configuration variables to old names - Prevent breaking changes * Simplify secret key generation * Fix default timeout for background worker process * Revert change for customization options --- .gitignore | 3 +- CONTRIBUTING.md | 1 + InvenTree/InvenTree/apps.py | 16 +- InvenTree/InvenTree/config.py | 181 ++++++++-- InvenTree/InvenTree/exceptions.py | 2 +- InvenTree/InvenTree/middleware.py | 2 +- InvenTree/InvenTree/settings.py | 331 +++++------------- InvenTree/InvenTree/test_middleware.py | 2 +- .../0010_migrate_currency_setting.py | 4 +- InvenTree/config_template.yaml | 92 ++--- InvenTree/plugin/registry.py | 4 +- docker/requirements.txt | 3 +- tasks.py | 13 +- 13 files changed, 311 insertions(+), 343 deletions(-) diff --git a/.gitignore b/.gitignore index 6bbfdaf23d..693ed10362 100644 --- a/.gitignore +++ b/.gitignore @@ -50,7 +50,6 @@ docs/_build inventree_media inventree_static static_i18n -inventree-data # Local config file config.yaml @@ -79,6 +78,8 @@ js_tmp/ # Development files dev/ +data/ +env/ # Locale stats file locale_stats.json diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd60026f42..c736418892 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,6 +18,7 @@ pip install invoke && invoke setup-dev --tests ```bash git clone https://github.com/inventree/InvenTree.git && cd InvenTree +docker compose run inventree-dev-server invoke install docker compose run inventree-dev-server invoke setup-test docker compose up -d ``` diff --git a/InvenTree/InvenTree/apps.py b/InvenTree/InvenTree/apps.py index 3ec084a2d1..7190197104 100644 --- a/InvenTree/InvenTree/apps.py +++ b/InvenTree/InvenTree/apps.py @@ -172,21 +172,13 @@ class InvenTreeConfig(AppConfig): return # get values - add_user = get_setting( - 'INVENTREE_ADMIN_USER', - settings.CONFIG.get('admin_user', False) - ) - add_email = get_setting( - 'INVENTREE_ADMIN_EMAIL', - settings.CONFIG.get('admin_email', False) - ) - add_password = get_setting( - 'INVENTREE_ADMIN_PASSWORD', - settings.CONFIG.get('admin_password', False) - ) + add_user = get_setting('INVENTREE_ADMIN_USER', 'admin_user') + add_email = get_setting('INVENTREE_ADMIN_EMAIL', 'admin_email') + add_password = get_setting('INVENTREE_ADMIN_PASSWORD', 'admin_password') # check if all values are present set_variables = 0 + for tested_var in [add_user, add_email, add_password]: if tested_var: set_variables += 1 diff --git a/InvenTree/InvenTree/config.py b/InvenTree/InvenTree/config.py index e2fbe680cd..799788a0da 100644 --- a/InvenTree/InvenTree/config.py +++ b/InvenTree/InvenTree/config.py @@ -2,18 +2,27 @@ import logging import os +import random import shutil +import string from pathlib import Path +import yaml + logger = logging.getLogger('inventree') +def is_true(x): + """Shortcut function to determine if a value "looks" like a boolean""" + return str(x).strip().lower() in ['1', 'y', 'yes', 't', 'true', 'on'] + + def get_base_dir() -> Path: """Returns the base (top-level) InvenTree directory.""" return Path(__file__).parent.parent.resolve() -def get_config_file() -> Path: +def get_config_file(create=True) -> Path: """Returns the path of the InvenTree configuration file. Note: It will be created it if does not already exist! @@ -28,7 +37,7 @@ def get_config_file() -> Path: # Config file is *not* specified - use the default cfg_filename = base_dir.joinpath('config.yaml').resolve() - if not cfg_filename.exists(): + if not cfg_filename.exists() and create: print("InvenTree configuration file 'config.yaml' not found - creating default file") cfg_template = base_dir.joinpath("config_template.yaml") @@ -38,45 +47,159 @@ def get_config_file() -> Path: return cfg_filename -def get_plugin_file(): - """Returns the path of the InvenTree plugins specification file. +def load_config_data() -> map: + """Load configuration data from the config file.""" - Note: It will be created if it does not already exist! - """ - # Check if the plugin.txt file (specifying required plugins) is specified - PLUGIN_FILE = os.getenv('INVENTREE_PLUGIN_FILE') + cfg_file = get_config_file() - if not PLUGIN_FILE: - # If not specified, look in the same directory as the configuration file - config_dir = get_config_file().parent - PLUGIN_FILE = config_dir.joinpath('plugins.txt') - else: - # Make sure we are using a modern Path object - PLUGIN_FILE = Path(PLUGIN_FILE) + with open(cfg_file, 'r') as cfg: + data = yaml.safe_load(cfg) - if not PLUGIN_FILE.exists(): - logger.warning("Plugin configuration file does not exist") - logger.info(f"Creating plugin file at '{PLUGIN_FILE}'") - - # If opening the file fails (no write permission, for example), then this will throw an error - PLUGIN_FILE.write_text("# InvenTree Plugins (uses PIP framework to install)\n\n") - - return PLUGIN_FILE + return data -def get_setting(environment_var, backup_val, default_value=None): +def get_setting(env_var=None, config_key=None, default_value=None): """Helper function for retrieving a configuration setting value. - First preference is to look for the environment variable - Second preference is to look for the value of the settings file - Third preference is the default value + + Arguments: + env_var: Name of the environment variable e.g. 'INVENTREE_STATIC_ROOT' + config_key: Key to lookup in the configuration file + default_value: Value to return if first two options are not provided + """ - val = os.getenv(environment_var) - if val is not None: - return val + # First, try to load from the environment variables + if env_var is not None: + val = os.getenv(env_var, None) - if backup_val is not None: - return backup_val + if val is not None: + return val + # Next, try to load from configuration file + if config_key is not None: + cfg_data = load_config_data() + + result = None + + # Hack to allow 'path traversal' in configuration file + for key in config_key.strip().split('.'): + + if type(cfg_data) is not dict or key not in cfg_data: + result = None + break + + result = cfg_data[key] + cfg_data = cfg_data[key] + + if result is not None: + return result + + # Finally, return the default value return default_value + + +def get_boolean_setting(env_var=None, config_key=None, default_value=False): + """Helper function for retreiving a boolean configuration setting""" + + return is_true(get_setting(env_var, config_key, default_value)) + + +def get_media_dir(create=True): + """Return the absolute path for the 'media' directory (where uploaded files are stored)""" + + md = get_setting('INVENTREE_MEDIA_ROOT', 'media_root') + + if not md: + raise FileNotFoundError('INVENTREE_MEDIA_ROOT not specified') + + md = Path(md).resolve() + + if create: + md.mkdir(parents=True, exist_ok=True) + + return md + + +def get_static_dir(create=True): + """Return the absolute path for the 'static' directory (where static files are stored)""" + + sd = get_setting('INVENTREE_STATIC_ROOT', 'static_root') + + if not sd: + raise FileNotFoundError('INVENTREE_STATIC_ROOT not specified') + + sd = Path(sd).resolve() + + if create: + sd.mkdir(parents=True, exist_ok=True) + + return sd + + +def get_plugin_file(): + """Returns the path of the InvenTree plugins specification file. + + Note: It will be created if it does not already exist! + """ + + # Check if the plugin.txt file (specifying required plugins) is specified + plugin_file = get_setting('INVENTREE_PLUGIN_FILE', 'plugin_file') + + if not plugin_file: + # If not specified, look in the same directory as the configuration file + config_dir = get_config_file().parent + plugin_file = config_dir.joinpath('plugins.txt') + else: + # Make sure we are using a modern Path object + plugin_file = Path(plugin_file) + + if not plugin_file.exists(): + logger.warning("Plugin configuration file does not exist - creating default file") + logger.info(f"Creating plugin file at '{plugin_file}'") + + # If opening the file fails (no write permission, for example), then this will throw an error + plugin_file.write_text("# InvenTree Plugins (uses PIP framework to install)\n\n") + + return plugin_file + + +def get_secret_key(): + """Return the secret key value which will be used by django. + + Following options are tested, in descending order of preference: + + A) Check for environment variable INVENTREE_SECRET_KEY => Use raw key data + B) Check for environment variable INVENTREE_SECRET_KEY_FILE => Load key data from file + C) Look for default key file "secret_key.txt" + D) Create "secret_key.txt" if it does not exist + """ + + # Look for environment variable + if secret_key := get_setting('INVENTREE_SECRET_KEY', 'secret_key'): + logger.info("SECRET_KEY loaded by INVENTREE_SECRET_KEY") # pragma: no cover + return secret_key + + # Look for secret key file + if secret_key_file := get_setting('INVENTREE_SECRET_KEY_FILE', 'secret_key_file'): + secret_key_file = Path(secret_key_file).resolve() + else: + # Default location for secret key file + secret_key_file = get_base_dir().joinpath("secret_key.txt").resolve() + + if not secret_key_file.exists(): + logger.info(f"Generating random key file at '{secret_key_file}'") + + # Create a random key file + options = string.digits + string.ascii_letters + string.punctuation + key = ''.join([random.choice(options) for i in range(100)]) + secret_key_file.write_text(key) + + logger.info(f"Loading SECRET_KEY from '{secret_key_file}'") + + key_data = secret_key_file.read_text().strip() + + return key_data diff --git a/InvenTree/InvenTree/exceptions.py b/InvenTree/InvenTree/exceptions.py index 780359d88b..2dfda365c5 100644 --- a/InvenTree/InvenTree/exceptions.py +++ b/InvenTree/InvenTree/exceptions.py @@ -29,7 +29,7 @@ def log_error(path): kind, info, data = sys.exc_info() # Check if the eror is on the ignore list - if kind in settings.IGNORRED_ERRORS: + if kind in settings.IGNORED_ERRORS: return Error.objects.create( diff --git a/InvenTree/InvenTree/middleware.py b/InvenTree/InvenTree/middleware.py index 1e282265c5..951d415c16 100644 --- a/InvenTree/InvenTree/middleware.py +++ b/InvenTree/InvenTree/middleware.py @@ -157,7 +157,7 @@ class InvenTreeExceptionProcessor(ExceptionProcessor): kind, info, data = sys.exc_info() # Check if the eror is on the ignore list - if kind in settings.IGNORRED_ERRORS: + if kind in settings.IGNORED_ERRORS: return return super().process_exception(request, exception) diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index f9cf41deba..4f763b0089 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -11,9 +11,7 @@ database setup in this file. import logging import os -import random import socket -import string import sys from pathlib import Path @@ -24,22 +22,14 @@ from django.utils.translation import gettext_lazy as _ import moneyed import sentry_sdk -import yaml from sentry_sdk.integrations.django import DjangoIntegration -from .config import get_base_dir, get_config_file, get_plugin_file, get_setting - - -def _is_true(x): - # Shortcut function to determine if a value "looks" like a boolean - return str(x).strip().lower() in ['1', 'y', 'yes', 't', 'true'] - - -# Default Sentry DSN (can be overriden if user wants custom sentry integration) -INVENTREE_DSN = 'https://3928ccdba1d34895abde28031fd00100@o378676.ingest.sentry.io/6494600' +from . import config +from .config import get_boolean_setting, get_setting # Determine if we are running in "test" mode e.g. "manage.py test" TESTING = 'test' in sys.argv + # Are enviroment variables manipulated by tests? Needs to be set by testing code TESTING_ENV = False @@ -47,33 +37,17 @@ TESTING_ENV = False DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' # Build paths inside the project like this: BASE_DIR.joinpath(...) -BASE_DIR = get_base_dir() +BASE_DIR = config.get_base_dir() -cfg_filename = get_config_file() - -with open(cfg_filename, 'r') as cfg: - CONFIG = yaml.safe_load(cfg) - -# We will place any config files in the same directory as the config file -config_dir = cfg_filename.parent +# Load configuration data +CONFIG = config.load_config_data() # Default action is to run the system in Debug mode # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = _is_true(get_setting( - 'INVENTREE_DEBUG', - CONFIG.get('debug', True) -)) - -DOCKER = _is_true(get_setting( - 'INVENTREE_DOCKER', - False -)) +DEBUG = get_boolean_setting('INVENTREE_DEBUG', 'debug', True) # Configure logging settings -log_level = get_setting( - 'INVENTREE_LOG_LEVEL', - CONFIG.get('log_level', 'WARNING') -) +log_level = get_setting('INVENTREE_LOG_LEVEL', 'log_level', 'WARNING') logging.basicConfig( level=log_level, @@ -105,78 +79,20 @@ LOGGING = { # Get a logger instance for this setup file logger = logging.getLogger("inventree") -""" -Specify a secret key to be used by django. - -Following options are tested, in descending order of preference: - -A) Check for environment variable INVENTREE_SECRET_KEY => Use raw key data -B) Check for environment variable INVENTREE_SECRET_KEY_FILE => Load key data from file -C) Look for default key file "secret_key.txt" -d) Create "secret_key.txt" if it does not exist -""" - -if secret_key := os.getenv("INVENTREE_SECRET_KEY"): - # Secret key passed in directly - SECRET_KEY = secret_key.strip() # pragma: no cover - logger.info("SECRET_KEY loaded by INVENTREE_SECRET_KEY") # pragma: no cover -else: - # Secret key passed in by file location - key_file = os.getenv("INVENTREE_SECRET_KEY_FILE") - - if key_file: - key_file = Path(key_file).resolve() # pragma: no cover - else: - # default secret key location - key_file = BASE_DIR.joinpath("secret_key.txt").resolve() - - if not key_file.exists(): # pragma: no cover - logger.info(f"Generating random key file at '{key_file}'") - # Create a random key file - options = string.digits + string.ascii_letters + string.punctuation - key = ''.join([random.choice(options) for i in range(100)]) - key_file.write_text(key) - - logger.info(f"Loading SECRET_KEY from '{key_file}'") - - try: - SECRET_KEY = open(key_file, "r").read().strip() - except Exception: # pragma: no cover - logger.exception(f"Couldn't load keyfile {key_file}") - sys.exit(-1) +# Load SECRET_KEY +SECRET_KEY = config.get_secret_key() # The filesystem location for served static files -STATIC_ROOT = Path( - get_setting( - 'INVENTREE_STATIC_ROOT', - CONFIG.get('static_root', None) - ) -).resolve() +STATIC_ROOT = config.get_static_dir() -if STATIC_ROOT is None: # pragma: no cover - print("ERROR: INVENTREE_STATIC_ROOT directory not defined") - sys.exit(1) -else: - # Ensure the root really is availalble - STATIC_ROOT.mkdir(parents=True, exist_ok=True) - -# The filesystem location for served static files -MEDIA_ROOT = Path( - get_setting( - 'INVENTREE_MEDIA_ROOT', - CONFIG.get('media_root', None) - ) -).resolve() - -if MEDIA_ROOT is None: # pragma: no cover - print("ERROR: INVENTREE_MEDIA_ROOT directory is not defined") - sys.exit(1) -else: - # Ensure the root really is availalble - MEDIA_ROOT.mkdir(parents=True, exist_ok=True) +# The filesystem location for uploaded meadia files +MEDIA_ROOT = config.get_media_dir() # List of allowed hosts (default = allow all) -ALLOWED_HOSTS = CONFIG.get('allowed_hosts', ['*']) +ALLOWED_HOSTS = get_setting( + config_key='allowed_hosts', + default_value=['*'] +) # Cross Origin Resource Sharing (CORS) options @@ -184,13 +100,15 @@ ALLOWED_HOSTS = CONFIG.get('allowed_hosts', ['*']) CORS_URLS_REGEX = r'^/api/.*$' # Extract CORS options from configuration file -cors_opt = CONFIG.get('cors', None) +CORS_ORIGIN_ALLOW_ALL = get_boolean_setting( + config_key='cors.allow_all', + default_value=False, +) -if cors_opt: - CORS_ORIGIN_ALLOW_ALL = cors_opt.get('allow_all', False) - - if not CORS_ORIGIN_ALLOW_ALL: - CORS_ORIGIN_WHITELIST = cors_opt.get('whitelist', []) # pragma: no cover +CORS_ORIGIN_WHITELIST = get_setting( + config_key='cors.whitelist', + default_value=[] +) # Web URL endpoint for served static files STATIC_URL = '/static/' @@ -214,12 +132,6 @@ STATIC_COLOR_THEMES_DIR = STATIC_ROOT.joinpath('css', 'color-themes') # Web URL endpoint for served media files MEDIA_URL = '/media/' -if DEBUG: - logger.info("InvenTree running with DEBUG enabled") - -logger.debug(f"MEDIA_ROOT: '{MEDIA_ROOT}'") -logger.debug(f"STATIC_ROOT: '{STATIC_ROOT}'") - # Application definition INSTALLED_APPS = [ @@ -320,6 +232,9 @@ INTERNAL_IPS = [ '127.0.0.1', ] +# Internal flag to determine if we are running in docker mode +DOCKER = get_boolean_setting('INVENTREE_DOCKER', default_value=False) + if DOCKER: # pragma: no cover # Internal IP addresses are different when running under docker hostname, ___, ips = socket.gethostbyname_ex(socket.gethostname()) @@ -334,7 +249,8 @@ if DEBUG: # Base URL for admin pages (default="admin") INVENTREE_ADMIN_URL = get_setting( 'INVENTREE_ADMIN_URL', - CONFIG.get('admin_url', 'admin'), + config_key='admin_url', + default_value='admin' ) ROOT_URLCONF = 'InvenTree.urls' @@ -498,7 +414,7 @@ if "postgres" in db_engine: # pragma: no cover # long to connect to the database server # # seconds, 2 is minium allowed by libpq db_options["connect_timeout"] = int( - os.getenv("INVENTREE_DB_TIMEOUT", 2) + get_setting('INVENTREE_DB_TIMEOUT', 'database.timeout', 2) ) # Setup TCP keepalive @@ -509,23 +425,27 @@ if "postgres" in db_engine: # pragma: no cover # # 0 - TCP Keepalives disabled; 1 - enabled if "keepalives" not in db_options: db_options["keepalives"] = int( - os.getenv("INVENTREE_DB_TCP_KEEPALIVES", "1") + get_setting('INVENTREE_DB_TCP_KEEPALIVES', 'database.tcp_keepalives', 1) ) - # # Seconds after connection is idle to send keep alive + + # Seconds after connection is idle to send keep alive if "keepalives_idle" not in db_options: db_options["keepalives_idle"] = int( - os.getenv("INVENTREE_DB_TCP_KEEPALIVES_IDLE", "1") + get_setting('INVENTREE_DB_TCP_KEEPALIVES_IDLE', 'database.tcp_keepalives_idle', 1) ) - # # Seconds after missing ACK to send another keep alive + + # Seconds after missing ACK to send another keep alive if "keepalives_interval" not in db_options: db_options["keepalives_interval"] = int( - os.getenv("INVENTREE_DB_TCP_KEEPALIVES_INTERVAL", "1") + get_setting("INVENTREE_DB_TCP_KEEPALIVES_INTERVAL", "database.tcp_keepalives_internal", "1") ) - # # Number of missing ACKs before we close the connection + + # Number of missing ACKs before we close the connection if "keepalives_count" not in db_options: db_options["keepalives_count"] = int( - os.getenv("INVENTREE_DB_TCP_KEEPALIVES_COUNT", "5") + get_setting("INVENTREE_DB_TCP_KEEPALIVES_COUNT", "database.tcp_keepalives_count", "5") ) + # # Milliseconds for how long pending data should remain unacked # by the remote server # TODO: Supported starting in PSQL 11 @@ -538,17 +458,11 @@ if "postgres" in db_engine: # pragma: no cover # https://www.postgresql.org/docs/devel/transaction-iso.html # https://docs.djangoproject.com/en/3.2/ref/databases/#isolation-level if "isolation_level" not in db_options: - serializable = _is_true( - os.getenv("INVENTREE_DB_ISOLATION_SERIALIZABLE", "false") - ) - db_options["isolation_level"] = ( - ISOLATION_LEVEL_SERIALIZABLE - if serializable - else ISOLATION_LEVEL_READ_COMMITTED - ) + serializable = get_boolean_setting('INVENTREE_DB_ISOLATION_SERIALIZABLE', 'database.serializable', False) + db_options["isolation_level"] = ISOLATION_LEVEL_SERIALIZABLE if serializable else ISOLATION_LEVEL_READ_COMMITTED # Specific options for MySql / MariaDB backend -if "mysql" in db_engine: # pragma: no cover +elif "mysql" in db_engine: # pragma: no cover # TODO TCP time outs and keepalives # MariaDB's default isolation level is Repeatable Read which is @@ -558,15 +472,11 @@ if "mysql" in db_engine: # pragma: no cover # https://mariadb.com/kb/en/mariadb-transactions-and-isolation-levels-for-sql-server-users/#changing-the-isolation-level # https://docs.djangoproject.com/en/3.2/ref/databases/#mysql-isolation-level if "isolation_level" not in db_options: - serializable = _is_true( - os.getenv("INVENTREE_DB_ISOLATION_SERIALIZABLE", "false") - ) - db_options["isolation_level"] = ( - "serializable" if serializable else "read committed" - ) + serializable = get_boolean_setting('INVENTREE_DB_ISOLATION_SERIALIZABLE', 'database.serializable', False) + db_options["isolation_level"] = "serializable" if serializable else "read committed" # Specific options for sqlite backend -if "sqlite" in db_engine: +elif "sqlite" in db_engine: # TODO: Verify timeouts are not an issue because no network is involved for SQLite # SQLite's default isolation level is Serializable due to SQLite's @@ -591,13 +501,11 @@ DATABASES = { 'default': db_config } -_cache_config = CONFIG.get("cache", {}) -_cache_host = _cache_config.get("host", os.getenv("INVENTREE_CACHE_HOST")) -_cache_port = _cache_config.get( - "port", os.getenv("INVENTREE_CACHE_PORT", "6379") -) +# Cache configuration +cache_host = get_setting('INVENTREE_CACHE_HOST', 'cache.host', None) +cache_port = get_setting('INVENTREE_CACHE_PORT', 'cache.port', '6379') -if _cache_host: # pragma: no cover +if cache_host: # pragma: no cover # We are going to rely upon a possibly non-localhost for our cache, # so don't wait too long for the cache as nothing in the cache should be # irreplacable. @@ -606,7 +514,7 @@ if _cache_host: # pragma: no cover "SOCKET_CONNECT_TIMEOUT": int(os.getenv("CACHE_CONNECT_TIMEOUT", "2")), "SOCKET_TIMEOUT": int(os.getenv("CACHE_SOCKET_TIMEOUT", "2")), "CONNECTION_POOL_KWARGS": { - "socket_keepalive": _is_true( + "socket_keepalive": config.is_true( os.getenv("CACHE_TCP_KEEPALIVE", "1") ), "socket_keepalive_options": { @@ -628,7 +536,7 @@ if _cache_host: # pragma: no cover CACHES = { "default": { "BACKEND": "django_redis.cache.RedisCache", - "LOCATION": f"redis://{_cache_host}:{_cache_port}/0", + "LOCATION": f"redis://{cache_host}:{cache_port}/0", "OPTIONS": _cache_options, }, } @@ -639,17 +547,11 @@ else: }, } -try: - # 4 background workers seems like a sensible default - background_workers = int(os.environ.get('INVENTREE_BACKGROUND_WORKERS', 4)) -except ValueError: # pragma: no cover - background_workers = 4 - -# django-q configuration +# django-q background worker configuration Q_CLUSTER = { 'name': 'InvenTree', - 'workers': background_workers, - 'timeout': 90, + 'workers': int(get_setting('INVENTREE_BACKGROUND_WORKERS', 'background.workers', 4)), + 'timeout': int(get_setting('INVENTREE_BACKGROUND_TIMEOUT', 'background.timeout', 90)), 'retry': 120, 'queue_limit': 50, 'bulk': 10, @@ -657,7 +559,7 @@ Q_CLUSTER = { 'sync': False, } -if _cache_host: # pragma: no cover +if cache_host: # pragma: no cover # If using external redis cache, make the cache the broker for Django Q # as well Q_CLUSTER["django_redis"] = "worker" @@ -698,8 +600,7 @@ if type(EXTRA_URL_SCHEMES) not in [list]: # pragma: no cover # Internationalization # https://docs.djangoproject.com/en/dev/topics/i18n/ - -LANGUAGE_CODE = CONFIG.get('language', 'en-us') +LANGUAGE_CODE = get_setting('INVENTREE_LANGUAGE', 'language', 'en-us') # If a new language translation is supported, it must be added here LANGUAGES = [ @@ -730,7 +631,7 @@ LANGUAGES = [ ] # Testing interface translations -if get_setting('TEST_TRANSLATIONS', False): # pragma: no cover +if get_boolean_setting('TEST_TRANSLATIONS', default_value=False): # pragma: no cover # Set default language LANGUAGE_CODE = 'xx' @@ -762,68 +663,29 @@ for currency in CURRENCIES: print(f"Currency code '{currency}' is not supported") sys.exit(1) - # Custom currency exchange backend EXCHANGE_BACKEND = 'InvenTree.exchange.InvenTreeExchange' -# Extract email settings from the config file -email_config = CONFIG.get('email', {}) +# Email configuration options +EMAIL_BACKEND = get_setting('INVENTREE_EMAIL_BACKEND', 'email.backend', 'django.core.mail.backends.smtp.EmailBackend') +EMAIL_HOST = get_setting('INVENTREE_EMAIL_HOST', 'email.host', '') +EMAIL_PORT = int(get_setting('INVENTREE_EMAIL_PORT', 'email.port', 25)) +EMAIL_HOST_USER = get_setting('INVENTREE_EMAIL_USERNAME', 'email.username', '') +EMAIL_HOST_PASSWORD = get_setting('INVENTREE_EMAIL_PASSWORD', 'email.password', '') +EMAIL_SUBJECT_PREFIX = get_setting('INVENTREE_EMAIL_PREFIX', 'email.prefix', '[InvenTree] ') +EMAIL_USE_TLS = get_boolean_setting('INVENTREE_EMAIL_TLS', 'email.tls', False) +EMAIL_USE_SSL = get_boolean_setting('INVENTREE_EMAIL_SSL', 'email.ssl', False) -EMAIL_BACKEND = get_setting( - 'INVENTREE_EMAIL_BACKEND', - email_config.get('backend', 'django.core.mail.backends.smtp.EmailBackend') -) - -# Email backend settings -EMAIL_HOST = get_setting( - 'INVENTREE_EMAIL_HOST', - email_config.get('host', '') -) - -EMAIL_PORT = get_setting( - 'INVENTREE_EMAIL_PORT', - email_config.get('port', 25) -) - -EMAIL_HOST_USER = get_setting( - 'INVENTREE_EMAIL_USERNAME', - email_config.get('username', ''), -) - -EMAIL_HOST_PASSWORD = get_setting( - 'INVENTREE_EMAIL_PASSWORD', - email_config.get('password', ''), -) - -DEFAULT_FROM_EMAIL = get_setting( - 'INVENTREE_EMAIL_SENDER', - email_config.get('sender', ''), -) - -EMAIL_SUBJECT_PREFIX = '[InvenTree] ' +DEFUALT_FROM_EMAIL = get_setting('INVENTREE_EMAIL_SENDER', 'email.sender', '') EMAIL_USE_LOCALTIME = False - -EMAIL_USE_TLS = get_setting( - 'INVENTREE_EMAIL_TLS', - email_config.get('tls', False), -) - -EMAIL_USE_SSL = get_setting( - 'INVENTREE_EMAIL_SSL', - email_config.get('ssl', False), -) - EMAIL_TIMEOUT = 60 LOCALE_PATHS = ( BASE_DIR.joinpath('locale/'), ) -TIME_ZONE = get_setting( - 'INVENTREE_TIMEZONE', - CONFIG.get('timezone', 'UTC') -) +TIME_ZONE = get_setting('INVENTREE_TIMEZONE', 'timezone', 'UTC') USE_I18N = True @@ -856,8 +718,8 @@ SOCIALACCOUNT_PROVIDERS = CONFIG.get('social_providers', []) SOCIALACCOUNT_STORE_TOKENS = True # settings for allauth -ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = get_setting('INVENTREE_LOGIN_CONFIRM_DAYS', CONFIG.get('login_confirm_days', 3)) -ACCOUNT_LOGIN_ATTEMPTS_LIMIT = get_setting('INVENTREE_LOGIN_ATTEMPTS', CONFIG.get('login_attempts', 5)) +ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = get_setting('INVENTREE_LOGIN_CONFIRM_DAYS', 'login_confirm_days', 3) +ACCOUNT_LOGIN_ATTEMPTS_LIMIT = get_setting('INVENTREE_LOGIN_ATTEMPTS', 'login_attempts', 5) ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE = True ACCOUNT_PREVENT_ENUMERATION = True @@ -877,8 +739,8 @@ SOCIALACCOUNT_ADAPTER = 'InvenTree.forms.CustomSocialAccountAdapter' ACCOUNT_ADAPTER = 'InvenTree.forms.CustomAccountAdapter' # login settings -REMOTE_LOGIN = get_setting('INVENTREE_REMOTE_LOGIN', CONFIG.get('remote_login', False)) -REMOTE_LOGIN_HEADER = get_setting('INVENTREE_REMOTE_LOGIN_HEADER', CONFIG.get('remote_login_header', 'REMOTE_USER')) +REMOTE_LOGIN = get_boolean_setting('INVENTREE_REMOTE_LOGIN', 'remote_login_enabled', False) +REMOTE_LOGIN_HEADER = get_setting('INVENTREE_REMOTE_LOGIN_HEADER', 'remote_login_header', 'REMOTE_USER') # Markdownify configuration # Ref: https://django-markdownify.readthedocs.io/en/latest/settings.html @@ -909,11 +771,12 @@ MARKDOWNIFY = { } } -# Error reporting -SENTRY_ENABLED = get_setting('INVENTREE_SENTRY_ENABLED', CONFIG.get('sentry_enabled', False)) -SENTRY_DSN = get_setting('INVENTREE_SENTRY_DSN', CONFIG.get('sentry_dsn', INVENTREE_DSN)) - -SENTRY_SAMPLE_RATE = float(get_setting('INVENTREE_SENTRY_SAMPLE_RATE', CONFIG.get('sentry_sample_rate', 0.1))) +# sentry.io integration for error reporting +SENTRY_ENABLED = get_boolean_setting('INVENTREE_SENTRY_ENABLED', 'sentry_enabled', False) +# Default Sentry DSN (can be overriden if user wants custom sentry integration) +INVENTREE_DSN = 'https://3928ccdba1d34895abde28031fd00100@o378676.ingest.sentry.io/6494600' +SENTRY_DSN = get_setting('INVENTREE_SENTRY_DSN', 'sentry_dsn', INVENTREE_DSN) +SENTRY_SAMPLE_RATE = float(get_setting('INVENTREE_SENTRY_SAMPLE_RATE', 'sentry_sample_rate', 0.1)) if SENTRY_ENABLED and SENTRY_DSN: # pragma: no cover sentry_sdk.init( @@ -932,7 +795,7 @@ if SENTRY_ENABLED and SENTRY_DSN: # pragma: no cover sentry_sdk.set_tag(f'inventree_{key}', val) # In-database error logging -IGNORRED_ERRORS = [ +IGNORED_ERRORS = [ Http404 ] @@ -941,33 +804,29 @@ MAINTENANCE_MODE_RETRY_AFTER = 60 MAINTENANCE_MODE_STATE_BACKEND = 'maintenance_mode.backends.DefaultStorageBackend' # Are plugins enabled? -PLUGINS_ENABLED = _is_true(get_setting( - 'INVENTREE_PLUGINS_ENABLED', - CONFIG.get('plugins_enabled', False), -)) +PLUGINS_ENABLED = get_boolean_setting('INVENTREE_PLUGINS_ENABLED', 'plugins_enabled', False) -PLUGIN_FILE = get_plugin_file() +PLUGIN_FILE = config.get_plugin_file() # Plugin test settings -PLUGIN_TESTING = get_setting('PLUGIN_TESTING', TESTING) # are plugins beeing tested? -PLUGIN_TESTING_SETUP = get_setting('PLUGIN_TESTING_SETUP', False) # load plugins from setup hooks in testing? +PLUGIN_TESTING = CONFIG.get('PLUGIN_TESTING', TESTING) # are plugins beeing tested? +PLUGIN_TESTING_SETUP = CONFIG.get('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('PLUGIN_RETRY', 5) # how often should plugin loading be tried? +PLUGIN_RETRY = CONFIG.get('PLUGIN_RETRY', 5) # how often should plugin loading be tried? PLUGIN_FILE_CHECKED = False # Was the plugin file checked? # User interface customization values -CUSTOMIZE = get_setting( - 'INVENTREE_CUSTOMIZE', - CONFIG.get('customize', {}), - {} -) +CUSTOMIZE = get_setting('INVENTREE_CUSTOMIZE', 'customize', {}) -CUSTOM_LOGO = get_setting( - 'INVENTREE_CUSTOM_LOGO', - CUSTOMIZE.get('logo', False) -) +CUSTOM_LOGO = get_setting('INVENTREE_CUSTOM_LOGO', 'customize.logo', None) # check that the logo-file exsists in media if CUSTOM_LOGO and not default_storage.exists(CUSTOM_LOGO): # pragma: no cover logger.warning(f"The custom logo file '{CUSTOM_LOGO}' could not be found in the default media storage") CUSTOM_LOGO = False + +if DEBUG: + logger.info("InvenTree running with DEBUG enabled") + +logger.debug(f"MEDIA_ROOT: '{MEDIA_ROOT}'") +logger.debug(f"STATIC_ROOT: '{STATIC_ROOT}'") diff --git a/InvenTree/InvenTree/test_middleware.py b/InvenTree/InvenTree/test_middleware.py index 5f9eb3b9c4..fcfc4fe933 100644 --- a/InvenTree/InvenTree/test_middleware.py +++ b/InvenTree/InvenTree/test_middleware.py @@ -84,7 +84,7 @@ class MiddlewareTests(InvenTreeTestCase): log_error('testpath') # Test setup without ignored errors - settings.IGNORRED_ERRORS = [] + settings.IGNORED_ERRORS = [] response = self.client.get(reverse('part-detail', kwargs={'pk': 9999})) self.assertEqual(response.status_code, 404) check(1) diff --git a/InvenTree/common/migrations/0010_migrate_currency_setting.py b/InvenTree/common/migrations/0010_migrate_currency_setting.py index 23076ff200..0604e93008 100644 --- a/InvenTree/common/migrations/0010_migrate_currency_setting.py +++ b/InvenTree/common/migrations/0010_migrate_currency_setting.py @@ -2,12 +2,12 @@ from django.db import migrations from common.models import InvenTreeSetting -from InvenTree.settings import get_setting, CONFIG +from InvenTree.config import get_setting def set_default_currency(apps, schema_editor): """ migrate the currency setting from config.yml to db """ # get value from settings-file - base_currency = get_setting('INVENTREE_BASE_CURRENCY', CONFIG.get('base_currency', 'USD')) + base_currency = get_setting('INVENTREE_BASE_CURRENCY', 'base_currency', 'USD') # write to database InvenTreeSetting.set_setting('INVENTREE_DEFAULT_CURRENCY', base_currency, None, create=True) diff --git a/InvenTree/config_template.yaml b/InvenTree/config_template.yaml index a470ac62e2..aa5d715d04 100644 --- a/InvenTree/config_template.yaml +++ b/InvenTree/config_template.yaml @@ -1,7 +1,6 @@ # Database backend selection - Configure backend database settings -# Ref: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-DATABASES -# Specify database parameters below as they appear in the Django docs +# Documentation: https://inventree.readthedocs.io/en/latest/start/config/ # Note: Database configuration options can also be specified from environmental variables, # with the prefix INVENTREE_DB_ @@ -44,20 +43,32 @@ database: # ENGINE: sqlite3 # NAME: '/home/inventree/database.sqlite3' +# Set debug to False to run in production mode +# Use the environment variable INVENTREE_DEBUG +debug: True + +# Configure the system logging level +# Use environment variable INVENTREE_LOG_LEVEL +# Options: DEBUG / INFO / WARNING / ERROR / CRITICAL +log_level: WARNING + # Select default system language (default is 'en-us') +# Use the environment variable INVENTREE_LANGUAGE language: en-us # System time-zone (default is UTC) # Reference: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones -# Select an option from the "TZ database name" column -# Use the environment variable INVENTREE_TIMEZONE timezone: UTC -# Base currency code +# Base currency code (or use env var INVENTREE_BASE_CURRENCY) base_currency: USD -# List of currencies supported by default. -# Add other currencies here to allow use in InvenTree +# Add new user on first startup +#admin_user: admin +#admin_email: info@example.com +#admin_password: inventree + +# List of currencies supported by default. Add other currencies here to allow use in InvenTree currencies: - AUD - CAD @@ -70,15 +81,6 @@ currencies: # Email backend configuration # Ref: https://docs.djangoproject.com/en/dev/topics/email/ -# Available options: -# host: Email server host address -# port: Email port -# username: Account username -# password: Account password -# prefix: Email subject prefix -# tls: Enable TLS support -# ssl: Enable SSL support - # Alternatively, these options can all be set using environment variables, # with the INVENTREE_EMAIL_ prefix: # e.g. INVENTREE_EMAIL_HOST / INVENTREE_EMAIL_PORT / INVENTREE_EMAIL_USERNAME @@ -94,31 +96,17 @@ email: tls: False ssl: False -# Set debug to False to run in production mode -# Use the environment variable INVENTREE_DEBUG -debug: True - -# Set debug_toolbar to True to enable a debugging toolbar for InvenTree -# Note: This will only be displayed if DEBUG mode is enabled, -# and only if InvenTree is accessed from a local IP (127.0.0.1) -debug_toolbar: False - # Set sentry_enabled to True to report errors back to the maintainers -# Use the environment variable INVENTREE_SENTRY_ENABLED -# sentry_enabled: True - -# Set sentry_dsn to your custom DSN if you want to use your own instance for error reporting -# Use the environment variable INVENTREE_SENTRY_DSN -# sentry_dsn: https://custom@custom.ingest.sentry.io/custom +# Set sentry,dsn to your custom DSN if you want to use your own instance for error reporting +sentry_enabled: False +#sentry_sample_rate: 0.1 +#sentry_dsn: https://custom@custom.ingest.sentry.io/custom # Set this variable to True to enable InvenTree Plugins # Alternatively, use the environment variable INVENTREE_PLUGINS_ENABLED plugins_enabled: False - -# Configure the system logging level -# Use environment variable INVENTREE_LOG_LEVEL -# Options: DEBUG / INFO / WARNING / ERROR / CRITICAL -log_level: WARNING +#plugin_file: /path/to/plugins.txt +#plugin_dir: /path/to/plugins/ # Allowed hosts (see ALLOWED_HOSTS in Django settings documentation) # A list of strings representing the host/domain names that this Django site can serve. @@ -138,14 +126,15 @@ cors: # - https://sub.example.com # MEDIA_ROOT is the local filesystem location for storing uploaded files -# By default, it is stored under /home/inventree/data/media -# Use environment variable INVENTREE_MEDIA_ROOT -media_root: '/home/inventree/data/media' +# media_root: '/home/inventree/data/media' # STATIC_ROOT is the local filesystem location for storing static files -# By default, it is stored under /home/inventree/data/static -# Use environment variable INVENTREE_STATIC_ROOT -static_root: '/home/inventree/data/static' +# static_root: '/home/inventree/data/static' + +# Background worker options +background: + workers: 4 + timeout: 90 # Optional URL schemes to allow in URL fields # By default, only the following schemes are allowed: ['http', 'https', 'ftp', 'ftps'] @@ -156,25 +145,14 @@ static_root: '/home/inventree/data/static' # - ssh # Login configuration -# How long do confirmation mail last? -# Use environment variable INVENTREE_LOGIN_CONFIRM_DAYS -#login_confirm_days: 3 -# How many wrong login attempts are permitted? -# Use environment variable INVENTREE_LOGIN_ATTEMPTS -#login_attempts: 5 +login_confirm_days: 3 +login_attempts: 5 # Remote / proxy login # These settings can introduce security problems if configured incorrectly. Please read # https://docs.djangoproject.com/en/4.0/howto/auth-remote-user/ for more details -# Use environment variable INVENTREE_REMOTE_LOGIN -# remote_login: True -# Use environment variable INVENTREE_REMOTE_LOGIN_HEADER -# remote_login_header: REMOTE_USER - -# Add new user on first startup -#admin_user: admin -#admin_email: info@example.com -#admin_password: inventree +remote_login_enabled: False +remote_login_header: REMOTE_USER # Permit custom authentication backends #authentication_backends: diff --git a/InvenTree/plugin/registry.py b/InvenTree/plugin/registry.py index 0d3ceef480..f60972accb 100644 --- a/InvenTree/plugin/registry.py +++ b/InvenTree/plugin/registry.py @@ -22,6 +22,8 @@ from django.utils.text import slugify from maintenance_mode.core import (get_maintenance_mode, maintenance_mode_on, set_maintenance_mode) +from InvenTree.config import get_setting + from .helpers import (IntegrationPluginError, get_plugins, handle_error, log_error) from .plugin import InvenTreePlugin @@ -199,7 +201,7 @@ class PluginsRegistry: if settings.TESTING: custom_dirs = os.getenv('INVENTREE_PLUGIN_TEST_DIR', None) else: - custom_dirs = os.getenv('INVENTREE_PLUGIN_DIR', None) + custom_dirs = get_setting('INVENTREE_PLUGIN_DIR', 'plugin_dir') # Load from user specified directories (unless in testing mode) dirs.append('plugins') diff --git a/docker/requirements.txt b/docker/requirements.txt index 019fa58ab4..2371292f9d 100644 --- a/docker/requirements.txt +++ b/docker/requirements.txt @@ -1,9 +1,10 @@ # Base python requirements for docker containers # Basic package requirements +invoke>=1.4.0 # Invoke build tool +pyyaml>=6.0 setuptools==60.0.5 wheel>=0.37.0 -invoke>=1.4.0 # Invoke build tool # Database links psycopg2>=2.9.1 diff --git a/tasks.py b/tasks.py index 5f03c2aade..86041f63e3 100644 --- a/tasks.py +++ b/tasks.py @@ -4,6 +4,7 @@ import json import os import pathlib import re +import shutil import sys from pathlib import Path @@ -522,6 +523,8 @@ def test(c, database=None): def setup_test(c, ignore_update=False, dev=False, path="inventree-demo-dataset"): """Setup a testing enviroment.""" + from InvenTree.InvenTree.config import get_media_dir + if not ignore_update: update(c) @@ -540,8 +543,16 @@ def setup_test(c, ignore_update=False, dev=False, path="inventree-demo-dataset") migrate(c) # Load data - print("Loading data ...") + print("Loading database records ...") import_records(c, filename=f'{path}/inventree_data.json', clear=True) + + # Copy media files + print("Copying media files ...") + src = Path(path).joinpath('media').resolve() + dst = get_media_dir() + + shutil.copytree(src, dst, dirs_exist_ok=True) + print("Done setting up test enviroment...") print("========================================") From 099489ce792fec91bde08dcfdff4146a6e948fdf Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 31 Jul 2022 23:37:37 +1000 Subject: [PATCH 4/5] 0.8.0 release version (#3432) --- InvenTree/InvenTree/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index 6ee0f00261..e05f440d39 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -13,7 +13,7 @@ import common.models from InvenTree.api_version import INVENTREE_API_VERSION # InvenTree software version -INVENTREE_SW_VERSION = "0.8.0 dev" +INVENTREE_SW_VERSION = "0.8.0" def inventreeInstanceName(): From 1306db74b22d9a7b60eaddd7cc01cae894cabee8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 1 Aug 2022 13:31:26 +1000 Subject: [PATCH 5/5] Update version_check.py CI scrips (#3448) - Allow 'duplicate' version numbers when running on a tagged release - In this situation, we have just tagged the particular release, and so the tag version *does* exist - Note that f we are running on a 'tag' (release) then by definition we cannot have a duplicate tag. --- ci/version_check.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/version_check.py b/ci/version_check.py index b72074d91d..6f0529c40c 100644 --- a/ci/version_check.py +++ b/ci/version_check.py @@ -44,7 +44,7 @@ def get_existing_release_tags(): return tags -def check_version_number(version_string): +def check_version_number(version_string, allow_duplicate=False): """Check the provided version number. Returns True if the provided version is the 'newest' InvenTree release @@ -67,7 +67,7 @@ def check_version_number(version_string): highest_release = True for release in existing: - if release == version_tuple: + if release == version_tuple and not allow_duplicate: raise ValueError(f"Duplicate release '{version_string}' exists!") if release > version_tuple: @@ -108,7 +108,9 @@ if __name__ == '__main__': print(f"InvenTree Version: '{version}'") - highest_release = check_version_number(version) + # Check version number and look for existing versions + # Note that on a 'tag' (release) we *must* allow duplicate versions, as this *is* the version that has just been released + highest_release = check_version_number(version, allow_duplicate=GITHUB_REF_TYPE == 'tag') # Determine which docker tag we are going to use docker_tags = None