diff --git a/CMakeLists.txt b/CMakeLists.txt index 72fd87d224..679f2ef1a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -506,6 +506,12 @@ endif () # Find the Cereal serialization library find_package(cereal REQUIRED) +add_library(libcereal INTERFACE) +if (NOT TARGET cereal::cereal) + target_link_libraries(libcereal INTERFACE cereal) +else() + target_link_libraries(libcereal INTERFACE cereal::cereal) +endif() # l10n set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/localization") @@ -517,21 +523,28 @@ add_custom_target(gettext_make_pot WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMENT "Generate pot file from strings in the source tree" ) -add_custom_target(gettext_merge_po_with_pot + +add_custom_target(gettext_merge_community_po_with_pot WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} - COMMENT "Merge localization po with new generted pot file" + COMMENT "Merge community po with new generated pot file" ) file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po") +# list of names of directories, which are licalized by PS internally +list(APPEND PS_L10N_DIRS "cs" "de" "es" "fr" "it" "ja" "pl") foreach(po_file ${L10N_PO_FILES}) - #GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY) - #SET(po_new_file "${po_dir}/PrusaSlicer_.po") - add_custom_command( - TARGET gettext_merge_po_with_pot PRE_BUILD - COMMAND msgmerge -N -o ${po_file} ${po_file} "${L10N_DIR}/PrusaSlicer.pot" - # delete obsolete lines from resulting PO to avoid conflicts after a merging of it with wxWidgets.po - COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file} - DEPENDS ${po_file} - ) + GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY) + GET_FILENAME_COMPONENT(po_dir_name "${po_dir}" NAME) + list(FIND PS_L10N_DIRS ${po_dir_name} found_dir_id) + # found_dir_id==-1 means that po_dir_name wasn't found in PS_L10N_DIRS + if(found_dir_id LESS 0) + add_custom_command( + TARGET gettext_merge_community_po_with_pot PRE_BUILD + COMMAND msgmerge -N -o ${po_file} ${po_file} "${L10N_DIR}/PrusaSlicer.pot" + # delete obsolete lines from resulting PO to avoid conflicts after a merging of it with wxWidgets.po + COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file} + DEPENDS ${po_file} + ) + endif() endforeach() add_custom_target(gettext_concat_wx_po_with_po @@ -539,7 +552,6 @@ add_custom_target(gettext_concat_wx_po_with_po COMMENT "Concatenate and merge wxWidgets localization po with PrusaSlicer po file" ) file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po") -file(GLOB L10N_WX_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po") foreach(po_file ${L10N_PO_FILES}) GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY) GET_FILENAME_COMPONENT(po_dir_name "${po_dir}" NAME) diff --git a/resources/localization/PrusaSlicer.pot b/resources/localization/PrusaSlicer.pot index 3034b5aebc..ded7a9515f 100644 --- a/resources/localization/PrusaSlicer.pot +++ b/resources/localization/PrusaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -548,7 +548,7 @@ msgstr "" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "" @@ -556,17 +556,17 @@ msgstr "" msgid "filaments" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "" @@ -625,7 +625,7 @@ msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "" @@ -710,7 +710,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "" @@ -789,7 +789,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "" @@ -1075,7 +1075,7 @@ msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "" @@ -1139,7 +1139,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1582,8 +1582,8 @@ msgid "parameter name" msgstr "" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "" @@ -1771,7 +1771,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "" @@ -1973,7 +1973,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "" @@ -2242,7 +2242,7 @@ msgid "Add..." msgstr "" #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "" @@ -3118,25 +3118,25 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " "not be affected." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, possible-boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, possible-boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3148,7 +3148,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, possible-boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3157,19 +3157,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3179,53 +3179,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, possible-c-format, possible-boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, possible-boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, possible-boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, possible-boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3238,291 +3238,291 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, possible-boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, possible-boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, possible-c-format, possible-boost-format msgid "Run %s" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, possible-c-format, possible-boost-format msgid "%s View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, possible-boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, possible-boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3628,7 +3628,7 @@ msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3638,7 +3638,7 @@ msgid "Advanced" msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3652,8 +3652,8 @@ msgid "Supports" msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3663,8 +3663,8 @@ msgstr "" msgid "Pad" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3767,7 +3767,7 @@ msgstr "" msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3793,19 +3793,19 @@ msgstr "" msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4066,7 +4066,7 @@ msgstr "" msgid "Loading" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4485,7 +4485,7 @@ msgstr "" msgid "Delete Option %s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, possible-c-format, possible-boost-format msgid "Change Option %s" msgstr "" @@ -4604,18 +4604,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4775,11 +4775,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "" @@ -4820,11 +4820,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "" @@ -5205,7 +5205,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "" @@ -5317,29 +5317,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5849,7 +5849,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -5958,9 +5958,9 @@ msgstr "" msgid "Save zip file as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "" @@ -6221,7 +6221,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6247,8 +6247,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "" @@ -6504,12 +6504,12 @@ msgstr "" msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "" @@ -6616,7 +6616,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "" @@ -6624,7 +6624,7 @@ msgstr "" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6634,12 +6634,12 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, possible-boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, possible-c-format, possible-boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6650,11 +6650,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, possible-c-format, possible-boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6667,15 +6667,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, possible-c-format, possible-boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6688,180 +6688,180 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, possible-c-format, possible-boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, possible-boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6869,171 +6869,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, possible-c-format, possible-boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, possible-c-format, possible-boost-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "" @@ -7150,7 +7150,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7164,7 +7164,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7175,7 +7175,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7678,11 +7678,11 @@ msgstr "" msgid "Upload to Printer Host with the following filename:" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7691,18 +7691,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "" @@ -8138,7 +8138,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "" @@ -8222,11 +8222,11 @@ msgstr "" msgid "Flow" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "" @@ -8238,11 +8238,11 @@ msgstr "" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "" @@ -8250,19 +8250,20 @@ msgstr "" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "" @@ -8337,7 +8338,7 @@ msgid "Ramming settings" msgstr "" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "" @@ -8375,8 +8376,8 @@ msgstr "" msgid "Size and coordinates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "" @@ -8441,11 +8442,11 @@ msgstr "" msgid "Tilt time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "" @@ -8600,69 +8601,73 @@ msgstr "" msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8670,23 +8675,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8694,13 +8699,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8708,17 +8713,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8726,253 +8731,254 @@ msgid "" "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" "Click to reset current value to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, possible-boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 -msgid "" -"You will not be asked about the unsaved changes in presets the next time you " -"create new project" -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " -"switch a preset" +"create new project" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" +"You will not be asked about the unsaved changes in presets the next time you " +"switch a preset" +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 +msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" "- Closing PrusaSlicer while some presets are modified,\n" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, possible-boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, possible-boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, possible-boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, possible-boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, possible-boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, possible-boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, possible-boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9734,115 +9740,115 @@ msgstr "" msgid "write calledback failed" msgstr "" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "" -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "" -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" msgstr "" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" msgstr "" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "" -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, possible-boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, possible-boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -9850,13 +9856,13 @@ msgid "" "same diameter." msgstr "" -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." msgstr "" -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -9864,27 +9870,46 @@ msgid "" "set to 0)." msgstr "" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "" diff --git a/resources/localization/ca/PrusaSlicer_ca.po b/resources/localization/ca/PrusaSlicer_ca.po index 5248ef55bb..b4f99487b7 100644 --- a/resources/localization/ca/PrusaSlicer_ca.po +++ b/resources/localization/ca/PrusaSlicer_ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-12-16 18:50+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -611,7 +611,7 @@ msgstr "Actiu" msgid "PrusaSlicer version" msgstr "Versió de PrusaSlicer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "imprimir" @@ -619,17 +619,17 @@ msgstr "imprimir" msgid "filaments" msgstr "filaments" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "Impressió SLA" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "Material SLA" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "impressora" @@ -688,7 +688,7 @@ msgstr "Estàndard" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Tots" @@ -780,7 +780,7 @@ msgid "All installed printers are compatible with the selected %1%." msgstr "" "Totes les impressores instal·lades són compatibles amb el %1% seleccionat." -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "filament" @@ -875,7 +875,7 @@ msgstr "" "actualització." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Recarregar des del disc" @@ -1194,7 +1194,7 @@ msgstr "&Acabar" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "Cancel·lar" @@ -1265,7 +1265,7 @@ msgstr "" "d'escriptori de PrusaSlicer probablement s'ha pogut crear amb èxit." #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "Integració a l'escriptori" @@ -1754,8 +1754,8 @@ msgid "parameter name" msgstr "nom del paràmetre" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1963,7 +1963,7 @@ msgstr "Afegir a la base" msgid "Add selected shape(s) to the bed" msgstr "Afegir la(es) forma(es) seleccionada(es) a la base" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Afegir" @@ -2169,7 +2169,7 @@ msgid "Wipe" msgstr "Netejar" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Opcions" @@ -2438,7 +2438,7 @@ msgid "Add..." msgstr "Afegir..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Eliminar tot" @@ -3369,7 +3369,7 @@ msgstr "Error crític" msgid "Internal error: %1%" msgstr "Error intern: %1%" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3379,7 +3379,7 @@ msgstr "" "està danyat. Intenta eliminar manualment el fitxer per recuperar-se de " "l'error. Els vostres perfils d'usuari no es veuran afectats." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3388,12 +3388,12 @@ msgstr "" "probablement estigui danyat. Intenta eliminar manualment el fitxer per " "recuperar-se de l'error." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "Estàs obrint %1% versió %2%." -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3412,7 +3412,7 @@ msgstr "" "Si és així, es farà una còpia de seguretat de la configuració activa abans " "d'importar la nova configuració." -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3425,19 +3425,19 @@ msgstr "" "\n" "S'ha d'importar aquesta configuració?" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "Importar" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "No importar" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "Voleu continuar i instal·lar les actualitzacions de configuració?" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3453,7 +3453,7 @@ msgstr "" "de https://www.prusa3d.cz/prusaslicer/.\n" "Voleu continuar?" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3462,46 +3462,46 @@ msgstr "" "%s\n" "Voleu continuar?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Recorda la meva elecció" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "S'està carregant la configuració" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "Hi ha disponible una nova versió %1%." -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "Veure pàgina de Descàrregues." -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "La nova versió prellançament %1% està disponible." -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Consulteu pàgina de llançaments." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "Preparant pestanyes de configuració" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3514,24 +3514,24 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "Teniu els paràmetres preestablerts següents amb opcions desades per a " "\"Pujada del host d'impressió\"" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3541,7 +3541,7 @@ msgstr "" "informació als paràmetres d'impressora.\n" "Els paràmetres es mostraran a la configuració d'impressora física." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3552,139 +3552,139 @@ msgstr "" "Nota: Aquest nom es pot canviar posteriorment als paràmetres d'impressora " "física" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "Informació" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Recreant" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Carregant els paràmetres actuals" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "S'està carregant mode visualització" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Trieu un fitxer (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Trieu un o més fitxers (STL / OBJ / AMF / 3MF / PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Trieu un fitxer (GCODE/. GCO/. G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Canvi d'idioma d'una aplicació" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Seleccioneu l'idioma" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Idioma" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "modificat" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "Executar %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "Instantànies de &Configuració" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Inspeccionar / activar instantànies de configuració" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "&Prendre una Instanània de Configuració" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Captura una instantània de configuració" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "Comprova si hi ha actualitzacions de configuració" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Comprova si hi ha actualitzacions de configuració" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&Preferències" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Preferències de l'aplicació" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "Simple" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "Mode de visualització simple" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "Mode Avançat" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "Mode de visualització avançada" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Mode de visualització expert" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Mode" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s Tipus de vista" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "&Idioma" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "Grava el &firmware a la impressora" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "" "Carregar una imatge de microprogramari a una impressora basada en Arduino" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "Prenent una instantània de la configuració" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." @@ -3692,32 +3692,32 @@ msgstr "" "Alguns paràmetres estan modificats i els canvis no desats no seran capturats " "per la instantània de configuració." -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Nom de la instantània" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "S'està carregant una instantània de configuració" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "Continuar activant una instantània de configuració %1%?" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "No s'ha pogut activar la instantània de configuració." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "Reiniciar l'aplicació" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Selecció d'idiomes" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3725,88 +3725,88 @@ msgstr "" "Canviar l'idioma requereix reiniciar l'aplicació.\n" "Perdràs tot el contingut situat a la base." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Voleu continuar?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&Configuració" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "Les modificacions del paràmetre s'han desat correctament" msgstr[1] "Les modificacions dels paràmetres s'han desat correctament" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "En cas d'un nou projecte, totes les modificacions es restabliran" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" "S'està carregant un projecte nou mentre es modifica el projecte actual." -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "El projecte s'està carregant" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "Obre un nou projecte mentre alguns paràmetres estan sense desar." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "Les pujades encara estan en curs" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "Aturar-les i continuar igualment?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Càrregues en curs" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "És impossible imprimir objectes de diverses peces amb tecnologia SLA." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "" "Comproveu la llista d'objectes abans de canviar els paràmetres inicials." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "La configuració s'edita des de ConfigWizard" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Seleccioneu un fitxer gcode:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "Obrir l'hiperenllaç al navegador per defecte?" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "PrusaSlicer: Obrir hipervincle" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "Suprimir per obrir hiperenllaç al navegador" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "PrusaSlicer recordarà la vostra elecció." -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -3815,8 +3815,8 @@ msgstr "" "Visiteu \"Preferències\" i comproveu \"%1%\"\n" "per canviar la teva elecció." -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: No em tornis a preguntar" @@ -3922,7 +3922,7 @@ msgstr "Faldilla i bassa" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3932,7 +3932,7 @@ msgid "Advanced" msgstr "Avançat" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3946,8 +3946,8 @@ msgid "Supports" msgstr "Suports" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3957,8 +3957,8 @@ msgstr "Suports" msgid "Pad" msgstr "Pad" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -4061,7 +4061,7 @@ msgstr "Exporta com a STL" msgid "Reload the selected volumes from disk" msgstr "Torna a carregar els volums seleccionats des del disc" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "Substitueix per STL" @@ -4087,19 +4087,19 @@ msgstr "Escalar al volum d'impressió" msgid "Scale the selected object to fit the print volume" msgstr "Escala els objectes seleccionats per ajustar-se al volum d'impressió" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Convertir des d'unitats imperials" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Reverteix la conversió des de les unitats imperials" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "Converteix des de metres" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "Reverteix la conversió des de metres" @@ -4365,7 +4365,7 @@ msgstr "Carregar Modificador" msgid "Loading" msgstr "Carregant" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "S'està carregant el fitxer" @@ -4807,7 +4807,7 @@ msgstr "Suprimeix el paràmetre" msgid "Delete Option %s" msgstr "Suprimeix l'opció %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "Canvia l'opció %s" @@ -4926,18 +4926,18 @@ msgstr "Marcador d'eina" msgid "Legend/Estimated printing time" msgstr "Llegenda/Temps d'impressió estimat" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "Més" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "Obrir preferències." -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "Obre la Documentació al navegador web." @@ -5106,11 +5106,11 @@ msgstr "" "El fitxer SLA importat no contenia cap preajustament. Els preajustaments " "actuals de SLA s'han utilitzat com a reserva." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "No pots carregar un projecte SLA amb diverses peces a la base" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Atenció!" @@ -5151,11 +5151,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Carregar Configuració des de ini/amf/3mf/gcode i combina" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "Exportar el codi G" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "Envia el codi G" @@ -5548,7 +5548,7 @@ msgstr "Mostrar/Ocultar Llegenda i Temps d'impressió estimat" msgid "Show/Hide G-code window" msgstr "Mostrar/Ocultar finestra de codi G" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "Previsualització" @@ -5666,29 +5666,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "Tancant PrusaSlicer mentre es modifiquen alguns paràmetres." #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Configuració d'Impressió" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Configuració del Material" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Configuració del Filament" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Configuració de la Impressora" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "Sense títol" @@ -6205,7 +6205,7 @@ msgid "Open New Instance" msgstr "Obre una instància nova" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "Compara els predefinits" @@ -6314,9 +6314,9 @@ msgstr "Codi G" msgid "Save zip file as:" msgstr "Desa el fitxer zip com a:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Laminant" @@ -6584,7 +6584,7 @@ msgstr "ERROR:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "AVÃS:" @@ -6610,8 +6610,8 @@ msgstr "Instàncies" msgid "Instance %d" msgstr "Instància %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Capes" @@ -6894,12 +6894,12 @@ msgstr "A sota de l'objecte" msgid "Around object" msgstr "Al voltant de l'objecte" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Enviar a la impressora" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Laminar ara" @@ -7008,7 +7008,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "L'expulsió del dispositiu %s(%s) ha fallat." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Nou Projecte" @@ -7016,7 +7016,7 @@ msgstr "Nou Projecte" msgid "Expand sidebar" msgstr "Expandeix la barra lateral" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -7030,13 +7030,13 @@ msgstr[1] "" "Els paràmetres de sota han estat instal·lats temporalment a la instància " "activa de PrusaSlicer" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" "Error en carregar el fitxer \"%1%\" a causa d'una configuració no vàlida." -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -7051,11 +7051,11 @@ msgstr[1] "" "La mida dels objectes del fitxer %s sembla ser zero.\n" "Aquests objectes han estat eliminats del model" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "La mida de l'objecte és zero" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -7074,15 +7074,15 @@ msgstr[1] "" "La unitat interna de PrusaSlicer és el mil·límetre. Voleu recalcular les " "dimensions d'aquests objectes?" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "L'objecte és massa petit" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "Aplica-ho a tots els objectes petits restants que s'estan carregant." -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -7101,7 +7101,7 @@ msgstr[1] "" "polzades. La unitat interna de PrusaSlicer és el mil·límetre. Voleu " "recalcular les dimensions d'aquests objectes?" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" @@ -7111,22 +7111,22 @@ msgstr "" "En lloc de considerar-los com a objectes múltiples, s'hauria de carregar\n" "el fitxer com un sol objecte amb múltiples parts?" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Objecte de peces múltiples detectat" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" "Aquest fitxer no es pot carregar en mode simple. Vols canviar al mode expert?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "Dades avançades detectades" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -7135,7 +7135,7 @@ msgstr "" "No podeu afegir l'objecte(s) des de % s perquè un o alguns d'ells són de " "diverses peces" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -7146,7 +7146,7 @@ msgstr "" "En lloc de considerar-los com a objectes múltiples, hauria de considerar\n" "aquests fitxers per formar un sol objecte que té diverses parts?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7154,39 +7154,39 @@ msgstr "" "La teva peça sembla massa gran, així que s'ha escalat automàticament perquè " "pugui cabre a la base d'impressió." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Objecte massa gran?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "Exporta el fitxer STL:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "Exporta el fitxer AMF:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Desa el fitxer com a:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "Exporta el fitxer OBJ:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Suprimeix l'objecte" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "Suprimeix tots els objectes" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Reinicialitza el projecte" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." @@ -7194,15 +7194,15 @@ msgstr "" "L'objecte seleccionat no s'ha pogut dividir perquè només conté una part " "sòlida." -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "S'han eliminat totes les parts no sòlides (modificadors)" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Partir en diverses peces" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." @@ -7210,87 +7210,87 @@ msgstr "" "Un objecte té reforçadors de suport personalitzats que no es faran servir " "perquè els suports estan desactivats." -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "Habilitar suports només per als reforçadors" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Les dades no són vàlides" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Actualment s'està executant una altra feina d'exportació." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "Reemplaçar des de:" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "No es pot substituir per més d'un volum" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "S'ha produït un error durant la substitució" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "Seleccioneu el fitxer nou" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "No s'ha seleccionat el fitxer per a la substitució" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "Seleccioneu el fitxer que voleu tornar a carregar" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "El fitxer seleccionat" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "difereix del fitxer original" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "Voleu substituir-lo" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Torna a carregar des de:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "No es pot tornar a carregar:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "S'ha produït un error durant la recàrrega" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Torna a carregar-ho tot des del disc" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "Hi ha advertiments actius sobre els models laminats:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "advertiments generats" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "Vista editor 3D" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "Desfer / Refer s'està processant" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7301,21 +7301,21 @@ msgstr "" "S'han modificat alguns paràmetres de %1%, que es perdran després de canviar " "la tecnologia de la impressora." -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "Creant un projecte nou mentre es modifica el projecte actual." -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "Creant un nou projecte mentre es modifiquen alguns paràmetres." -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" "Pots mantenir les modificacions dels preajustaments al nou projecte o " "descartar-los" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" @@ -7326,125 +7326,125 @@ msgstr "" "Tingueu en compte que si es desen els canvis, el projecte nou no els " "conservarà" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "Creant un nou projecte" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Carregar Projecte" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Importar Objecte" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Importar Objetes" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "no conté codi gcode vàlid." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "S'ha produït un error en carregar el fitxer .gcode" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - Deixar anar fitxer de projecte" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Obre com a projecte" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Importa només la geometria" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Importa només la configuració" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Seleccioneu una acció que s'aplicarà al fitxer" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "Acció" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "No tornis a mostrar" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "Només podeu obrir un fitxer .gcode alhora." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "Arrossegar i deixar anar el fitxer de codi G" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Carregar Arxiu" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Carregar Arxius" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "Tots els objectes seran eliminats, vols continuar?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Suprimeix els objectes seleccionats" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Augmenta les instàncies" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Disminueix les instàncies" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Introduïu el nombre de còpies:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "Còpies de l'objecte seleccionat" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Estableix el nombre de còpies a %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Tallar pel Plànol" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "Desa el fitxer de codi G com a:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "Desa el fitxer SL1 / SL1S com a:" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "El nom del fitxer proporcionat no és vàlid." -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "Un sistema de fitxers FAT no permet els caràcters següents:" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" @@ -7452,15 +7452,15 @@ msgstr "" "La plataforma és buida.\n" "Vols desar el projecte?" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "Desar projecte" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "Exportar" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." @@ -7468,14 +7468,14 @@ msgstr "" "Els suports personalitzats, les costures i la pintura multimaterial s'han " "retirat després de reparar la malla." -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Enganxa des del porta-retalls" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "General" @@ -7624,7 +7624,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7638,7 +7638,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7649,7 +7649,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -8216,13 +8216,13 @@ msgstr "Enviar el codi G al host d'impressió" msgid "Upload to Printer Host with the following filename:" msgstr "Carregar el host amb el següent nom de fitxer:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" "Use barras diagonales ( / ) como separadores de directorios si fuese " "necesario." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Agrupar" @@ -8231,18 +8231,18 @@ msgstr "Agrupar" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "El nom del fitxer enviat no s'acaba amb \"%s\". Voleu continuar?" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "Pujar" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "Enviar i imprimir" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "Enviar i simular" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "Pujar" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8709,7 +8709,7 @@ msgstr "nom complet del perfil" msgid "symbolic profile name" msgstr "nom simbòlic del perfil" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Capes i Perímetres" @@ -8793,11 +8793,11 @@ msgstr "Superposició" msgid "Flow" msgstr "Fluxe" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Altre" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Opcions de sortida" @@ -8809,11 +8809,11 @@ msgstr "Impressió seqüencial" msgid "Extruder clearance" msgstr "Separació de l'extrusor" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Fitxer de sortida" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Scripts de postprocessament" @@ -8821,19 +8821,20 @@ msgstr "Scripts de postprocessament" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Notes" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "Dependències" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "Dependències del perfil" @@ -8917,7 +8918,7 @@ msgid "Ramming settings" msgstr "Configuració d'empenyiment" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "Codi G personalitzat" @@ -8964,8 +8965,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Mida i coordenades" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "Capacitats" @@ -9034,11 +9035,11 @@ msgstr "Inclinació" msgid "Tilt time" msgstr "Temps d'inclinació" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Correccions" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "Exposició" @@ -9217,42 +9218,46 @@ msgstr "Segur que desitges %1% el predefinit seleccionat?" msgid "%1% Preset" msgstr "%1% Predefinit" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Ajust" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Cerca" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Paraula sencera" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "Els límits de la màquina s'incorporaran al codi G i es faran servir per " "calcular el temps d'impressió." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9262,7 +9267,7 @@ msgstr "" "estimar el temps d'impressió, que per tant pot no ser exacte ja que la " "impressora pot aplicar un conjunt diferent de límits de la màquina." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9270,12 +9275,12 @@ msgstr "" "Els límits de la màquina no estan establerts, per tant, el temps d'impressió " "estimat pot no ser exacte." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "PANY BLOQUEJAT" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9283,12 +9288,12 @@ msgstr "" "indica que els paràmetres són els mateixos que els valors del sistema (o per " "defecte) per al grup d'opcions actual" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "PANY DESBLOQUEJAT" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9300,12 +9305,12 @@ msgstr "" "Feu clic a la icona PANY DESBLOQUEJAT per restablir tots els paràmetres del " "grup d'opcions actuals als valors del sistema (o per defecte)." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "VINYETA BLANCA" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9314,12 +9319,12 @@ msgstr "" "predeterminat),\n" "per al botó dret: indica que la configuració no s'ha modificat." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "FLETXA ENRERE" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9331,7 +9336,7 @@ msgstr "" "Feu clic al símbol FLETXA ENRERE per resetejar tots els paràmetres del grup " "d'opcions actuals als gravats anteriorment." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9339,7 +9344,7 @@ msgstr "" "La icona de PANY BLOQUEJAT indica que els paràmetres són els mateixos que " "els valors del sistema (per defecte) per al grup d'opcions actual" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9352,13 +9357,13 @@ msgstr "" "Feu clic per restablir totes les configuracions per al grup d'opcions " "actuals als valors del sistema (o per defecte)." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" "La icona de VINYETA BLANCA indica un predifinit no del sistema (o no per " "defecte)" -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9367,7 +9372,7 @@ msgstr "" "els de la darrera vegada que heu salvat els paràmetres per al grup d'opcions " "actual." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9378,7 +9383,7 @@ msgstr "" "són iguals als que es van desar per al grup d'opcions actual.\n" "Feu clic per tornar aquests valors als darrers desats." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -9386,7 +9391,7 @@ msgstr "" "La icona de PANY BLOQUEJAT indica que el valor és el mateix que el del " "sistema (per defecte)" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9396,7 +9401,7 @@ msgstr "" "configuracions i no són iguals als valors del sistema (o predeterminats).\n" "Feu clic per reiniciar el valor actual als del sistema (o predeterminats)" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9404,7 +9409,7 @@ msgstr "" "El símbol de VINYETA BLANCA indica que els valors són els mateixos que els " "dels paràmetres desats la darrera vegada." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9414,31 +9419,31 @@ msgstr "" "desat la darrera vegada.\n" "Feu clic per restaurar el valor al darrer paràmetre desat." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "Perfil d'impressió de material" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Cap del suport" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Pilar de suport" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "Connexió de les varetes de suport i unions" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Generació automàtica" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9447,74 +9452,74 @@ msgstr "" "\"%1%\" està desactivat perquè \"%2%\" és a la categoria \"%3%\".\n" "Per activar \"%1%\", si us plau desactiva \"%2%\"" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Elevació de l'objecte" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Pad al voltant de l'objecte" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Undef" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "Canvis no desats" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "S'estan canviant els predefinits: canvis no desats" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Valor antic" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Valor nou" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "Mantenir" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "Transferir" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "No desar" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Descartar" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Desar" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9522,11 +9527,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "PrusaSlicer recordarà la vostra acció." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9535,58 +9540,59 @@ msgstr "" "Visita \"Preferències\" i marca\"%1%\"\n" "per a què pregunti sobre els canvis no guardats novament." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "Alguns camps són massa llargs per cabre. El clic dret del ratolí mostra el " "text complet." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "No es desaran tots els canvis de configuració" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "Tots els canvis dels ajustaments seran descartats." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "Desa les opcions seleccionades." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "Conserva la configuració seleccionada." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" "Transfereix la configuració seleccionada al predefinit seleccionat " "recentment." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "Desar les opcions seleccionades a la configuració predefinida \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" "Transferir les opcions seleccionades al nou predifnit seleccionat \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "S'ha modificat el predefinit següent" msgstr[1] "S'han modificat els predefinits següents" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "Predefinit \"%1%\" té els següents canvis no desats:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9595,7 +9601,7 @@ msgstr "" "El predefinit \"%1%\" no és compatible amb el perfil d'impressora nou i té " "els canvis següents no desats:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9604,40 +9610,40 @@ msgstr "" "El predefinit \"%1%\" no és compatible amb el nou perfil d'impressió i té " "els canvis següents:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "Comptador d'extrusors" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "Mostra tots els predefinits (inclosos els incompatibles)" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "Valor predefinit esquerre" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "Valor predefinit dret" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "No s'ha trobat un dels predefinits" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "Els predefinits comparats tenen una tecnologia d'impressora diferent" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "Els predefinits són els mateixos" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." @@ -9646,11 +9652,11 @@ msgstr "" "Feu clic en aquest botó per seleccionar el mateix predefinit per al " "predefinit dret i esquerre." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "Categoria sense definir" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "Grup sense definir" @@ -10515,26 +10521,26 @@ msgstr "ha fallat la validació" msgid "write calledback failed" msgstr "ha fallat write calledback" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Tots els objectes són fora del volum d'impressió." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "La configuració subministrada provocarà una impressió buida." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "Alguns objectes estan massa a prop; L'extrusor xocarà amb ells." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Alguns objectes són massa alts i no es poden imprimir sense col·lisions " "d'extrusora." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10544,7 +10550,7 @@ msgstr "" "tots menys l'últim objecte o habiliteu el mode seqüencial per " "\"complete_objects\"." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -10552,7 +10558,7 @@ msgstr "" "L'opció gaso en espiral sols pot ser usada per imprimir objectes d'un sol " "material." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10560,7 +10566,7 @@ msgstr "" "La torre de neteja només és compatible si tots els extrusors tenen el mateix " "diàmetre de nozzle i usen filament del mateix diàmetre." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10568,7 +10574,7 @@ msgstr "" "La Torre de Neteja només és compatible amb les variants de codi G usades per " "Marlin, RepRap/Sprinter, RepRapFirmware i Repetier." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10576,20 +10582,20 @@ msgstr "" "Actualment,Torre de Neteja només és compatible amb l'encaminament relatiu de " "l'extrusor (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "La prevenció de degoteig actualment no és compatible amb la torre de neteja " "activa." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "La Torre de Neteja actualment no és compatible amb E volumètric " "(use_volumetric_e=0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10597,7 +10603,7 @@ msgstr "" "La Torre de Neteja no es permet ara per a impressions seqüencials " "multimaterial." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10605,7 +10611,7 @@ msgstr "" "La torre de neteja només és compatible amb diversos objectes si tenen " "alçades de capes iguals" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10613,7 +10619,7 @@ msgstr "" "La torre de neteja només es permet per a diversos objectes si s'imprimeixen " "sobre un nombre igual de capes de bassa" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10621,7 +10627,7 @@ msgstr "" "La torre de neteja només és compatible amb diversos objectes si " "s'imprimeixen amb la mateixa support_material_contact_distance" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10629,7 +10635,7 @@ msgstr "" "La torre de neteja només és compatible amb diversos objectes si es tallen " "igual." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10637,23 +10643,23 @@ msgstr "" "La Torre de Neteja només és compatible si tots els objectes tenen la mateixa " "alçada de capa variable" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "Un o més objectes han estat assignats a un extrusor inexistent." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm és massa baix per ser imprès a una alçada de capa de %3% mm" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" "%1%=%2% mm excessius per ser imprimible amb un nozzle de diàmetre de %3% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10665,7 +10671,7 @@ msgstr "" "o support_material_interface_extruder == 0), tots els nozzles han de ser del " "mateix diàmetre." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10673,7 +10679,7 @@ msgstr "" "Perquè la torre de neteja funcioni amb suports solubles, les capes de " "suports necessiten estar sincronitzades amb les capes de l'objecte." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10685,28 +10691,47 @@ msgstr "" "support_material_extruder com support_material_interface_extruder s'han de " "configurar a 0)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "" "L'alçada de primera capa no pot ser més gran que el diàmetre del nozzle" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "L'alçada de la capa no pot ser més gran que diàmetre del nozzle" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Omplint capes" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "Generant faldilla i bassa" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "S'està exportant el codi G" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "S'està generant el codi G" diff --git a/resources/localization/cs/PrusaSlicer.mo b/resources/localization/cs/PrusaSlicer.mo index 7523c895e9..9fb2a6f7b3 100644 Binary files a/resources/localization/cs/PrusaSlicer.mo and b/resources/localization/cs/PrusaSlicer.mo differ diff --git a/resources/localization/cs/PrusaSlicer_cs.po b/resources/localization/cs/PrusaSlicer_cs.po index a0f176d9b4..1ec8fea19a 100644 --- a/resources/localization/cs/PrusaSlicer_cs.po +++ b/resources/localization/cs/PrusaSlicer_cs.po @@ -1,13 +1,13 @@ msgid "" msgstr "" -"Language: cs_CZ\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n" "%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n" "%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -18,6 +18,22 @@ msgstr "" "\"%1%\" je deaktivováno, protože \"%2%\" je zapnuto v kategorii \"%3%\".\n" "Chcete-li povolit \"%1%\",, vypnÄ›te \"%2%\"" +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"V before_layer_gcode byl nalezen kód \"G92 E0\", který není kompatibilní s " +"absolutním adresováním extruderu." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"V kódu layer_gcode byl nalezen kód \"G92 E0\", který není kompatibilní s " +"absolutním adresováním extruderu." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -134,6 +150,12 @@ msgstr[1] "%1% (%2$d stÄ›ny)" msgstr[2] "%1% (%2$d stÄ›ny)" msgstr[3] "%1% (%2$d stÄ›n)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% PÅ™ednastavení" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -143,12 +165,6 @@ msgstr "" "%1% oznaÄené * nejsou kompatibilní s nÄ›kterými nainstalovanými " "tiskárnami." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% PÅ™ednastavení" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -210,6 +226,16 @@ msgstr "%s - ZLOMOVà ZMÄšNA" msgid "%s - Drop project file" msgstr "%s - Otevírání projektu" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "%s Rodina" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "%s Režim zobrazení" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -225,11 +251,6 @@ msgstr "%s nepodporuje procenta" msgid "%s error" msgstr "%s chyba" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "%s Rodina" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -240,6 +261,18 @@ msgstr "%s obsahuje varování" msgid "%s has encountered an error" msgstr "DoÅ¡lo k chybÄ› v programu %s" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"%s zaznamenal chybu. Bylo to pravdÄ›podobnÄ› způsobeno nedostatkem pamÄ›ti. " +"Pokud jste si jisti, že máte v systému dostatek pamÄ›ti RAM, může to být také " +"chyba programu a v takovém případÄ› bychom byli rádi, kdybyste nám to " +"nahlásili." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -256,18 +289,6 @@ msgstr "" "\n" "Aplikace se nyní ukonÄí." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"%s zaznamenal chybu. Bylo to pravdÄ›podobnÄ› způsobeno nedostatkem pamÄ›ti. " -"Pokud jste si jisti, že máte v systému dostatek pamÄ›ti RAM, může to být také " -"chyba programu a v takovém případÄ› bychom byli rádi, kdybyste nám to " -"nahlásili." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -316,11 +337,6 @@ msgstr "" "PÅ™i nastavování nových pÅ™edvoleb postupujte podle pokynů v %s a vyberte, zda " "chcete povolit automatické pÅ™ednastavené aktualizace." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "%s Režim zobrazení" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -473,22 +489,14 @@ msgstr "&Okno" msgid "(All)" msgstr "(VÅ¡echny)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(vÄetnÄ› cívky)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(minimálnÄ›)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "&(Znovu) Slicovat" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Znovu)Slicovat" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "&(Znovu) Slicovat" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(NÄ›které řádky nejsou zobrazeny)" @@ -497,6 +505,14 @@ msgstr "(NÄ›které řádky nejsou zobrazeny)" msgid "(Unknown)" msgstr "(Neznámý)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(vÄetnÄ› cívky)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(minimálnÄ›)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") nebyl nalezen." @@ -557,10 +573,6 @@ msgstr "3 (silné)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "Zobrazení 3D editoru" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "3D Plástev" @@ -569,6 +581,10 @@ msgstr "3D Plástev" msgid "3D Mouse disconnected." msgstr "3D myÅ¡ odpojena." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "Zobrazení 3D editoru" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "Nastavení 3DConnexion" @@ -607,10 +623,6 @@ msgid "" "from the system preset." msgstr "Bude vytvoÅ™ena oddÄ›lená kopie aktuálního systémového pÅ™ednastavení." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Byl nainstalován nový filament a bude aktivován." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "Byla nainstalována nová tiskárna, která bude aktivována." @@ -619,6 +631,10 @@ msgstr "Byla nainstalována nová tiskárna, která bude aktivována." msgid "A new SLA material was installed and it will be activated." msgstr "Byl nainstalován nový SLA materiál a bude aktivován." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Byl nainstalován nový filament a bude aktivován." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -657,6 +673,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "Byla detekována cesta mimo tiskovou oblast." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "API klÃ­Ä / Heslo" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "API klíÄ" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "PÅ™eruÅ¡it" @@ -666,10 +690,6 @@ msgstr "PÅ™eruÅ¡it" msgid "About %s" msgstr "O %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "nad" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Nad Z" @@ -702,10 +722,6 @@ msgstr "Aktivovat" msgid "Active" msgstr "Aktivní" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "aktivní" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adaptivní" @@ -735,6 +751,60 @@ msgstr "PÅ™idat" msgid "Add \"%1%\" as a next preset for the the physical printer \"%2%\"" msgstr "PÅ™idat \"%1%\" jako další pÅ™ednasatevení pro fyzickou tikárnu \"%2%\"" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "PÅ™idání obecného DílÄího objektu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "PÅ™idání Rozsahu vrstev" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "PÅ™idat instanci vybraného objektu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "PÅ™idat Vrstvy" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "PÅ™idání Skupiny nastavení pro Výškový rozsah" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "PÅ™idání skupiny nastavení pro Objekt" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "PÅ™idání skupiny nastavení pro DílÄí objekt" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "PÅ™idání nastavení pro Vrstvy" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "PÅ™idání nastavení pro Objekty" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "PÅ™idání nastavení pro DílÄí objeky" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "PÅ™idat Tvar" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "PÅ™idání tvaru z galerie" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "PÅ™idat tvary z galerie" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Pod podepíraný model pÅ™idá podložku" @@ -804,33 +874,15 @@ msgstr "PÅ™idat zmÄ›nu extruderu - Levé tlaÄítko myÅ¡i" msgid "Add extruder to sequence" msgstr "PÅ™idat extruder do seznamu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "PÅ™idání obecného DílÄího objektu" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "PÅ™idání Rozsahu vrstev" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "PÅ™idat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "PÅ™idat instanci vybraného objektu" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "PÅ™idat rozsah vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "PÅ™idat Vrstvy" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "PÅ™idat modifikátor" @@ -890,42 +942,6 @@ msgstr "PÅ™idat vybraný tvar(y) na podložku" msgid "Add settings" msgstr "PÅ™idat nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "PÅ™idání Skupiny nastavení pro Výškový rozsah" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "PÅ™idání skupiny nastavení pro Objekt" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "PÅ™idání skupiny nastavení pro DílÄí objekt" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "PÅ™idání nastavení pro Vrstvy" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "PÅ™idání nastavení pro Objekty" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "PÅ™idání nastavení pro DílÄí objeky" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "PÅ™idat Tvar" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "PÅ™idání tvaru z galerie" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "PÅ™idat tvary z galerie" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -980,14 +996,14 @@ msgstr "PÅ™idat/Odebrat pÅ™ednastavení" msgid "Add/Remove printers" msgstr "PÅ™idat/Odebrat tiskárny" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Doplňující informace:" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Další nastavení" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Doplňující informace:" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -999,26 +1015,19 @@ msgstr "" msgid "Address" msgstr "Adresa" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" msgstr "PokroÄilý" -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "PokroÄilý režim" - #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "PokroÄilý režim" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "PokroÄilý režim" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "PokroÄilý:  Výstupní log" @@ -1042,14 +1051,14 @@ msgstr "" msgid "After layer change G-code" msgstr "G-code po zmÄ›nÄ› vrstvy" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Zarovnejte model s daným bodem." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Zarovnat XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Zarovnejte model s daným bodem." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Zarovnaný" @@ -1114,10 +1123,6 @@ msgstr "VÅ¡echna uživatelská pÅ™ednastavení budou odstranÄ›na." msgid "All walls" msgstr "VÅ¡echny stÄ›ny" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "alokace selhala" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "Povolit pouze jednu instanci PrusaSliceru" @@ -1209,6 +1214,10 @@ msgstr "" "Na objektu jsou definované vynucené podpÄ›ry, které nebudou použity, protože " "podpÄ›ry jsou zakázány." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "Byl detekován objekt mimo tiskovou oblast." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1217,10 +1226,6 @@ msgstr "" "Byl detekován objekt mimo tiskovou oblast.\n" "Pro pokraÄování ve slicování vyÅ™eÅ¡te tento problém." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "Byl detekován objekt mimo tiskovou oblast." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "DoÅ¡lo k neoÄekávané chybÄ›" @@ -1241,14 +1246,6 @@ msgstr "" "Jakékoliv úpravy by mÄ›ly být uloženy jako nové pÅ™ednastavení zdÄ›dÄ›ná z " "tohoto." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "API klíÄ" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "API klÃ­Ä / Heslo" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Nastavení aplikace" @@ -1271,18 +1268,10 @@ msgstr "Automaticky aplikovat zmÄ›nu barvy" msgid "Apply to all the remaining small objects being loaded." msgstr "Použít na vÅ¡echny zbývající malé naÄítané objekty." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "vteÅ™in pÅ™ibližnÄ›" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Archimedean Chords" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "archiv je moc velký" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1313,6 +1302,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "Opravdu chcete odstranit tiskárnu \"%1%\"?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "Jste si jisti, že chcete odstranit vÅ¡echna nahrazení?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "Opravdu to chcete udÄ›lat?" @@ -1564,14 +1557,22 @@ msgstr "Záchrana pÅ™i neznámých hodnotách konfigurace" msgid "Balanced" msgstr "Vyvážené" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "založený na Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Tisková podložka" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "Tvar tiskové podložky" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "Tvar a rozmÄ›r podložky" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Teplota tiskové podložky:" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "Vlastní model podložky" @@ -1588,18 +1589,10 @@ msgstr "VyplnÄ›ní podložky objektem zruÅ¡eno." msgid "Bed filling done." msgstr "VyplnÄ›ní tiskové podložky je dokonÄené." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "Tvar tiskové podložky" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "Tvar tiskové podložky" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "Tvar a rozmÄ›r podložky" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Teplota tiskové podložky" @@ -1612,10 +1605,6 @@ msgstr "" "Teplota tiskové podložky pro další vrstvy po první vrstvÄ›. Nastavením na " "hodnotu nula vypnete ovládací příkazy teploty tiskové podložky ve výstupu." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Teplota tiskové podložky:" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1625,14 +1614,14 @@ msgstr "G-code pÅ™ed zmÄ›nou vrstvy" msgid "Before roll back" msgstr "PÅ™ed vrácením zpÄ›t" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Pod objektem" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "Pod Z" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Pod objektem" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "Nejlepší kvalita povrchu" @@ -1671,13 +1660,14 @@ msgstr "Objem láhve" msgid "Bottle weight" msgstr "Hmotnost láhve" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" -msgstr "Zespod" +msgstr "Spodních" + +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Pohled zespod" #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" @@ -1704,10 +1694,6 @@ msgstr "Tloušťka spodní skoÅ™epiny je %1% mm pÅ™i výšce vrstvy %2% mm." msgid "Bottom solid layers" msgstr "Plné spodní vrstvy" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Pohled zespod" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1806,10 +1792,6 @@ msgstr "Velikost Å¡tÄ›tce" msgid "Bucket fill" msgstr "Vylití barvou" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "buffer je příliÅ¡ malý" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1834,18 +1816,30 @@ msgstr "" "„Printer N“.\n" "Poznámka: Tento název lze pozdÄ›ji zmÄ›nit v nastavení fyzických tiskáren" -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "maximem pro profil tisku" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "ZRUÅ ENO" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "DOKONÄŒENO" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "CRC-32 kontrola selhala" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"CURL init selhal. PrusaSlicer nebude schopen navázat síťová pÅ™ipojení. Další " +"podrobnosti najdete v logu." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Kamera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Pohled kamery" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1856,6 +1850,10 @@ msgstr "" "VÄ›dÄ›li jste, že pomocí Äíselných kláves 0-6 můžete rychle pÅ™epínat " "mezi pÅ™eddefinovanými úhly kamery?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Pohled kamery" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "Nelze použít pÅ™i náhledu procesu." @@ -1878,10 +1876,6 @@ msgstr "ZruÅ¡it vybrané" msgid "Cancel upload" msgstr "ZruÅ¡it nahrávání" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "ZRUÅ ENO" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "ZruÅ¡eno" @@ -1980,30 +1974,10 @@ msgstr "Soubory s certifikátem (*.crt, *.pem)|*.crt;*.pem|VÅ¡echny soubory|*.*" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "ZmÄ›nit \"%1%\" na\"%2%\" pro tuto fyzickou tiskárnu \"%3%\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "ZmÄ›na typu kamery (perspektivní, ortografická)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "ZmÄ›na polomÄ›ru odtokového otvoru" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "ZmÄ›nit extruder" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "ZmÄ›nit Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "ZmÄ›nit extruder (N/A)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "ZmÄ›na barvy extruderu" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "ZmÄ›nit Extrudery" @@ -2017,6 +1991,26 @@ msgstr "ZmÄ›na parametru %s" msgid "Change Part Type" msgstr "ZmÄ›na typu Äásti" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "ZmÄ›na typu kamery (perspektivní, ortografická)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "ZmÄ›na polomÄ›ru odtokového otvoru" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "ZmÄ›nit extruder" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "ZmÄ›nit extruder (N/A)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "ZmÄ›na barvy extruderu" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "ZmÄ›na průmÄ›ru hrotu" @@ -2053,6 +2047,10 @@ msgstr "" "ZmÄ›nou nastavení se aplikace restartuje.\n" "Ztratíte objekty na tiskové podložce." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Kontrola aktualizace konfigurací" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Zkontrolovat aktualizace aplikace" @@ -2061,9 +2059,9 @@ msgstr "Zkontrolovat aktualizace aplikace" msgid "Check for configuration updates" msgstr "Zkontrolujte aktualizace konfigurace" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Kontrola aktualizace konfigurací" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "Vyberte SLA archiv:" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2085,6 +2083,10 @@ msgid "Choose an STL file to import bed shape from:" msgstr "" "Vyberte STL soubor, ze kterého chcete importovat tvar tiskové podložky:" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Vyberte jeden PNG soubor:" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Vyberte jeden soubor (3MF/AMF):" @@ -2101,14 +2103,6 @@ msgstr "Vyberte jeden nebo více souborů (STL, OBJ):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Vyberte jeden nebo více souborů (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Vyberte jeden PNG soubor:" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "Vyberte SLA archiv:" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Vyberte typ firmware používaný vaší tiskárnou." @@ -2123,10 +2117,6 @@ msgstr "Kruh" msgid "Circular" msgstr "Kruhový" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Vymazat vÅ¡e" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Vymazat historii operací ZpÄ›t / VpÅ™ed" @@ -2138,6 +2128,10 @@ msgstr "" "Vymazat historii operací ZpÄ›t a VpÅ™ed pÅ™i otevírání Äi vytváření nového " "projektu." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Vymazat vÅ¡e" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "Stisk pravého tlaÄítka myÅ¡i pro zobrazení/skrytí Historie" @@ -2191,11 +2185,6 @@ msgstr "Zavřít" msgid "Close holes" msgstr "Uzavírání dÄ›r" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Vzdálenost uzavÅ™ení" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "Zavírání PrusaSliceru. NÄ›která pÅ™ednastavení jsou zmÄ›nÄ›ná." @@ -2204,6 +2193,11 @@ msgstr "Zavírání PrusaSliceru. NÄ›která pÅ™ednastavení jsou zmÄ›nÄ›ná." msgid "Closing PrusaSlicer. Current project is modified." msgstr "Zavírání PrusaSliceru. Aktuální projekt je upravený." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Vzdálenost uzavÅ™ení" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "PolomÄ›r uzavÅ™ení" @@ -2220,6 +2214,15 @@ msgstr "Sbalit/Rozbalit postranní panel" msgid "Color" msgstr "Barva" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "G-code pro zmÄ›nu barvy" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Barevný tisk" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "ZmÄ›na barvy" @@ -2234,10 +2237,6 @@ msgstr "ZmÄ›na barvy (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "ZmÄ›na barvy (\"%1%\") pro Extruder %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "G-code pro zmÄ›nu barvy" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "G-code pro zmÄ›nu barvy" @@ -2246,11 +2245,6 @@ msgstr "G-code pro zmÄ›nu barvy" msgid "Color changes" msgstr "ZmÄ›ny barev" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Barevný tisk" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Výška barevného tisku" @@ -2284,12 +2278,12 @@ msgid "Comment:" msgstr "Komentář:" #: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +msgid "Compare Presets" msgstr "Porovnání pÅ™ednastavení" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 -msgid "Compare Presets" +msgid "Compare presets" msgstr "Porovnání pÅ™ednastavení" #: src/slic3r/GUI/Tab.cpp:216 @@ -2324,14 +2318,6 @@ msgstr "DokonÄení individuálních objektů" msgid "Completed" msgstr "DokonÄeno" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "DOKONÄŒENO" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "komprese se nezdaÅ™ila" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2349,6 +2335,22 @@ msgstr "Průvodce &nastavením" msgid "Configuration Assistant" msgstr "Průvodce nastavení tiskárny" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Zálohy konfigurace" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"Aktualizace konfigurace způsobí ztrátu zmÄ›n v pÅ™ednastaveních.\n" +"Zkontrolujte tedy neuložené zmÄ›ny a případnÄ› je uložte." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Průvodce nastavením" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2390,10 +2392,6 @@ msgstr "" "uživatelských pÅ™ednastavení? Pomocí nabídky Konfigurace - Zálohy " "konfigurace můžete konfigurace prohlížet a pÅ™epínat se mezi nimi." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Zálohy konfigurace" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Aktualizace nastavení" @@ -2410,18 +2408,6 @@ msgstr "Je k dispozici aktualizace konfigurace." msgid "Configuration updates" msgstr "Aktualizace nastavení" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"Aktualizace konfigurace způsobí ztrátu zmÄ›n v pÅ™ednastaveních.\n" -"Zkontrolujte tedy neuložené zmÄ›ny a případnÄ› je uložte." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Průvodce nastavením" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Potvrzení" @@ -2488,12 +2474,6 @@ msgstr "PÅ™ipojení k FlashAir funguje správnÄ› a nahrávání je povoleno." msgid "Connection to OctoPrint works correctly." msgstr "PÅ™ipojení k OctoPrint pracuje správnÄ›." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "" -"PÅ™ipojení k tiskárnám pÅ™ipojených prostÅ™ednictvím tiskového serveru se " -"nezdaÅ™ilo." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "PÅ™ipojení k tiskárnÄ› Prusa SL1 /SL1S funguje správnÄ›." @@ -2506,9 +2486,11 @@ msgstr "PÅ™ipojení k PrusaLinku funguje správnÄ›." msgid "Connection to Repetier works correctly." msgstr "PÅ™ipojení k Repetieru funguje správnÄ›." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "pokraÄovat" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "" +"PÅ™ipojení k tiskárnám pÅ™ipojených prostÅ™ednictvím tiskového serveru se " +"nezdaÅ™ilo." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2592,25 +2574,26 @@ msgstr "Pozice chladící trubiÄky" msgid "Copies of the selected object" msgstr "Kopie vybraného modelu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" -msgstr "Kopírovat" +msgstr "Kopie" + +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Zkopírovat Äíslo verze" #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Kopírovat výbÄ›r do schránky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Kopírovat do schránky" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Kopírovat do Schránky" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Zkopírovat Äíslo verze" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Kopírovat do schránky" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2759,10 +2742,6 @@ msgstr "" "trojúhelníkových sítí. Operace uzavírání mezery může snížit koneÄné " "rozliÅ¡ení tisku, proto je vhodné udržovat rozumnÄ› nízkou hodnotu." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "CRC-32 kontrola selhala" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "" @@ -2802,14 +2781,6 @@ msgstr "Ctrl + koleÄko myÅ¡i" msgid "Cubic" msgstr "Kubický" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"CURL init selhal. PrusaSlicer nebude schopen navázat síťová pÅ™ipojení. Další " -"podrobnosti najdete v logu." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2927,10 +2898,6 @@ msgstr "Mrtvá zóna:" msgid "Decimate ratio" msgstr "Procento decimace" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "dekomprese selhala nebo je archiv poÅ¡kozen" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Odebrání Instancí" @@ -2941,16 +2908,9 @@ msgstr "Odebrání Instancí" msgid "Default" msgstr "Výchozí" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "výchozí" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "Výchozí profil pro SLA materiál" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2966,18 +2926,10 @@ msgstr "" msgid "Default color" msgstr "Výchozí barva" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "výchozí barva" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "Výchozí šířka extruze" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "výchozí profil filamentu" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "Výchozí profil filamentu" @@ -2991,10 +2943,6 @@ msgstr "" "Výchozí materiálový profil spojený se souÄasným profilem tiskárny. PÅ™i " "výbÄ›ru souÄasného profilu tiskárny se aktivuje tento materiálový profil." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "výchozí tiskový profil" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "Výchozí tiskový profil" @@ -3009,22 +2957,6 @@ msgstr "" "Výchozí tiskový profil spojený se souÄasným profilem tiskárny. PÅ™i výbÄ›ru " "souÄasného profilu tiskárny se aktivuje tento tiskový profil." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "výchozí profil pro SLA materiál" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "Výchozí profil pro SLA materiál" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "výchozí SLA tiskový profil" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "výchozí hodnota" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "VytvoÅ™it vlastní tiskový profil" @@ -3045,10 +2977,6 @@ msgstr "" msgid "Delay after unloading" msgstr "ZpoždÄ›ní po vyjmutí" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "smazat" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3059,11 +2987,6 @@ msgstr "Smazat" msgid "Delete &All" msgstr "Sm&azat VÅ¡e" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "Smazat vÅ¡e" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "Smazat vÅ¡echny instance objektu" @@ -3072,22 +2995,6 @@ msgstr "Smazat vÅ¡echny instance objektu" msgid "Delete All Objects" msgstr "Smazat vÅ¡echny objekty" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "Smazat zmÄ›nu barvy" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "Odebrat znaÄku zmÄ›ny barvy pro aktuální vrstvu" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "Smazat vlastní G-code" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "OdstranÄ›ní odtokového otvoru" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "OdstranÄ›ní Rozsahu vrstev" @@ -3100,32 +3007,15 @@ msgstr "Smazání Instance" msgid "Delete Object" msgstr "Smazat Objekt" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"OdstranÄ›ní jednoho nebo více vlastních tvarů. Systémové tvary nelze odstranit" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "Odebrání parametru %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "Odebrat pozastavení tisku" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "Odstranit fyzickou tiskárnu" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "Odstranit fyzickou tiskárnu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "Smazat vybrané" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "Smazání vybraných" @@ -3146,6 +3036,44 @@ msgstr "Smazat Nastavení" msgid "Delete Subobject" msgstr "Smazání dílÄího objektu" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "Smazat vÅ¡e" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "Smazat zmÄ›nu barvy" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "Odebrat znaÄku zmÄ›ny barvy pro aktuální vrstvu" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "Smazat vlastní G-code" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "OdstranÄ›ní odtokového otvoru" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"OdstranÄ›ní jednoho nebo více vlastních tvarů. Systémové tvary nelze odstranit" + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "Odebrat pozastavení tisku" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "Odstranit fyzickou tiskárnu" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "Smazat vybrané" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "Odebrání podpÄ›rného bodu" @@ -3222,10 +3150,6 @@ msgstr "OdznaÄit vÅ¡echny objekty" msgid "Desktop Integration" msgstr "Integrace do systému" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "Integrace do systému selhala." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3237,6 +3161,10 @@ msgstr "" "\n" "Pro pokraÄování stisknÄ›te tlaÄítko \"Provést\"." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "Integrace do systému selhala." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "Integrace do systému probÄ›hla úspěšnÄ›." @@ -3330,10 +3258,6 @@ msgstr "" "Vrstvy a perimetry a upravte hodnoty v pravém panelu. Více informací najdete " "v dokumentaci." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "liší se od původního souboru" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "SmÄ›r" @@ -3504,17 +3428,13 @@ msgstr "Chcete uložit zmÄ›ny do \"%1%\"?" msgid "Do you want to save your manually edited support points?" msgstr "Chcete uložit ruÄnÄ› upravené podpÄ›rné body?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "Chcete pro tyto modely FFF tiskáren vybrat výchozí filamenty?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "Chcete pro tyto modely tiskáren vybrat výchozí SLA materiály?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "neobsahuje platný G-code." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "Chcete pro tyto modely FFF tiskáren vybrat výchozí filamenty?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3609,10 +3529,36 @@ msgstr "Dynamic" msgid "E&xport" msgstr "E&xportovat" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "CHYBA" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "CHYBA:" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"CHYBA: Nejprve zavÅ™ete vÅ¡echny manipulátory dostupné z levého panelu nástrojů" + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "CHYBA: nedostatek prostÅ™edků ke spuÅ¡tÄ›ní nové úlohy." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Upravit" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Úprava Rozsahu vrstev" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Upravit barvu" @@ -3626,10 +3572,6 @@ msgstr "" msgid "Edit custom G-code" msgstr "Upravit vlastní G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Úprava Rozsahu vrstev" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Upravit zprávu pÅ™i pozastavení tisku" @@ -3662,10 +3604,6 @@ msgstr "Podporovaná vlastní vektorizace:" msgid "Ejec&t SD Card / Flash Drive" msgstr "Vysunou&t SD kartu / Flash disk" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "Vysunout úložiÅ¡tÄ›" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "Vysunout SD kartu / Flash disk" @@ -3674,6 +3612,10 @@ msgstr "Vysunout SD kartu / Flash disk" msgid "Eject SD card / Flash drive after the G-code was exported to it." msgstr "Vysunout SD kartu / Flash disk po vyexportování G-codu." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "Vysunout úložiÅ¡tÄ›" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -3970,9 +3912,9 @@ msgstr "" msgid "Error" msgstr "Chyba" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "CHYBA" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Chybová hláška" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -3991,10 +3933,6 @@ msgstr "Chyba pÅ™i nahrazení" msgid "Error loading shaders" msgstr "Chyba pÅ™i naÄítání shaderů" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Chybová hláška" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4033,29 +3971,11 @@ msgstr "Chyba!" msgid "Error! Invalid model" msgstr "Chyba! Neplatný model" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "CHYBA:" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Chyba: %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "CHYBA: nedostatek prostÅ™edků ke spuÅ¡tÄ›ní nové úlohy." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"CHYBA: Nejprve zavÅ™ete vÅ¡echny manipulátory dostupné z levého panelu nástrojů" - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4077,15 +3997,6 @@ msgstr "Akce" msgid "Everywhere" msgstr "VÅ¡ude" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "s výjimkou prvních %1% vrstev." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "vyjma první vrstvy." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4132,14 +4043,14 @@ msgstr "" msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Expertní režim" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Režim Expert" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Expertní režim" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Exportovat" @@ -4160,14 +4071,6 @@ msgstr "Exportovat &Trasy extruderu jako OBJ" msgid "Export 3MF" msgstr "Exportovat 3MF" -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export all presets including physical printers to file" -msgstr "Exportovat do souboru vÅ¡echna pÅ™ednastavení vÄetnÄ› fyzických tiskáren" - -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export all presets to file" -msgstr "Exportovat vÅ¡echna pÅ™ednastavení do souboru" - #: src/libslic3r/PrintConfig.cpp:4261 msgid "Export AMF" msgstr "Exportovat AMF" @@ -4176,14 +4079,6 @@ msgstr "Exportovat AMF" msgid "Export AMF file:" msgstr "Exportovat AMF soubor:" -#: src/slic3r/GUI/GUI_Factories.cpp:715 -msgid "Export as STL" -msgstr "Exportovat jako STL" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:89 -msgid "Export config" -msgstr "Exportovat konfiguraci" - #: src/slic3r/GUI/MainFrame.cpp:1257 msgid "Export Config &Bundle" msgstr "Exportovat KonfiguraÄní &Balík" @@ -4192,6 +4087,63 @@ msgstr "Exportovat KonfiguraÄní &Balík" msgid "Export Config Bundle With Physical Printers" msgstr "Exportovat KonfiguraÄní balík vÄetnÄ› fyzických tiskáren" +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "Export G-codu." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Exportovat G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "Exportovat G-code na SD kartu / Flash disk" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Exportovat OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Exportovat OBJ soubor:" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Exportovat Plochu jako &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Exportovat T&iskovou plochu vÄetnÄ› podpÄ›r jako STL" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Exportovat SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Exportovat STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Exportovat STL soubor:" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export all presets including physical printers to file" +msgstr "Exportovat do souboru vÅ¡echna pÅ™ednastavení vÄetnÄ› fyzických tiskáren" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export all presets to file" +msgstr "Exportovat vÅ¡echna pÅ™ednastavení do souboru" + +#: src/slic3r/GUI/GUI_Factories.cpp:715 +msgid "Export as STL" +msgstr "Exportovat jako STL" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:89 +msgid "Export config" +msgstr "Exportovat konfiguraci" + #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Exportovat souÄasnou konfiguraci do souboru" @@ -4217,55 +4169,14 @@ msgid "" "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Exportovat úplné zdrojové cesty modelů a dílů do souborů 3mf a amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Exportovat G-code" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "Exportovat G-code na SD kartu / Flash disk" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "Export G-codu." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Exportovat OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Exportovat OBJ soubor:" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "Export doÄasného 3MF souboru selhalo" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Exportovat Plochu jako &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Exportovat T&iskovou plochu vÄetnÄ› podpÄ›r jako STL" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Exportovat SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exportovat absolutní cesty k 3mf a amf souborům" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Exportovat STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Exportovat STL soubor:" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Exportovat model(y) jako 3MF." @@ -4294,6 +4205,10 @@ msgstr "Exportovat trasy extruderu jako OBJ" msgid "Export." msgstr "Export." +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Exportování souboru G-code" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Exportování konfiguraÄního balíku" @@ -4302,10 +4217,6 @@ msgstr "Exportování konfiguraÄního balíku" msgid "Exporting finished." msgstr "Exportování dokonÄeno." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Exportování souboru G-code" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4332,10 +4243,6 @@ msgstr "Doba osvitu" msgid "External perimeter" msgstr "VnÄ›jší perimetr" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "vnÄ›jší perimetry" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "VnÄ›jší perimetry" @@ -4381,6 +4288,10 @@ msgstr "Extruder %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Extruder (nástroj) se zmÄ›ní na Extruder \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Barva extruderu" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "Extruder zmÄ›nÄ›n na" @@ -4389,10 +4300,6 @@ msgstr "Extruder zmÄ›nÄ›n na" msgid "Extruder clearance" msgstr "Kolizní oblast extruderu" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Barva extruderu" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Odsazení extruderu" @@ -4414,22 +4321,10 @@ msgstr "PoÄet extruderů" msgid "Extrusion" msgstr "Extruze" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "Osa extruderu" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "NásobiÄ extruze" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Teplota extruze:" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Šířka extruze" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4438,6 +4333,22 @@ msgstr "Šířka extruze" msgid "Extrusion Width" msgstr "Šíře extruze" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "Osa extruderu" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "NásobiÄ extruze" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Šířka extruze" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "Tiskárny technologie FFF" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Facety" @@ -4446,10 +4357,6 @@ msgstr "Facety" msgid "Faded layers" msgstr "Vrstvy poÄáteÄního osvitu" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "selhalo nalezení koÅ™enového adresáře" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4471,6 +4378,10 @@ msgstr "Aktivace konfiguraÄního snapshotu se nezdaÅ™ila." msgid "Failed to drill some holes into the model" msgstr "NÄ›které otvory se do modelu nepodaÅ™ilo se vyvrtat" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "Rychlost ventilátoru (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Nastavení ventilátoru" @@ -4479,10 +4390,6 @@ msgstr "Nastavení ventilátoru" msgid "Fan speed" msgstr "Rychlost ventilátoru" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "Rychlost ventilátoru (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4538,19 +4445,41 @@ msgstr "Typ" msgid "Feature types" msgstr "Typy extrudování" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "Tiskárny technologie FFF" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "filament" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "PrůmÄ›r filamentu:" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "Filament Konec G-code" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "PÅ™epsání globálních hodnot" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "VýbÄ›r Filamentových Profilů" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Nastavení filamentu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Panel Nastavení filamentu" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "Filament ZaÄátek G-code" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4561,14 +4490,6 @@ msgstr "PrůmÄ›r filamentu a trysky" msgid "Filament at extruder %1%" msgstr "Filament v extruderu %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "PrůmÄ›r filamentu:" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "Filament Konec G-code" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4585,36 +4506,14 @@ msgstr "Doba zavádÄ›ní filamentu" msgid "Filament notes" msgstr "Poznámky k filamentu" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "PÅ™epsání globálních hodnot" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Parkovací pozice filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "VýbÄ›r Filamentových Profilů" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "Vlastnosti filamentu" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Nastavení filamentu" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Panel Nastavení filamentu" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "Filament ZaÄátek G-code" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Typ filamentu" @@ -4623,58 +4522,18 @@ msgstr "Typ filamentu" msgid "Filament unload time" msgstr "Doba vysouvání filamentu" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "filamenty" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filamenty" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "zavÅ™ení souboru selhalo" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "vytvoÅ™ení souboru selhalo" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "Soubor pro nahrazení nebyl vybrán" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "Soubor nenalezen" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "soubor nenalezen" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "otevÅ™ení souboru selhalo" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "Ätení souboru se nezdaÅ™ilo" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "hledání souboru selhalo" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "soubor stat selhal" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "soubor je příliÅ¡ velký" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "zápis souboru se nezdaÅ™il" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "Soubor pro nahrazení nebyl vybrán" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4752,14 +4611,6 @@ msgstr "DokonÄeno" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Aktualizace firmware" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Soubor s firmware:" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Firmware Retrakce" @@ -4768,6 +4619,14 @@ msgstr "Firmware Retrakce" msgid "Firmware Type" msgstr "Typ firmware" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Aktualizace firmware" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Soubor s firmware:" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "První barva" @@ -4876,10 +4735,6 @@ msgstr "Průtok" msgid "Flow rate" msgstr "Průtok" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "průtok je maximalizován" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -4955,15 +4810,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Pouze pro vynucené podpÄ›ry" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"na levé stranÄ›: indikuje nesystémové (jiné než výchozí) pÅ™ednastavení,\n" -"na pravé stranÄ›: indikuje, že nastavení nebylo zmÄ›nÄ›no." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5018,10 +4864,6 @@ msgstr "Nalezená vyhrazená klíÄová slova v" msgid "From" msgstr "PÅ™edchozí extruder" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "z" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "Ze seznamu objektů nemůžete smazat poslední Äást objektu." @@ -5038,10 +4880,6 @@ msgstr "Pohled zepÅ™edu" msgid "Full fan speed at layer" msgstr "Maximální otáÄky ventilátoru ve vrstvÄ›" -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "celé jméno profilu" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "Fullscreen" @@ -5056,6 +4894,12 @@ msgstr "" "VÄ›dÄ›li jste, že PrusaSlicer můžete pÅ™epnout do režimu celé obrazovky? " "Použijte klávesovou zkratku F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "ÄŒlenitý povrch" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5068,12 +4912,6 @@ msgstr "" "vytvoÅ™it texturu pÅ™ipomínající hrubou látku? Pomocí modifikátorů můžete také " "aplikovat Älenitý povrch pouze na Äást modelu." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "ÄŒlenitý povrch" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "ÄŒlenitý povrch (experimentální)" @@ -5090,10 +4928,6 @@ msgstr "Tloušťka Älenitého povrchu" msgid "Fuzzy skin type." msgstr "Typ Älenitého povrchu." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "G-code" @@ -5135,13 +4969,13 @@ msgstr "Náhledy G-codu" msgid "G-code viewer" msgstr "ProhlížeÄ G-codu" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero General Public License, verze 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "GUI" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5193,10 +5027,6 @@ msgstr "Generovat podpÄ›ry" msgid "Generate supports for the models" msgstr "Generovat podpÄ›ry modelů" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "generovaná varování" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Generování G-code" @@ -5241,10 +5071,6 @@ msgstr "Generování vrcholového bufferu" msgid "Generic" msgstr "Obecný" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "Gizmo Å™ez" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM malování pozice Å¡vu" @@ -5253,14 +5079,6 @@ msgstr "Gizmo FDM malování pozice Å¡vu" msgid "Gizmo FDM paint-on supports" msgstr "Gizmo FDM malování podpÄ›r" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Gizmo posuv" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Gizmo posuvu: Stiskni pro 1mm krok" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Gizmo Multimateriálového malování" @@ -5269,6 +5087,26 @@ msgstr "Gizmo Multimateriálového malování" msgid "Gizmo Place face on bed" msgstr "Gizmo Umístit plochou na podložku" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA dutina" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Gizmo SLA podpÄ›rné body" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "Gizmo Å™ez" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Gizmo posuv" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Gizmo posuvu: Stiskni pro 1mm krok" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Gizmo rotace" @@ -5301,14 +5139,6 @@ msgstr "Gizmo měřítko: Stiskni pro 5% krok" msgid "Gizmo scale: Scale selection to fit print volume" msgstr "Gizmo měřítko: Vyplnit tiskový objem aktivním výbÄ›rem modelů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Gizmo SLA dutina" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Gizmo SLA podpÄ›rné body" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5331,10 +5161,6 @@ msgstr "Gizmo-Měřítko" msgid "Gizmos" msgstr "Gizma" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, verze 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5355,14 +5181,36 @@ msgstr "Skupina" msgid "Group manipulation" msgstr "Manipulace se skupinou" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "GUI" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Gyroid" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"HTTP stavový kód: %1%\n" +"TÄ›lo zprávy: \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "Soubor HTTPS CA" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát " +"s vlastním podpisem." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "PrůmÄ›r hrotu" @@ -5534,14 +5382,14 @@ msgstr "ZmÄ›na parametru dutiny" msgid "Honeycomb" msgstr "Plástev" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "Vodorovné stÄ›ny" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Horizontální posuvník" +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "Vodorovné stÄ›ny" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5604,40 +5452,14 @@ msgstr "UplatnÄ›ní limitů" msgid "How to apply the Machine Limits" msgstr "Jak se mají projevit limity stroje" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"HTTP stavový kód: %1%\n" -"TÄ›lo zprávy: \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "Soubor HTTPS CA" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát " -"s vlastním podpisem." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Velikost ikon vůÄi výchozí velikosti" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5673,6 +5495,44 @@ msgstr "" "pÅ™ednastavení. Tyto aktualizace jsou staženy do doÄasného umístÄ›ní. Pokud je " "k dispozici nové pÅ™ednastavení, zobrazí se upozornÄ›ní pÅ™i startu programu." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "" +"Pokud je povoleno, PrusaSlicer se otevÅ™e na pozici, na které byl zavÅ™en." + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "" +"Pokud je tato funkce povolena, PrusaSlicer nebude v prohlížeÄi otevírat " +"hypertextové odkazy." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"Pokud je tato možnost povolena, budou karty Nastavení umístÄ›ny jako položky " +"nabídky. Pokud je zakázáno, bude použito původní uživatelské rozhraní." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Pokud je povoleno, stáhne Slic3r na pozadí aktualizace vestavÄ›ných " +"systémových pÅ™ednastavení. Tyto aktualizace jsou staženy do doÄasného " +"umístÄ›ní. Pokud je k dispozici nové pÅ™ednastavení, zobrazí se upozornÄ›ní pÅ™i " +"startu programu." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"Pokud je tato možnost povolena, bude uživatelské rozhraní používat tmavý " +"režim. Pokud je zakázáno, bude použito původní uživatelské rozhraní." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "Pokud je povoleno, bude povoleno opakování další náhodné barvy." @@ -5685,6 +5545,14 @@ msgstr "" "Pokud je tato možnost povolena, vÅ¡echny tiskové extrudery na zaÄátku tisku " "vytlaÄí na pÅ™edním okraji podložky malé množství materiálu." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Pokud je povoleno, v případÄ› vyžádání, umožňuje funkci „Znovu naÄíst z " +"disku“ automaticky vyhledat a naÄíst soubory." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5697,14 +5565,6 @@ msgstr "" "Pokud není povoleno, funkce „Znovu naÄíst z disku“ požádá o zadání cest ke " "každému souboru pomocí dialogového okna." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"Pokud je povoleno, v případÄ› vyžádání, umožňuje funkci „Znovu naÄíst z " -"disku“ automaticky vyhledat a naÄíst soubory." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5735,17 +5595,6 @@ msgstr "" "Pokud je povoleno, pohyby sekvenÄního posuvníku v náhledu gcodu se aplikují " "pouze na horní vrstvu. Pokud je zakázáno, aplikují se na celý gcode." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "" -"Pokud je povoleno, PrusaSlicer se otevÅ™e na pozici, na které byl zavÅ™en." - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "" -"Pokud je tato funkce povolena, PrusaSlicer nebude v prohlížeÄi otevírat " -"hypertextové odkazy." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5760,6 +5609,14 @@ msgstr "Pokud je povoleno, vykreslí objekt za pomoci mapy prostÅ™edí." msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "Pokud je povoleno, pÅ™i zoomu obrátí funkci koleÄka myÅ¡i" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"Pokud je zaÅ¡ktnuto, PrusaSlicer bude výchozí aplikaci pro otevírání souborů ." +"gcode." + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5772,34 +5629,6 @@ msgstr "" "Pokud je zaÅ¡ktnuto, PrusaSlicer bude výchozí aplikaci pro otevírání souborů ." "stl." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"Pokud je zaÅ¡ktnuto, PrusaSlicer bude výchozí aplikaci pro otevírání souborů ." -"gcode." - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"Pokud je tato možnost povolena, budou karty Nastavení umístÄ›ny jako položky " -"nabídky. Pokud je zakázáno, bude použito původní uživatelské rozhraní." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Pokud je povoleno, stáhne Slic3r na pozadí aktualizace vestavÄ›ných " -"systémových pÅ™ednastavení. Tyto aktualizace jsou staženy do doÄasného " -"umístÄ›ní. Pokud je k dispozici nové pÅ™ednastavení, zobrazí se upozornÄ›ní pÅ™i " -"startu programu." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5855,13 +5684,6 @@ msgstr "" "Äistící věže. Uživatel je odpovÄ›dný za to, že nedojde ke kolizi tiskové " "hlavy s tiskem." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"Pokud je tato možnost povolena, bude uživatelské rozhraní používat tmavý " -"režim. Pokud je zakázáno, bude použito původní uživatelské rozhraní." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -5968,15 +5790,6 @@ msgstr "" "Pokud je doba tisku vrstvy odhadnuta kratší než tento poÄet sekund, rychlost " "tisku se zpomalí, aby se prodloužila doba tisku této vrstvy." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Pokud je tato funkce zapnutá, ventilátor nebude nikdy vypnut a bude udržován " -"v chodu alespoň rychlostí která je nastavena jako minimální rychlost. " -"UžiteÄné pro PLA, Å¡kodlivé pro ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6001,6 +5814,15 @@ msgstr "" "Pokud je tato volba povolena, Slic3r vyvolá poslední výstupní adresář " "namísto toho, který obsahuje vstupní soubory." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Pokud je tato funkce zapnutá, ventilátor nebude nikdy vypnut a bude udržován " +"v chodu alespoň rychlostí která je nastavena jako minimální rychlost. " +"UžiteÄné pro PLA, Å¡kodlivé pro ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6134,26 +5956,6 @@ msgstr "NaÄíst konfiguraci z &Projektu" msgid "Import Config from ini/amf/3mf/gcode" msgstr "NaÄíst konfiguraci ze souboru ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Importovat pouze konfiguraci" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Importovat soubor" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Importovat pouze modely" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Importovat model a profil" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Importujte pouze model" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Importovat Objekt" @@ -6162,14 +5964,6 @@ msgstr "Importovat Objekt" msgid "Import Objects" msgstr "Importovat Objekty" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "Import opraveného 3MF souboru selhal" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Importovat pouze profil" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Importovat SL1 / SL1S Archiv" @@ -6190,6 +5984,38 @@ msgstr "Importovat STL/OBJ/AM&F/3MF" msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importovat STL/OBJ/AMF/3MF bez konfigurace, zachová stávající podložku" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Importovat pouze konfiguraci" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Importovat soubor" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Importovat pouze modely" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Importovat model a profil" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Importujte pouze model" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "Import opraveného 3MF souboru selhal" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Importovat pouze profil" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importuje se SLA archiv" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Import zruÅ¡en." @@ -6198,18 +6024,6 @@ msgstr "Import zruÅ¡en." msgid "Importing done." msgstr "Import dokonÄen." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importuje se SLA archiv" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "in" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "Ve vlastním G-kódu byla nalezena vyhrazená klíÄová slova:" @@ -6244,41 +6058,6 @@ msgstr "PÅ™idání Instancí" msgid "Increase/decrease edit area" msgstr "ZvÄ›tÅ¡it / zmenÅ¡it oblast úprav" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"indikuje, že nÄ›která nastavení byla zmÄ›nÄ›na a nejsou shodná se systémovými " -"(výchozími) hodnotami pro danou skupinu nastavení.\n" -"KliknÄ›te na ikonu ODEMKNUTÉHO ZÃMKU pro reset vÅ¡ech nastavení aktuální " -"skupiny nastavení na systémové (nebo výchozí) hodnoty." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"indikuje, že nastavení jsou stejná jako systémové (výchozí) hodnoty pro " -"aktuální skupinu nastavení" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavení, které není shodné s naposledy " -"uloženým pÅ™ednastavením pro aktuální skupinu nastavení.\n" -"KliknÄ›te na ikonu Å IPKY ZPÄšT pro reset vÅ¡ech nastavení pro aktuální skupinu " -"nastavení na naposledy uložené pÅ™ednastavení." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6292,10 +6071,6 @@ msgstr "" msgid "Infill" msgstr "Výplň" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "výplň" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "Tisknout výplň pÅ™ed tiskem perimetrů" @@ -6341,6 +6116,11 @@ msgstr "Výška první vrstvy" msgid "Inner brim only" msgstr "Pouze vnitÅ™ní límec" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "Zadaná hodnota je mimo rozsah" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6350,11 +6130,6 @@ msgstr "" "Vstupní hodnota je mimo povolený rozsah\n" "Jste si jisti, že %s je správná hodnota a že chcete pokraÄovat?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "Zadaná hodnota je mimo rozsah" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6427,10 +6202,6 @@ msgstr "RozteÄ kontaktních vrstev" msgid "Interface shells" msgstr "Mezilehlé stÄ›ny" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "interní chyba" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6441,6 +6212,10 @@ msgstr "VnitÅ™ní chyba: %1%" msgid "Internal infill" msgstr "VnitÅ™ní výplň" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "Neplatný průnik podpÄ›ry do modelu" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "Neplatná data" @@ -6450,18 +6225,6 @@ msgstr "Neplatná data" msgid "Invalid file format." msgstr "Neplatný formát souboru." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "neplatný název souboru" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "Neplatný průnik podpÄ›ry do modelu" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "neplatná hlaviÄka nebo je archiv poÅ¡kozen" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6477,14 +6240,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "Neplatný Äíselný vstup." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "neplatný parametr" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "PrůmÄ›r hrotu podpÄ›ry je neplatný" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Ironing" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6499,32 +6267,14 @@ msgstr "" "vyrovnala případné nadzvednuté otÅ™epky plastu. Více informací se dozvíte v " "dokumentaci. (Vyžaduje pokroÄilý nebo expertní režim.)" -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Ironing" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Způsob vyhlazování" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "je založen na Slic3r od Alessandra Ranellucciho a RepRap komunity." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "Je to bezpeÄné?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "je licencován pod" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Izometrické" @@ -6580,15 +6330,6 @@ msgstr "Rozkmit (Jitter)" msgid "Jump to height" msgstr "PÅ™echod do výšky" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"PÅ™echod do výšky %s\n" -"nebo Nastavení režimu pravítka" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6600,6 +6341,15 @@ msgstr "" "Nastavení režimu pravítka\n" "nebo Nastavení sekvence extruderů pro celý tisk" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"PÅ™echod do výšky %s\n" +"nebo Nastavení režimu pravítka" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "PÅ™echod na pohyb v rámci vrstvy" @@ -6642,9 +6392,25 @@ msgstr "Klávesové zkratky" msgid "Keyboard shortcuts" msgstr "Klávesové zkratky" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "ZAMÄŒENà ZÃMEK" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že nastavení jsou stejná jako systémové " +"(nebo výchozí) hodnoty pro aktuální skupinu nastavení" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že hodnota je shodná se systémovou " +"(výchozí) hodnotou." #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6698,23 +6464,11 @@ msgstr "Výškové limity vrstvy" msgid "Layer range Settings to modify" msgstr "Nastavení pro vrstvy v rozsahu" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "vrstva(y)" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Vrstvy" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Vrstvy a perimetry" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6728,15 +6482,9 @@ msgstr "Vrstvy a perimetry" msgid "Layers and Perimeters" msgstr "Vrstvy a perimetry" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Spodních" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Vrchních" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Vrstvy a perimetry" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6751,6 +6499,14 @@ msgstr "Ponechat možnost \"%1%\" povolenou" msgid "Left" msgstr "Zleva" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Hodnota levého pÅ™ednastavení" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Pohled zleva" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6767,14 +6523,6 @@ msgstr "Levé tlaÄítko myÅ¡i" msgid "Left mouse button:" msgstr "Levé tlaÄítko myÅ¡i:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Hodnota levého pÅ™ednastavení" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Pohled zleva" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Legenda / Odhadovaný Äas tisku" @@ -6802,6 +6550,10 @@ msgstr "" "LicenÄní ujednání vÅ¡ech následujících programů (knihoven) je souÄástí " "licenÄní smlouvy" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Zvednout Z" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6810,10 +6562,6 @@ msgstr "" "Zvedne objekt nad podložku v případÄ›, pokud je je ÄásteÄnÄ› pod ním. Ve " "výchozím nastavení povoleno, pro zakázání použijte --no-ensure-on-bed." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Zvednout Z" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6830,18 +6578,42 @@ msgstr "Čára" msgid "Load" msgstr "NaÄíst" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "NaÄíst konfiguraci zesouboru ini/amf/3mf/gcode a slouÄit" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "NaÄíst soubor" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "NaÄíst soubory" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "NaÄíst Modifikátor" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "PÅ™idání Äásti" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "NaÄíst Projekt" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "NaÄíst model" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "NaÄíst jako model v imperiálních jednotkách" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "NaÄíst SL1 / SL1S archiv" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "NaÄíst jako model v imperiálních jednotkách" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6870,10 +6642,6 @@ msgstr "" "SL1 / SL1S archiv, která rovněž umožňuje rekonstruovat 3D modely z " "voxelových dat." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "NaÄíst konfiguraci zesouboru ini/amf/3mf/gcode a slouÄit" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "NaÄíst konfiguraci z projektu" @@ -6890,30 +6658,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "NaÄíst exportovaný konfiguraÄní soubor" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "NaÄíst soubor" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "NaÄíst soubory" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "NaÄíst Modifikátor" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "PÅ™idání Äásti" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "NaÄíst pÅ™ednastavení z balíku" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "NaÄíst Projekt" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "NaÄíst tvar ze souboru STL…" @@ -6922,10 +6670,6 @@ msgstr "NaÄíst tvar ze souboru STL…" msgid "Load..." msgstr "NaÄíst..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "zavádÄ›n" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "NaÄítání" @@ -6989,26 +6733,6 @@ msgstr "Lokální souÅ™adnice" msgid "Lock supports under new islands" msgstr "Ukotvi podpÄ›ry pod novými ostrůvky" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "ZAMÄŒENà ZÃMEK" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že nastavení jsou stejná jako systémové " -"(nebo výchozí) hodnoty pro aktuální skupinu nastavení" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že hodnota je shodná se systémovou " -"(výchozí) hodnotou." - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Úroveň logování" @@ -7041,12 +6765,6 @@ msgid "" msgstr "" "Nejsou nastaveny limity zařízení, proto nemusí být odhad doby tisku pÅ™esný." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"Limity stroje budou emitovány do G-codu a budou použity k odhadu doby tisku." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7057,6 +6775,12 @@ msgstr "" "tisku, což vÅ¡ak nemusí být pÅ™esné, protože tiskárna může použít jinou sadu " "limitů." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"Limity stroje budou emitovány do G-codu a budou použity k odhadu doby tisku." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7088,10 +6812,6 @@ msgstr "Panel Nastavení mate&riálu" msgid "Material" msgstr "Materiál" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Profil tiskového materiálu" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7102,6 +6822,10 @@ msgstr "Nastavení materiálu" msgid "Material Settings Tab" msgstr "Panel Nastavení materiálu" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Profil tiskového materiálu" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Maximum" @@ -7130,10 +6854,6 @@ msgstr "Maximální výška tisku" msgid "Max print speed" msgstr "Maximální rychlost tisku" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "max PrusaSlicer verze" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Maximální negativní objemový sklon" @@ -7158,6 +6878,18 @@ msgstr "Maximální vzdálenost mezi podpÄ›rami u Äástí s řídkou výplní." msgid "Maximum acceleration E" msgstr "Maximální zrychlení E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Maximální zrychlení X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Maximální zrychlení Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Maximální zrychlení Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Maximální zrychlení pro posuny" @@ -7206,18 +6938,6 @@ msgstr "Maximální zrychlení pÅ™i retrakci" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Maximální zrychlení pÅ™i retrakci (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Maximální zrychlení X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Maximální zrychlení Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Maximální zrychlení Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Maximální zrychlení" @@ -7247,6 +6967,18 @@ msgstr "Maximální doba osvitu" msgid "Maximum feedrate E" msgstr "Maximální rychlost posuvu E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Maximální rychlost posuvu X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Maximální rychlost posuvu Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Maximální rychlost posuvu Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Maximální rychlost posuvu osy E" @@ -7263,18 +6995,6 @@ msgstr "Maximální rychlost posuvu osy Y" msgid "Maximum feedrate of the Z axis" msgstr "Maximální rychlost posuvu osy Z" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Maximální rychlost posuvu X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Maximální rychlost posuvu Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Maximální rychlost posuvu Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Maximální rychlosti posuvu" @@ -7287,6 +7007,18 @@ msgstr "Maximální doba poÄáteÄního osvitu" msgid "Maximum jerk E" msgstr "Maximální ryv E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Maximální ryv X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Maximální ryv Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Maximální ryv Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Maximální ryv (jerk) osy E" @@ -7303,18 +7035,6 @@ msgstr "Maximální ryv (jerk) osy Y" msgid "Maximum jerk of the Z axis" msgstr "Maximální ryv (jerk) osy Z" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Maximální ryv X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Maximální ryv Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Maximální ryv Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Maximální délka výplňové kotvy" @@ -7405,10 +7125,6 @@ msgstr "Minimum" msgid "Min print speed" msgstr "Minimální rychlost tisku" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "min PrusaSlicer verze" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Minimální vzdálenost podpÄ›rných bodů" @@ -7471,6 +7187,10 @@ msgstr "Minimální rychlosti posuvu" msgid "Minimum initial exposure time" msgstr "Minimální doba poÄáteÄního osvitu" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Minimální tloušťka skoÅ™epiny" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7483,10 +7203,6 @@ msgstr "" "Minimální tloušťku stÄ›ny milimetrech? Tato funkce je užiteÄná zejména " "pÅ™i použití funkce promÄ›nné výšky vrstvy." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Minimální tloušťka skoÅ™epiny" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Minimální tloušťka vrchní / spodní skoÅ™epiny" @@ -7523,6 +7239,10 @@ msgstr "" "Minimální šířka prvků, které je tÅ™eba zachovat pÅ™i provádÄ›ní kompenzace " "rozplácnutí první vrstvy." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Zrcadlit" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7534,18 +7254,14 @@ msgstr "" "verzi? KlepnÄ›te na model pravým tlaÄítkem myÅ¡i, vyberte možnost Zrcadlit a " "vyberte osu zrcadlení." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Zrcadlit" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Zrcadlit Objekt" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Zrcadlit horizontálnÄ›" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Zrcadlit Objekt" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Zrcadlit vybraný objekt" @@ -7576,133 +7292,10 @@ msgstr "Nesprávný typ tiskového serveru: % s" msgid "Mixed" msgstr "Smíšený" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (nula pro vypnutí)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm nebo %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm nebo % (nula pro deaktivaci)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s nebo %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "Reži&m" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "model" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Model" @@ -7715,19 +7308,10 @@ msgstr "Oprava modelu byla zruÅ¡ena" msgid "Model repair finished" msgstr "Oprava modelu byla dokonÄena" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "PokroÄilý" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Úpravy aktuálního profilu budou uloženy." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "upraveno" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Modifikátor" @@ -7736,14 +7320,6 @@ msgstr "Modifikátor" msgid "Modifiers" msgstr "Modifikátory" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "cena/láhev" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "cena/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotónní" @@ -7775,6 +7351,10 @@ msgstr "KoleÄko myÅ¡i:" msgid "Move" msgstr "PÅ™esunout" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "Posunutí Objektu" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "Posunout aktivní ukazatel dolů" @@ -7799,10 +7379,6 @@ msgstr "Posunout Å™ezovou rovinu" msgid "Move drainage hole" msgstr "Posun odtokového otvoru" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "Posunutí Objektu" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "Posunout bod" @@ -7892,6 +7468,14 @@ msgstr "Vynásobí kopie tímto Äíslem." msgid "N/A" msgstr "N/A" +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "ŽÃDNà RAPIDNà EXTRUZE" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "POZNÃMKA:" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -7925,6 +7509,10 @@ msgstr "Názvy pÅ™ednastavení souvisejících s fyzickou tiskárnou" msgid "Nearest" msgstr "Nejbližší" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Negativní Objem" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -7939,14 +7527,18 @@ msgstr "" "vytvářet snadno upravitelné otvory. Více informací se dozvíte v dokumentaci. " "(Vyžaduje režim PokroÄilý nebo Expert.)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Negativní Objem" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "Hledání v síti" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Nový Projekt" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Nová hodnota" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "Nové rozvržení, přístup pÅ™es tlaÄítko nastavení v horním menu" @@ -7960,10 +7552,6 @@ msgstr "K dispozici je nová pÅ™edběžná verze %1%." msgid "New printer preset selected" msgstr "Zvoleno nové pÅ™ednastavení tiskárny" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Nový Projekt" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Nový projekt, odstranit modely na podložce" @@ -7973,10 +7561,6 @@ msgstr "Nový projekt, odstranit modely na podložce" msgid "New release version %1% is available." msgstr "K dispozici je nová verze %1%." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Nová hodnota" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8027,10 +7611,6 @@ msgstr "Pro aktuální model nelze vygenerovat žádnou podložku" msgid "No previously sliced file." msgstr "Žádné dříve slicované soubory." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "ŽÃDNà RAPIDNà EXTRUZE" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Bez řídkých vrstev (EXPERIMENTÃLNÃ)" @@ -8055,18 +7635,10 @@ msgstr "Žádné" msgid "Normal" msgstr "Normální" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "normální režim" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Normální režim" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "není ZIP archiv" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "Nenalezeno:" @@ -8102,10 +7674,6 @@ msgstr[3] "" "Upozorňujeme, že tyto tiskárny budou po smazání vybraného pÅ™ednastavení " "odstranÄ›ny." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "POZNÃMKA:" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8147,14 +7715,14 @@ msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0." msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Poznámka: Je vyžadována verze Repetier alespoň 0.90.0." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 -msgid "Note: some shortcuts work in (non)editing mode only." -msgstr "Poznámka: nÄ›které zkratky nefungují v režimu editace." - #: src/slic3r/GUI/SavePresetDialog.cpp:137 msgid "Note: This preset will be replaced after saving" msgstr "UpozornÄ›ní: Taoto pÅ™ednastavení bude po uložení nahrazeno" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 +msgid "Note: some shortcuts work in (non)editing mode only." +msgstr "Poznámka: nÄ›které zkratky nefungují v režimu editace." + #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8173,14 +7741,14 @@ msgstr "Oznámení" msgid "Notify about new releases" msgstr "UpozornÄ›ní na nové verze" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "tryska" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Tryska" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "PrůmÄ›r trysky:" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Teplota trysky a tiskové podložky" @@ -8190,10 +7758,6 @@ msgstr "Teplota trysky a tiskové podložky" msgid "Nozzle diameter" msgstr "PrůmÄ›r trysky" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "PrůmÄ›r trysky:" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Teplota trysky" @@ -8283,13 +7847,9 @@ msgstr "" msgid "Number of tool changes" msgstr "PoÄet zmÄ›n nástroje" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "objekt" -msgstr[1] "objektů" -msgstr[2] "objektů" -msgstr[3] "objektů" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "ZmÄ›na nastavení objektu" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8316,10 +7876,6 @@ msgstr "Objekt nebo Instanci" msgid "Object reordered" msgstr "ZÄ›na poÅ™adí objektů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "ZmÄ›na nastavení objektu" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8355,10 +7911,6 @@ msgstr "" "extruderu, aby se uÅ¡etÅ™il materiál, který by jinak skonÄil v Äistící věži. " "Výsledkem budou objekty s náhodnÄ› mixovanými barvami." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "objekty" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Seznam Objektů" @@ -8371,15 +7923,6 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Verze OctoPrintu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "souÄasného Objektu" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Velikost" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Odsazení" @@ -8392,14 +7935,14 @@ msgstr "" "Odsazení límce od tiÅ¡tÄ›ného objektu. Odsazení se aplikuje po kompenzaci " "rozplácnutí první vrstvy." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Původní rozložení s panelem karet" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Stará hodnota" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Původní rozložení s panelem karet" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8482,14 +8025,6 @@ msgstr "Zvednout Z pouze pod" msgid "Only retract when crossing perimeters" msgstr "Provést retrakci pouze pÅ™i pÅ™ejíždÄ›ní perimetrů" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"S vybraným filamentem jsou kompatibilní pouze následující nainstalované " -"tiskárny" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8498,6 +8033,14 @@ msgstr "" "S vybranými SLA materiály jsou kompatibilní pouze následující nainstalované " "tiskárny" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"S vybraným filamentem jsou kompatibilní pouze následující nainstalované " +"tiskárny" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Prevence odkapávání" @@ -8512,6 +8055,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Otevřít &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Otevřít soubor s certifikátem CA" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Otevřít dokumentaci ve webovém prohlížeÄi." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Otevřít složku." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Otevřít soubor G-code:" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "Otevřít prohlížeÄ G-codu" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Otevřít Novou Instanci" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Otevřít Nastavení." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "Otevřít PrusaSlicer" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Otevřít G-code" @@ -8529,35 +8104,15 @@ msgstr "Otevřít soubor s projektem" msgid "Open as project" msgstr "Otevřít jako projekt" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Otevřít soubor s certifikátem CA" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "OtevÅ™e stránku s changelogem" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Otevřít dokumentaci ve webovém prohlížeÄi." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "OtevÅ™e stránku pro stažení programu" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Otevřít složku." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Otevřít soubor G-code:" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "Otevřít prohlížeÄ G-codu" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "Otevřít hypertextový odkaz ve výchozím prohlížeÄi?" @@ -8570,36 +8125,24 @@ msgstr "Otevřít nový prohlížeÄ G-codu" msgid "Open new instance" msgstr "Otevřít novou instanci" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Otevřít Novou Instanci" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Otevřít Nastavení." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "" "Otevřít projekt STL/OBJ/AMF/3MF s konfigurací, odstranit modely na podložce" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "Otevřít PrusaSlicer" - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "Otevřít webovou stránku %s v prohlížeÄi" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "OtevÅ™ete dialogové okno pro úpravu galerie tvarů" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otevřít stránku pro stahování Prusa 3D ovladaÄů ve vaÅ¡em prohlížeÄi" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "OtevÅ™ete dialogové okno pro úpravu galerie tvarů" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Otevřít stránku s verzemi tohoto softwaru ve vaÅ¡em prohlížeÄi" @@ -8624,6 +8167,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Operace se ukonÄuje. Prosíme o chvíli strpení." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Optimalizovat Orientaci" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "" @@ -8646,10 +8193,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Optimalizovat orientaci" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Optimalizovat Orientaci" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8673,10 +8216,6 @@ msgstr "Volby pro podpÄ›ry a raft" msgid "Options:" msgstr "Možnosti:" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "nebo stisknÄ›te klávesu „+“" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "Řazení manipulátorů objektu podle typu" @@ -8697,14 +8236,14 @@ msgstr "PoÄátek" msgid "Other" msgstr "Ostatní" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Ostatní vrstvy" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Ostatní výrobci" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Ostatní vrstvy" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "VnÄ›jší a vnitÅ™ní límec" @@ -8713,22 +8252,22 @@ msgstr "VnÄ›jší a vnitÅ™ní límec" msgid "Outer brim only" msgstr "Pouze vnÄ›jší okraj" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "Výstupní soubor" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "Výstupní soubor" +#: src/libslic3r/PrintConfig.cpp:4305 +msgid "Output Model Info" +msgstr "Info o výstupním modelu" + +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "Výstupní soubor" + #: src/libslic3r/PrintConfig.cpp:1902 msgid "Output filename format" msgstr "Formát názvu výstupního souboru" -#: src/libslic3r/PrintConfig.cpp:4305 -msgid "Output Model Info" -msgstr "Info o výstupním modelu" - #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Možnosti výstupu" @@ -8839,6 +8378,10 @@ msgstr "" "ve smÄ›ru nebo proti smÄ›ru hodinových ruÄiÄek stisknutím tlaÄítka Page Up nebo Page Down?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Malování pozice Å¡vu" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8851,9 +8394,10 @@ msgstr "" "poÄáteÄní/koncový bod každého perimetru? VyzkouÅ¡ejte funkci Malování " "pozice Å¡vu. (Vyžaduje režim PokroÄilý nebo Expert.)" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Malování pozice Å¡vu" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Malování podpÄ›r" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -8867,11 +8411,6 @@ msgstr "" "nemají být podpÄ›ry? VyzkouÅ¡ejte Malování podpÄ›r. (Vyžaduje režim " "PokroÄilý nebo Expert.)" -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Malování podpÄ›r" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -8905,10 +8444,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Maluje pouze jeden facet." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "název parametru" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Validace parametru" @@ -8929,14 +8464,14 @@ msgstr "" msgid "Part" msgstr "Část" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Manipulace s Äástmi" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "ZmÄ›na nastavení Äásti" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Manipulace s Äástmi" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "Heslo" @@ -8945,6 +8480,10 @@ msgstr "Heslo" msgid "Paste" msgstr "Vložit" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Vložení ze schránky" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Vložit ze schránky" @@ -8953,10 +8492,6 @@ msgstr "Vložit ze schránky" msgid "Paste from clipboard" msgstr "Vložit ze schránky" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Vložení ze schránky" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Vzor" @@ -8987,16 +8522,16 @@ msgstr "Vzor použitý pro generování podpÄ›r." msgid "Pause" msgstr "Pozastavení" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Pozastavení tisku (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "G-code pro pozastavení tisku" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Pozastavení tisku (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "Procento průtoku vzhledem k normální výšce vrstvy objektu." @@ -9030,6 +8565,12 @@ msgstr "" "Rychlost vs. pÅ™esnost výpoÄtu. Nižší hodnoty mohou způsobit nežádoucí " "artefakty." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "" +"Provedení integrace do systému se nezdaÅ™ilo - NepodaÅ™ilo se najít " +"spustitelný soubor." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9047,12 +8588,6 @@ msgstr "" "Gcodeviewer. Odkaz na PrusaSlicer byl pravdÄ›podobnÄ› na ploÅ¡e úspěšnÄ› " "vytvoÅ™en." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "" -"Provedení integrace do systému se nezdaÅ™ilo - NepodaÅ™ilo se najít " -"spustitelný soubor." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9069,10 +8604,6 @@ msgstr "Perimetr" msgid "Perimeter extruder" msgstr "Extruder pro perimetry" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "perimetry" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9148,6 +8679,10 @@ msgstr "Šířka podpÄ›rného hrotu" msgid "Place bearings in slots and resume printing" msgstr "Vložte ložiska do otvorů a pokraÄujte v tisku" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Umístit plochou na podložku" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9160,10 +8695,6 @@ msgstr "" "ležela na podložce? Vyberte funkci Place on face nebo stisknÄ›te " "klávesu F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Umístit plochou na podložku" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9205,10 +8736,6 @@ msgstr "Pozice" msgid "Position (for multi-extruder printers)" msgstr "Pozice (pro tiskárny s více extrudery)" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Pozice zaÄátku perimetrů." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "Pozice X" @@ -9217,6 +8744,10 @@ msgstr "Pozice X" msgid "Position Y" msgstr "Pozice Y" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Pozice zaÄátku perimetrů." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "Post-processing skripty musí G-code upravit in place." @@ -9315,11 +8846,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "PÅ™ednastavení s názvem \"%1%\" již existuje." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Kopie" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9382,10 +8908,6 @@ msgstr "Dříve slicovaný soubor (" msgid "Prime all printing extruders" msgstr "Příprava vÅ¡ech tiskových extruderů" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "tisk" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Tisk" @@ -9394,14 +8916,6 @@ msgstr "Tisk" msgid "Print &Host Upload Queue" msgstr "Fronta na&hrávání do tiskového serveru" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Tisk obrysových perimetrů od vnÄ›jších po vnitÅ™ní namísto opaÄného výchozího " -"poÅ™adí." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Parametry extruderu" @@ -9410,6 +8924,23 @@ msgstr "Parametry extruderu" msgid "Print Host upload" msgstr "Nahrávání do tiskového serveru" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Nastavení tisku" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Panel Nastavení tisku" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Tisk obrysových perimetrů od vnÄ›jších po vnitÅ™ní namísto opaÄného výchozího " +"poÅ™adí." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9423,20 +8954,11 @@ msgstr "Režim tisku" msgid "Print pauses" msgstr "Pauzy tisku" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Nastavení tisku" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Nastavení tisku" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Panel Nastavení tisku" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "Rychlost tisku" @@ -9471,9 +8993,14 @@ msgstr "" msgid "Printer" msgstr "Tiskárna" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "tiskárna" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Nastavení tiskárny" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Panel Nastavení tiskárny" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9483,10 +9010,6 @@ msgstr "Absolutní korekce tiskárny" msgid "Printer gamma correction" msgstr "Gamma korekce tiskárny" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "model tiskárny" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Poznámky o tiskárnÄ›" @@ -9495,6 +9018,18 @@ msgstr "Poznámky o tiskárnÄ›" msgid "Printer preset names" msgstr "Názvy pÅ™ednastavení tiskáren" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Korekce měřítka v ose X" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Korekce měřítka v ose Y" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Korekce měřítka v ose Z" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9512,27 +9047,6 @@ msgstr "Korekce měřítka v ose Y" msgid "Printer scaling correction in Z axis" msgstr "Korekce měřítka v ose Z" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Korekce měřítka v ose X" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Korekce měřítka v ose Y" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Korekce měřítka v ose Z" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Nastavení tiskárny" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Panel Nastavení tiskárny" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Technologie tisku" @@ -9624,6 +9138,11 @@ msgstr "Prusa tiskárny technologie FFF" msgid "Prusa MSLA Technology Printers" msgstr "Prusa tiskárny technologie MSLA" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "" +"Inicializace grafického uživatelského rozhraní PrusaSliceru se nezdaÅ™ila" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9655,11 +9174,6 @@ msgstr "PrusaSlicer detekoval úložiÅ¡tÄ› SSL certifikátu v: %1%" msgid "PrusaSlicer error" msgstr "Chyba programu PrusaSlicer" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "" -"Inicializace grafického uživatelského rozhraní PrusaSliceru se nezdaÅ™ila" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10001,6 +9515,16 @@ msgstr "Obvyklý" msgid "Regular expression" msgstr "Regulární výraz" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"Relativní adresování extruderu vyžaduje resetování polohy extruderu v každé " +"vrstvÄ›, aby se zabránilo ztrátÄ› pÅ™esnosti s plovoucí desetinnou Äárkou. Do " +"layer_gcode pÅ™idejte \"G92 E0\"." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Pouze stabilní verze" @@ -10009,6 +9533,11 @@ msgstr "Pouze stabilní verze" msgid "Reload all from disk" msgstr "VÅ¡e znovu naÄíst z disku" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Znovu naÄíst z disku" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10022,11 +9551,6 @@ msgstr "" "model ve 3D zobrazení a zvolte možnost Znovu naÄíst z disku. Více informací " "najdete v dokumentaci." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Znovu naÄíst z disku" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Znovu naÄíst z:" @@ -10064,15 +9588,19 @@ msgstr "Zapamatovat moji volbu" msgid "Remember output directory" msgstr "Pamatovat si výstupní složku" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "odebrat" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "Odebrat" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "Odebrat instanci vybraného objektu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "OdstranÄ›ní Multimateriálového malování" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "Odebrat vÅ¡echny otvory" @@ -10098,18 +9626,10 @@ msgstr "Odebrat extruder ze seznamu" msgid "Remove instance" msgstr "Odebrat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "Odebrat instanci vybraného objektu" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "Odstranit rozsah vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "OdstranÄ›ní Multimateriálového malování" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "Odebere jednu instanci vybraného objektu" @@ -10241,11 +9761,11 @@ msgid "Repairing was canceled" msgstr "Oprava byla zruÅ¡ena" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" +msgid "Repeat Last Quick Slice" msgstr "Opakovat poslední rychlé slicování" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat Last Quick Slice" +msgid "Repeat last quick slice" msgstr "Opakovat poslední rychlé slicování" #: src/slic3r/GUI/Plater.cpp:3432 @@ -10281,21 +9801,6 @@ msgstr "Nahlá&sit chybu" msgid "Report an issue on %s" msgstr "Nahlásit chybu v programu %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "vyžaduje max. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "vyžaduje min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "vyžaduje min. %s a max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Skenovat" @@ -10304,6 +9809,14 @@ msgstr "Skenovat" msgid "Reset" msgstr "Výchozí" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Resetovat Projekt" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Výchozí NatoÄení" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Obnovit Å™ezovou rovinu" @@ -10316,18 +9829,10 @@ msgstr "Obnovit Å™ezovou rovinu" msgid "Reset direction" msgstr "Resetovat smÄ›r" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Resetovat Projekt" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Výchozí natoÄení" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Výchozí NatoÄení" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10339,14 +9844,14 @@ msgstr "Výchozí měřítko" msgid "Reset selection" msgstr "Resetovat výbÄ›r" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Obnovit na výchozí" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Obnovit na barvu filamentu" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Obnovit na výchozí" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Restart aplikace" @@ -10368,13 +9873,6 @@ msgstr "Retrakce pÅ™i zmÄ›nÄ› vrstvy" msgid "Retraction" msgstr "Retrakce" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"Retrakce není spuÅ¡tÄ›na, pokud jsou rychloposuny pojezdu kratší než tato " -"délka." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "Vzdálenost retrakce" @@ -10387,6 +9885,13 @@ msgstr "Vzdálenost retrakce (pÅ™i zmÄ›nÄ› extruderu)" msgid "Retraction Speed" msgstr "Rychlost retrakce" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"Retrakce není spuÅ¡tÄ›na, pokud jsou rychloposuny pojezdu kratší než tato " +"délka." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10423,6 +9928,14 @@ msgstr "Zkontrolujte náhrady a případnÄ› je upravte." msgid "Right" msgstr "Zprava" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Hodnota pravého pÅ™ednastavení" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Pohled zprava" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10452,14 +9965,6 @@ msgstr "Pravé tlaÄítko myÅ¡i" msgid "Right mouse button:" msgstr "Pravé tlaÄítko myÅ¡i:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Hodnota pravého pÅ™ednastavení" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Pohled zprava" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10526,16 +10031,6 @@ msgstr "Spustit %s" msgid "Running post-processing scripts" msgstr "Vykonávají se postprodukÄní skripty" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "s" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "Od&eslat G-code" @@ -10544,6 +10039,60 @@ msgstr "Od&eslat G-code" msgid "S&end to print" msgstr "Od&eslat do tiskárny" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "VýbÄ›r SLA materiálových profilů" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "SLA Materiály" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "SLA PodpÄ›rné Body" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "Tiskárny technologie SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "Klávesové zkratky pro SLA gizma" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "SLA materiál" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "Typ SLA materiálu" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "SLA materiály" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "SLA tisk" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "Poznámky pro SLA materiál" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "Nastavení SLA tisku" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "Byly zjiÅ¡tÄ›ny SLA podpÄ›ry mimo tiskovou oblast." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10564,6 +10113,22 @@ msgstr "Uložit %s jako:" msgid "Save %s file as:" msgstr "Uložit %s soubor jako:" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Uložit G-code jako:" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "Uložit soubor OBJ (ménÄ› náchylný na chyby souÅ™adnic než STL) jako:" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "Uložit Projekt j&ako" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "Uložit SL1 / SL1S soubor jako:" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Uložit konfiguraÄní soubor" @@ -10594,14 +10159,6 @@ msgstr "Uložit stávající projekt jako" msgid "Save file as:" msgstr "Uložit soubor jako:" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Uložit G-code jako:" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "Uložit soubor OBJ (ménÄ› náchylný na chyby souÅ™adnic než STL) jako:" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10615,10 +10172,6 @@ msgstr "Uložit balík pÅ™ednastavení jako:" msgid "Save project" msgstr "Uložit projekt" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "Uložit Projekt j&ako" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Uložit projekt (3mf)" @@ -10627,10 +10180,6 @@ msgstr "Uložit projekt (3mf)" msgid "Save project as (3mf)" msgstr "Uložit projekt jako (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "Uložit SL1 / SL1S soubor jako:" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "Uložit podpÄ›rné body?" @@ -10662,6 +10211,10 @@ msgstr "Ukládání meshe do 3MF kontejneru selhalo." msgid "Scale" msgstr "Měřítko" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Vyplnit tiskový objem" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Měřítka" @@ -10676,10 +10229,6 @@ msgstr "" msgid "Scale to Fit" msgstr "Vyplnit tiskový objem" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Vyplnit tiskový objem" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "ZmÄ›nit velikost, aby se objekt veÅ¡el do zadaného tiskového prostoru." @@ -10768,13 +10317,39 @@ msgstr "Druhá barva" msgid "See Download page." msgstr "Viz stránka ke stažení." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Viz stránka s releasy." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Více." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Viz stránka s releasy." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Zobrazit panel Nastavení filamentu" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Zobrazit panel Podložka" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Zobrazit panel Nastavení tisku" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Zobrazit panel Nastavení tiskárny" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Vyberte ANO, pokud chcete odstranit vÅ¡echny uložené zmÄ›ny nástroje,\n" +"NE, pokud chcete, aby se vÅ¡echny zmÄ›ny nástroje pÅ™epnout na zmÄ›ny barev,\n" +"nebo ZRUÅ IT pro ponechání beze zmÄ›ny." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10812,26 +10387,10 @@ msgstr "Zvolte konfiguraci k naÄtení:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Vyberte souÅ™adnicový prostor, ve kterém bude provedena transformace." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Zobrazit panel Nastavení filamentu" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Zobrazit panel Podložka" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Zvolte pÅ™ednastavení k porovnání" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Zobrazit panel Nastavení tisku" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Zobrazit panel Nastavení tiskárny" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Vyberte tvar z galerie" @@ -10840,6 +10399,10 @@ msgstr "Vyberte tvar z galerie" msgid "Select showing settings" msgstr "Zvolte nastavení zobrazení" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Vyberte STL soubor k opravÄ›:" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "VýbÄ›r jazyka" @@ -10856,10 +10419,6 @@ msgstr "Vyberte tiskové profily, s nimiž je tento profil kompatibilní." msgid "Select the printers this profile is compatible with." msgstr "Vyberte tiskárny, s nimiž je tento profil kompatibilní." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Vyberte STL soubor k opravÄ›:" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "Vyberte velikost ikon na panelu nástrojů vzhledem k výchozí velikosti." @@ -10876,16 +10435,6 @@ msgstr "Vyberte, jaký typ podložky potÅ™ebujete" msgid "Select what kind of support do you need" msgstr "Vyberte typ podpÄ›r, které potÅ™ebujete" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Vyberte ANO, pokud chcete odstranit vÅ¡echny uložené zmÄ›ny nástroje,\n" -"NE, pokud chcete, aby se vÅ¡echny zmÄ›ny nástroje pÅ™epnout na zmÄ›ny barev,\n" -"nebo ZRUÅ IT pro ponechání beze zmÄ›ny." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "VýbÄ›r - PÅ™idání" @@ -10894,14 +10443,6 @@ msgstr "VýbÄ›r - PÅ™idání" msgid "Selection-Add All" msgstr "VýbÄ›r - OznaÄení vÅ¡eho" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "VýbÄ›r - PÅ™idání v seznamu" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "VýbÄ›r - PÅ™idání obdélníkovým výbÄ›rem" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "VýbÄ›r - PÅ™idání Instance" @@ -10910,6 +10451,14 @@ msgstr "VýbÄ›r - PÅ™idání Instance" msgid "Selection-Add Object" msgstr "VýbÄ›r - PÅ™idání Objektu" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "VýbÄ›r - PÅ™idání v seznamu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "VýbÄ›r - PÅ™idání obdélníkovým výbÄ›rem" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "VýbÄ›r - Odebrání" @@ -10918,14 +10467,6 @@ msgstr "VýbÄ›r - Odebrání" msgid "Selection-Remove All" msgstr "VýbÄ›r - ZruÅ¡ení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "VýbÄ›r - Odebrání v seznamu" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "VýbÄ›r - Odebrání obdélníkovým výbÄ›rem" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "VýbÄ›r - Odebrání Instance" @@ -10934,18 +10475,26 @@ msgstr "VýbÄ›r - Odebrání Instance" msgid "Selection-Remove Object" msgstr "VýbÄ›r - Odebrání Objektu" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "VýbÄ›r - Odebrání v seznamu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "VýbÄ›r - Odebrání obdélníkovým výbÄ›rem" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Vybrat vÅ¡echny objekty" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "Odeslat G-code" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "Odeslat G-Code do tiskového serveru" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "Odeslat G-code" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -10995,6 +10544,46 @@ msgstr "Název služby" msgid "Set" msgstr "Nastavit" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Zrcadlení" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "ZmÄ›na orientace" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Nastavení pozice" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Zvolen příznak Tisknout objekt" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Zvolen příznak Tisknout Instanci" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Nastavení tisknutelné skupiny modelů" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Nastavení měřítka" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Odebrán příznak Tisknout objekt" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Odebrán příznak Tisknout Instanci" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Nastavení netisknutelné skupiny modelů" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "ZmÄ›nit na samostatný objekt" @@ -11043,9 +10632,9 @@ msgstr "Nastavit levý ukazatel jako aktivní" msgid "Set lower thumb as active" msgstr "Nastavit spodní ukazatel jako aktivní" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Zrcadlení" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Zadat poÄet instancí" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11057,35 +10646,11 @@ msgstr "" "VÄ›dÄ›li jste, že můžete kliknout pravým tlaÄítkem myÅ¡i na model a nastavit " "pÅ™esný poÄet instancí, místo abyste jej museli nÄ›kolikrát kopírovat?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Zadat poÄet instancí" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Nastavení poÄtu kopií na %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "ZmÄ›na orientace" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Nastavení pozice" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Zvolen příznak Tisknout objekt" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Nastavení tisknutelné skupiny modelů" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Zvolen příznak Tisknout Instanci" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Nastavit pravý ukazatel jako aktivní" @@ -11094,10 +10659,6 @@ msgstr "Nastavit pravý ukazatel jako aktivní" msgid "Set ruler mode" msgstr "Nastavení režimu pravítka" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Nastavení měřítka" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Nastavení vybraných položek jako tisknuté/netisknuté" @@ -11257,18 +10818,6 @@ msgstr "" "maximální hloubku, které může extruder dosáhnout pÅ™ed kolizí s jinými, již " "vytiÅ¡tÄ›nými, objekty." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Odebrán příznak Tisknout objekt" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Nastavení netisknutelné skupiny modelů" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Odebrán příznak Tisknout Instanci" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Nastavit horní ukazatel jako aktivní" @@ -11292,6 +10841,10 @@ msgstr "Nastavení" msgid "Settings for height range" msgstr "Nastavení pro výškový rozsah" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Nastavení v nemodálním oknÄ›" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11304,10 +10857,6 @@ msgstr "" "jedné obrazovce můžete mít otevÅ™ená nastavení a na druhé náhled G-codu. " "PÅ™ejdÄ›te do Nastavení a vyberte možnost Nastavení v nemodálním oknÄ›." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Nastavení v nemodálním oknÄ›" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "Mám upravit tato nastavení pro podpÄ›ry?" @@ -11388,6 +10937,10 @@ msgstr "Otevřít adresář s &konfiguracemi" msgid "Show &Labels" msgstr "Zobrazit &Popisky" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Ukázat Tip Dne" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "Zobrazit okno o Slic3ru" @@ -11476,14 +11029,14 @@ msgstr "Zobrazit 3D náhled vrstev" msgid "Show the filament settings" msgstr "Zobrazit nastavení filamentu" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "Zobrazit kompletní seznam možností konfigurace tisku / G-codu." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "Zobrazit kompletní seznam možností konfigurace SLA tisku." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "Zobrazit kompletní seznam možností konfigurace tisku / G-codu." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Zobrazit seznam klávesových zkratek" @@ -11504,10 +11057,6 @@ msgstr "Zobrazit nastavení tiskárny" msgid "Show this help." msgstr "Zobrazí tuto nápovÄ›du." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Ukázat Tip Dne" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Zobrazit uživatelský adresář konfigurace (datadir)" @@ -11546,14 +11095,14 @@ msgstr "Zobrazit/skrýt popisky objektů/instancí" msgid "Simple" msgstr "Jednoduchý" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Jednoduchý režim" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "Jednoduchý režim" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Jednoduchý režim" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "" @@ -11585,10 +11134,6 @@ msgstr "" msgid "Simplify model" msgstr "ZjednoduÅ¡it model" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Nastavení jednoho extruderu MM" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "MultiMaterial tisk s jedním extrudérem" @@ -11605,6 +11150,10 @@ msgstr "" "Chcete nastavit průmÄ›ry vÅ¡ech extruderových trysek podle průmÄ›ru prvního " "extruderu?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Nastavení jednoho extruderu MM" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Parametry jednoho multi materiálového extruderu" @@ -11635,6 +11184,10 @@ msgstr "RozmÄ›r obdélníkové tiskové podložky v ose X a Y." msgid "Skirt" msgstr "Obrys" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "PoÄet obrysových smyÄek" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11645,65 +11198,11 @@ msgstr "Obrys a límec" msgid "Skirt height" msgstr "Výška obrysu" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "PoÄet obrysových smyÄek" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Obrys/Límec" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "Klávesové zkratky pro SLA gizma" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "SLA materiál" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "VýbÄ›r SLA materiálových profilů" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "Typ SLA materiálu" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "SLA Materiály" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "SLA materiály" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "SLA tisk" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "Poznámky pro SLA materiál" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "Nastavení SLA tisku" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "SLA PodpÄ›rné Body" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "Byly zjiÅ¡tÄ›ny SLA podpÄ›ry mimo tiskovou oblast." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "Tiskárny technologie SLA" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Deska" @@ -11798,6 +11297,14 @@ msgstr "Slicovaný objekt \"%1%\" vypadá jako logo nebo nápis" msgid "Slicing" msgstr "Slicování" +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "Slicování dokonÄeno!" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Režim slicování" + #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 msgid "Slicing complete" @@ -11807,10 +11314,6 @@ msgstr "Slicování dokonÄeno" msgid "Slicing done" msgstr "Slicování dokonÄeno" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "Slicování dokonÄeno!" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "Slicování dokonÄeno." @@ -11822,10 +11325,6 @@ msgstr "" "Slicování muselo být zastaveno kvůli vnitÅ™ní chybÄ›: Nekonzistentní index " "Å™ezů." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Režim slicování" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "Slicuji model" @@ -11884,10 +11383,6 @@ msgstr "PÅ™iléhavý" msgid "Software &Releases" msgstr "Vydané ve&rze" -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "plná výplň" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -11902,6 +11397,10 @@ msgstr "Plná výplň každou" msgid "Solid infill extruder" msgstr "Extruder pro plnou výplň" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Prahová oblast s plnou výplní" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -11914,10 +11413,6 @@ msgstr "" "plnou výplní? Nastavit Prahovou oblast s plnou výplní. (Pouze v " "režimu Expert.)" -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Prahová oblast s plnou výplní" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Plných vrstev" @@ -11930,17 +11425,6 @@ msgstr "Rozpustný materiál" msgid "Soluble material is most likely used for a soluble support." msgstr "Rozpustný materiál je pÅ™evážnÄ› používán pro tisk rozpustných podpÄ›r." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"NÄ›která pole jsou příliÅ¡ dlouhá a nevejdou se. Kliknutím pravým tlaÄítkem " -"myÅ¡i zobrazíte celý text." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "NÄ›které filamenty byly odinstalovány." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -11953,6 +11437,25 @@ msgstr "" "kompatibilního výstupu. Příkazy typu \"No extrusion\" zabraňují PrusaSliceru " "zcela exportovat jakoukoliv hodnotu extruze." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "NÄ›které tiskárny byly odinstalovány." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "NÄ›které SLA materiály byly odinstalovány." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"NÄ›která pole jsou příliÅ¡ dlouhá a nevejdou se. Kliknutím pravým tlaÄítkem " +"myÅ¡i zobrazíte celý text." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "NÄ›které filamenty byly odinstalovány." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "NÄ›které objekty nejsou bÄ›hem úprav viditelné." @@ -12001,14 +11504,6 @@ msgstr "" "NÄ›které tiskárny nebo nastavení tiskárny mohou mít potíže s tiskem s " "promÄ›nnou výškou vrstvy. Ve výchozím nastavení je zapnuto." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "NÄ›které tiskárny byly odinstalovány." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "NÄ›které SLA materiály byly odinstalovány." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "Vzdálenost" @@ -12170,14 +11665,14 @@ msgstr "Rychlost:" msgid "Sphere" msgstr "Koule" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Spirálová váza" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Spirálová Váza" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Spirálová váza" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12199,22 +11694,22 @@ msgstr "RozdÄ›lit vybraný objekt na jednotlivé objekty" msgid "Split the selected object into individual parts" msgstr "RozdÄ›lit vybraný objekt na jednotlivé Äásti" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "RozdÄ›lit na objekty" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "RozdÄ›lit na Objekty" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "RozdÄ›lit na Äásti" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "RozdÄ›lit na Části" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "RozdÄ›lit na objekty" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "RozdÄ›lit na Äásti" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12240,6 +11735,12 @@ msgstr "Běžné" msgid "Stars" msgstr "HvÄ›zdy" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "ZaÄátek G-code" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "VytvoÅ™it nový projekt" @@ -12248,12 +11749,6 @@ msgstr "VytvoÅ™it nový projekt" msgid "Start at height" msgstr "ZaÄít ve výšce" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "ZaÄátek G-code" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Zahájit nový slicovací proces" @@ -12308,10 +11803,6 @@ msgstr "Stav:" msgid "Stealth" msgstr "Tichý" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "tichý režim" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Tichý režim" @@ -12351,22 +11842,6 @@ msgstr "" "Odpojení probÄ›hlo úspěšné. Zařízení %s(%s) lze nyní bezpeÄnÄ› odebrat z " "poÄítaÄe." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "podpÄ›ry" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "PrůmÄ›r podpÄ›rné základny" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Výška podpÄ›rné základny" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "BezpeÄná vzdálenost podpÄ›rné základny" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Blokátor podpÄ›r" @@ -12383,14 +11858,22 @@ msgstr "Vynucení podpÄ›r" msgid "Support Generator" msgstr "Generátor PodpÄ›r" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "PrůmÄ›r podpÄ›rné základny" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Výška podpÄ›rné základny" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "BezpeÄná vzdálenost podpÄ›rné základny" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "Hrot podpÄ›ry" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "kontaktní vrstva podpÄ›r" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12476,10 +11959,6 @@ msgstr "Úprava podpÄ›rných bodů" msgid "Supports" msgstr "PodpÄ›ry" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "podpÄ›ry a podložka" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "Podpora zbývajících tiskových Äasů" @@ -12512,10 +11991,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "PotlaÄit otevírání hypertextových odkazů v prohlížeÄi" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "ZamÄ›nit osy Y/Z" @@ -12537,10 +12012,6 @@ msgstr "ZamÄ›nit za příkaz na ZmÄ›nu barvy (%1%) pro:" msgid "Switch to 3D" msgstr "PÅ™epnout do 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "PÅ™epnout do režimu editace" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "PÅ™epnout do náhledu" @@ -12549,6 +12020,10 @@ msgstr "PÅ™epnout do náhledu" msgid "Switch to Settings" msgstr "PÅ™epnout do Nastavení" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "PÅ™epnout do režimu editace" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12589,10 +12064,6 @@ msgstr "" "\n" "Opravdu chcete pokraÄovat?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "symbolické jméno profilu" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12609,14 +12080,14 @@ msgstr "Synchronizovat s vrstvami objektu" msgid "System &Info" msgstr "&Informace o systému" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Systémové informace byly úspěšnÄ› odeslány. DÄ›kujeme." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Systémové informace" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Systémové informace byly úspěšnÄ› odeslány. DÄ›kujeme." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12700,6 +12171,143 @@ msgstr "" "Zařízení %s nebylo nalezeno. Pokud je zařízení pÅ™ipojeno, stisknÄ›te tlaÄítko " "Reset vedle USB konektoru ..." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"SLA archiv neobsahuje žádné pÅ™ednastavení. PÅ™ed importem tohoto SLA archivu " +"nejprve aktivujte nÄ›které pÅ™ednastavení SLA tiskárny." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Režim Spiral Vase vyžaduje:\n" +"- jeden perimetr\n" +"- žádné horní plné vrstvy\n" +"- 0% hustota výplnÄ›\n" +"- bez podpÄ›rného materiálu\n" +"- aktivní volbu „Zajistit tloušťku svislých stÄ›n“\n" +"- neaktivní volbu „Detekce tenkých stÄ›n“" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "" +"Možnost \"Spirálová váza\" lze použít pouze pÅ™i tisku jedním materiálem." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"ÄŒistíví Věž v souÄasné dobÄ› nepodporuje volumetric E (use_volumetric_e = 0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"ÄŒistící věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\n" +"pokud jsou vytiÅ¡tÄ›ny s aktuálním extrudérem bez spuÅ¡tÄ›ní výmÄ›ny nástroje.\n" +"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpÄ›r je " +"tÅ™eba nastavit na 0)." + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"ÄŒistící věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\n" +"pokud jsou vytiÅ¡tÄ›ny s aktuálním extrudérem bez spuÅ¡tÄ›ní výmÄ›ny nástroje.\n" +"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpÄ›r je " +"tÅ™eba nastavit na 0)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"ÄŒistící věž není momentálnÄ› podporována pro multimateriálové sekvenÄní tisky." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"ÄŒistící věž je v souÄasné dobÄ› možná pouze pro G-cody urÄené pro Marlin, " +"RepRap/Sprinter, RepRapFirmware a Repetier." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"ÄŒistící věž je v souÄasné dobÄ› možná pouze v případÄ› relativního adresování " +"exruderu (use_relative_e_distances=1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"ÄŒistící věž pro více objektů je možná pouze v případÄ›, že objekty mají " +"stejný poÄet raft vrstev" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"ÄŒistící věž pro více objektů je možná pouze v případÄ›, že objekty mají " +"shodný parametr support_material_contact_distance" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"ÄŒistící věž je pÅ™i více objektech možná pouze v případÄ›, že objekty jsou " +"slicovány stejnÄ›." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"ÄŒistící věž je pÅ™i více objektech možná pouze v případÄ›, že objekty mají " +"vÅ¡echny vrstvy stejné výšky" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Možnost OÄistit není k dispozici pÅ™i použití režimu retrakcí z firmwaru.\n" +"\n" +"Mám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"ÄŒistící věž je podporována pouze v případÄ›, že vÅ¡echny objekty mají stejnou " +"variabilní výšku vrstvy" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -12872,18 +12480,18 @@ msgstr "" "První vrstva bude v rovinÄ› XY zmenÅ¡ena nakonfigurovanou hodnotou, která " "kompenzuje rozplácnutí první vrstvy." -#: src/slic3r/GUI/Plater.cpp:5717 -msgid "The following characters are not allowed by a FAT file system:" -msgstr "Následující znaky nejsou v souborovém systému FAT povoleny:" - -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "následující znaky nejsou povolené:" - #: src/slic3r/GUI/ConfigWizard.cpp:2459 msgid "The following FFF printer models have no filament selected:" msgstr "Následující modely FFF tiskáren nemají vybraný filament:" +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "Následující modely SLA tiskáren nemají vybrané žádné materiály:" + +#: src/slic3r/GUI/Plater.cpp:5717 +msgid "The following characters are not allowed by a FAT file system:" +msgstr "Následující znaky nejsou v souborovém systému FAT povoleny:" + #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -12949,14 +12557,6 @@ msgid "" msgstr "" "Následující klávesové zkratky jsou funkÄní pÅ™i patÅ™iÄném aktivním gizmu" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "Následující modely SLA tiskáren nemají vybrané žádné materiály:" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "následující přípona není povolená:" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "Byly nahrazeny následující hodnoty:" @@ -13290,6 +12890,14 @@ msgstr "" "Vybraný projekt již není k dispozici.\n" "Chcete ho odstranit ze seznamu posledních projektů?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"SekvenÄní tisk je zapnutý.\n" +"Pro objekty tisknuté sekvenÄním tiskem nelze použít žádný vlastní G-code." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13301,14 +12909,6 @@ msgstr "" "Není možné použít jakýkoliv vlastní G-kód pro objekty tisknuté sekvenÄnÄ›.\n" "BÄ›hem generování G-kódu nebude tento kód zpracován." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"SekvenÄní tisk je zapnutý.\n" -"Pro objekty tisknuté sekvenÄním tiskem nelze použít žádný vlastní G-code." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "Velikost objektu lze urÄit v palcích" @@ -13317,14 +12917,6 @@ msgstr "Velikost objektu lze urÄit v palcích" msgid "The size of the object is zero" msgstr "Velikost objektu je nulová" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"SLA archiv neobsahuje žádné pÅ™ednastavení. PÅ™ed importem tohoto SLA archivu " -"nejprve aktivujte nÄ›které pÅ™ednastavení SLA tiskárny." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13344,31 +12936,6 @@ msgstr "" msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Rychlost retrakce (toto nastavení platí pouze pro motor extruderu)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"Režim Spiral Vase vyžaduje:\n" -"- jeden perimetr\n" -"- žádné horní plné vrstvy\n" -"- 0% hustota výplnÄ›\n" -"- bez podpÄ›rného materiálu\n" -"- aktivní volbu „Zajistit tloušťku svislých stÄ›n“\n" -"- neaktivní volbu „Detekce tenkých stÄ›n“" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "" -"Možnost \"Spirálová váza\" lze použít pouze pÅ™i tisku jedním materiálem." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "Název je prázdný. Nelze uložit." @@ -13422,102 +12989,6 @@ msgstr "" "která urÄí shodnou vzdálenost mezi podpÄ›ry a horním/spodní povrchem objektu " "v ose Z." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"Možnost OÄistit není k dispozici pÅ™i použití režimu retrakcí z firmwaru.\n" -"\n" -"Mám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"ÄŒistíví Věž v souÄasné dobÄ› nepodporuje volumetric E (use_volumetric_e = 0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"ÄŒistící věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\n" -"pokud jsou vytiÅ¡tÄ›ny s aktuálním extrudérem bez spuÅ¡tÄ›ní výmÄ›ny nástroje.\n" -"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpÄ›r je " -"tÅ™eba nastavit na 0)." - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"ÄŒistící věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\n" -"pokud jsou vytiÅ¡tÄ›ny s aktuálním extrudérem bez spuÅ¡tÄ›ní výmÄ›ny nástroje.\n" -"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpÄ›r je " -"tÅ™eba nastavit na 0)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"ÄŒistící věž není momentálnÄ› podporována pro multimateriálové sekvenÄní tisky." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"ÄŒistící věž je v souÄasné dobÄ› možná pouze pro G-cody urÄené pro Marlin, " -"RepRap/Sprinter, RepRapFirmware a Repetier." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"ÄŒistící věž je v souÄasné dobÄ› možná pouze v případÄ› relativního adresování " -"exruderu (use_relative_e_distances=1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"ÄŒistící věž pro více objektů je možná pouze v případÄ›, že objekty mají " -"stejný poÄet raft vrstev" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"ÄŒistící věž pro více objektů je možná pouze v případÄ›, že objekty mají " -"shodný parametr support_material_contact_distance" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"ÄŒistící věž je pÅ™i více objektech možná pouze v případÄ›, že objekty jsou " -"slicovány stejnÄ›." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"ÄŒistící věž je pÅ™i více objektech možná pouze v případÄ›, že objekty mají " -"vÅ¡echny vrstvy stejné výšky" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13526,14 +12997,6 @@ msgstr "" "ÄŒistící věž je podporována pouze v případÄ›, že vÅ¡echny extrudery mají stejné " "průmÄ›ry trysek a používají filamenty stejných průmÄ›rů." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"ÄŒistící věž je podporována pouze v případÄ›, že vÅ¡echny objekty mají stejnou " -"variabilní výšku vrstvy" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "Varování týkající se slicovaných modelů:" @@ -13585,6 +13048,18 @@ msgstr "Silné pÅ™emostÄ›ní" msgid "This %s version: %s" msgstr "Tento %s verze: %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Tento G-code bude použit jako kód pro zmÄ›nu barvy" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Tento G-code bude použit jako kód pro pozastavení tisku" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Tento G-code bude použit jako vlastní kód" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -13846,18 +13321,6 @@ msgstr "" "Toto nastavení pÅ™emístí trysku pÅ™i retrakci, aby se minimalizovalo možné " "vytékání materiálu." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Tento G-code bude použit jako kód pro zmÄ›nu barvy" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Tento G-code bude použit jako kód pro pozastavení tisku" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Tento G-code bude použit jako vlastní kód" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "Toto je výchozí pÅ™ednastavení." @@ -14269,10 +13732,6 @@ msgstr "" "s flexibilními materiály, které potÅ™ebují více Äasu ke smrÅ¡tÄ›ní na původní " "rozmÄ›ry." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "do" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "" @@ -14308,10 +13767,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "PÅ™epnout zrcadlení podle osy %c" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "příliÅ¡ mnoho souborů" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "PříliÅ¡ mnoho pÅ™ekrývajících se otvorů." @@ -14365,6 +13820,10 @@ msgstr "" "NápovÄ›da pro tloušťku vrchní / spodní skoÅ™epiny: Není k dipozici z důvodu " "neplatné výšky vrstvy." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Pohled svrchu" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "Mezera nad podpÄ›rami v ose Z" @@ -14386,10 +13845,6 @@ msgstr "Horní Äást je otevÅ™ená." msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Tloušťka vrchní skoÅ™epiny je %1% mm pÅ™i výšce vrstvy %2% mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "vrchní plná výplň" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14400,10 +13855,6 @@ msgstr "Vrchní plné výplnÄ›" msgid "Top solid layers" msgstr "Vrchních plných vrstev" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Pohled svrchu" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Pouze nejvrchnÄ›jší vrstva" @@ -14483,6 +13934,32 @@ msgstr "Typ tiskárny." msgid "Type:" msgstr "Typ:" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "ODEMÄŒENà ZÃMEK" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že nÄ›která nastavení byla zmÄ›nÄ›na a nejsou " +"shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení. " +"KliknÄ›te pro reset vÅ¡ech nastavení aktuální skupiny nastavení na systémové " +"hodnoty." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že se hodnota zmÄ›nila a není shodná se " +"systémovou (nebo výchozí) hodnotou.\n" +"KliknÄ›te pro reset souÄasné hodnoty na systémovou hodnotu." + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "Nelze vyvrtat aktuální konfiguraci otvorů do modelu." @@ -14526,10 +14003,6 @@ msgstr "Nedefinovaná skupina" msgid "Undefined" msgstr "Nedefinováno" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "nedefinovaná chyba" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "PodteÄení" @@ -14553,6 +14026,10 @@ msgstr[3] "%1$d Akcí ZpÄ›t" msgid "Undo / Redo is processing" msgstr "ZpÄ›t / VpÅ™ed se zpracovává" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Historie operací ZpÄ›t" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "ZruÅ¡ení integrace do systému se nepodaÅ™ilo." @@ -14561,10 +14038,6 @@ msgstr "ZruÅ¡ení integrace do systému se nepodaÅ™ilo." msgid "Undo desktop integration was successful." msgstr "ZruÅ¡ení integrace do systému probÄ›hlo úspěšnÄ›." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Historie operací ZpÄ›t" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14575,10 +14048,6 @@ msgstr "" "VÄ›dÄ›li jste, že můžete kliknutím pravým tlaÄítkem myÅ¡i na Å¡ipky ZpÄ›t/" "VpÅ™ed vrátit nÄ›kolik akcí najednou?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "neoÄekávaná dekomprimovaná velikost" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14595,10 +14064,6 @@ msgstr "DoÅ¡lo k neznámé chybÄ›" msgid "Unknown error occured during exporting G-code." msgstr "BÄ›hem exportu G-codu doÅ¡lo k neznámé chybÄ›." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "vyjmuto" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "Rychlost vysunutí" @@ -14607,32 +14072,6 @@ msgstr "Rychlost vysunutí" msgid "Unloading speed at the start" msgstr "PoÄáteÄní rychlost vysouvání filamentu" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "ODEMÄŒENà ZÃMEK" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že nÄ›která nastavení byla zmÄ›nÄ›na a nejsou " -"shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení. " -"KliknÄ›te pro reset vÅ¡ech nastavení aktuální skupiny nastavení na systémové " -"hodnoty." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že se hodnota zmÄ›nila a není shodná se " -"systémovou (nebo výchozí) hodnotou.\n" -"KliknÄ›te pro reset souÄasné hodnoty na systémovou hodnotu." - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Neuložené zmÄ›ny" @@ -14641,26 +14080,6 @@ msgstr "Neuložené zmÄ›ny" msgid "Unselect gizmo or clear selection" msgstr "ZruÅ¡it gizmo nebo zruÅ¡it výbÄ›r" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "nepodporovaná velikost centrálního adresáře" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "nepodporované Å¡ifrování" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "nepodporovaná funkce" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "nepodporovaná metoda" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "nepodporovaný multidisk archiv" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "Nepodporovaná verze OpenGL" @@ -14674,10 +14093,6 @@ msgstr "Nepodporovaný výbÄ›r" msgid "Untitled" msgstr "Bez názvu" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "až do" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "Je dostupná aktualizace" @@ -14747,6 +14162,10 @@ msgstr "" "Pro modely letadel 3DLabPrint použijte \"Paritní vyplňování\". Použijte " "\"Uzavírání dÄ›r\" pro uzavÅ™ení vÅ¡ech otvorů v modelu." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Pro 3D scénu použít rozliÅ¡ení Retina" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Použít jiný extruder" @@ -14799,10 +14218,6 @@ msgstr "Perspektivní zobrazení scény" msgid "Use relative E distances" msgstr "Použít relativní E vzdálenosti" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Pro 3D scénu použít rozliÅ¡ení Retina" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "V PrusaSliceru používat systémové nabídky" @@ -14825,15 +14240,6 @@ msgstr "Toto nastavení použijte pro horizontální otoÄení vzoru." msgid "Use volumetric E" msgstr "Použít volumetrickou hodnotu E" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "použitý" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Použito filamentu" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Použito Filamentu (g)" @@ -14862,6 +14268,11 @@ msgstr "Použitý materiál (ml)" msgid "Used Material (unit)" msgstr "Použito materiálu (jednotka)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Použito filamentu" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Uživatel" @@ -14872,10 +14283,6 @@ msgstr "Uživatel" msgid "User presets" msgstr "Uživatelská pÅ™ednastavení" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "validace selhala" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "Hodnota je shodná se systémovou hodnotou" @@ -14896,6 +14303,11 @@ msgstr "Hodnoty v tomto sloupci jsou pro Normální režim" msgid "Values in this column are for Stealth mode" msgstr "Hodnoty v tomto sloupci jsou pro Tichý režim" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Variabilní výška vrstvy" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -14908,11 +14320,6 @@ msgstr "" "a vyhlazovat pÅ™echody mezi nimi? VyzkouÅ¡ejte nástroj PromÄ›nná výška " "vrstvy. (Není k dispozici pro SLA tiskárny.)" -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Variabilní výška vrstvy" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Variabilní výška vrstev - Adaptivní" @@ -14929,14 +14336,6 @@ msgstr "Variabilní výška vrstev - Reset" msgid "Variable layer height - Smooth all" msgstr "Variabilní výška vrstev - Vyhladit vÅ¡e" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "varianty" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "výrobce" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Výrobce:" @@ -14950,18 +14349,14 @@ msgstr "Komentáře do G-code" msgid "Version" msgstr "Verze" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "verze" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Vertikální posuvník" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "Svislé stÄ›ny" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Vertikální posuvník" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15035,6 +14430,38 @@ msgstr "Objemový průtok (mm³/s)" msgid "Volumetric speed" msgstr "Objemová rychlost" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "VAROVÃNÃ:" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "BÃLà TEÄŒKA" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "" +"Ikona BÃLÉ TEÄŒKY indikuje nesystémové (nebo jiné než výchozí) pÅ™ednastavení." + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"Ikona BÃLÉ TEÄŒKY indikuje, že nastavení jsou shodná s naposledy uloženým " +"pÅ™ednastavením pro danou skupinu nastavení." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"Ikona BÃLÉ TEÄŒKY indikuje, že je hodnota shodná s naposledy uloženým " +"pÅ™ednastavením." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Tloušťka stÄ›ny" @@ -15047,13 +14474,6 @@ msgstr "Tloušťka stÄ›ny" msgid "Warning" msgstr "Varování" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "VAROVÃNÃ:" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15107,10 +14527,6 @@ msgstr "" "Je-li zaÅ¡krtnuto, pÅ™i každém pÅ™etažení souboru s projektem do aplikace se " "zobrazí dialogové okno s výzvou k výbÄ›ru akce, kterou se má soubor naÄíst." -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "pÅ™i tisku" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15200,31 +14616,6 @@ msgstr "" "Když je retrakce kompenzována po rychloposunu, extruder vytlaÄuje toto další " "množství filamentu. Toto nastavení je zřídkakdy potÅ™eba." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "BÃLà TEÄŒKA" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "" -"Ikona BÃLÉ TEÄŒKY indikuje nesystémové (nebo jiné než výchozí) pÅ™ednastavení." - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"Ikona BÃLÉ TEÄŒKY indikuje, že nastavení jsou shodná s naposledy uloženým " -"pÅ™ednastavením pro danou skupinu nastavení." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"Ikona BÃLÉ TEÄŒKY indikuje, že je hodnota shodná s naposledy uloženým " -"pÅ™ednastavením." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "Celé slovo" @@ -15268,6 +14659,11 @@ msgstr "" msgid "Wipe" msgstr "ÄŒiÅ¡tÄ›ní" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "ÄŒistící Věž" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "VyÄistit do tohoto objektu" @@ -15286,15 +14682,6 @@ msgstr "Možnosti ÄiÅ¡tÄ›ní" msgid "Wipe tower" msgstr "ÄŒistící věž" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "Äistící věž" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "ÄŒistící Věž" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "ÄŒistící věž - Úprava objemu ÄiÅ¡tÄ›ní" @@ -15319,10 +14706,6 @@ msgstr "Úhel natoÄení Äistící věže s ohledem na osu X." msgid "Wipe while retracting" msgstr "OÄistit pÅ™i retrakci" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "s objemovou rychlostí" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15372,10 +14755,6 @@ msgstr "" "\n" "Aktualizované balíÄky nastavení:" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "zpÄ›tné volání se nezdaÅ™ilo" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "Vypsat informace o modelu do konsole." @@ -15388,6 +14767,10 @@ msgstr "Chybné heslo" msgid "X coordinate of the left front corner of a wipe tower" msgstr "X souÅ™adnice levého pÅ™edního rohu Äistící věže" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "Kompenzace XY rozmÄ›rů" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "XY vzdálenost mezi objektem a podpÄ›rami" @@ -15400,10 +14783,6 @@ msgstr "" "XY vzdálenost mezi objektem a podpÄ›rami. Pokud je vyjádÅ™eno procenty " "(například 50%), bude vypoÄítána z šířky perimetru." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "Kompenzace XY rozmÄ›rů" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y souÅ™adnice levého pÅ™edního rohu Äistící věže" @@ -15462,6 +14841,10 @@ msgstr "" "Zde můžete zadat své osobní poznámky. Tento text bude pÅ™idán do komentáře " "záhlaví G code." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "Zde můžete vkládat své poznámky týkající se tiskového materiálu SLA." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "Zde můžete vložit poznámky týkající se filamentu." @@ -15470,10 +14853,6 @@ msgstr "Zde můžete vložit poznámky týkající se filamentu." msgid "You can put your notes regarding the printer here." msgstr "Zde můžete uvést poznámky týkající se tiskárny." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "Zde můžete vkládat své poznámky týkající se tiskového materiálu SLA." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -15700,6 +15079,623 @@ msgstr "" "Pohled na oznaÄený objekt, nebo na vÅ¡echny objekty ve scénÄ›,\n" "pokud není vybraný žádný objekt" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "nad" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "aktivní" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "alokace selhala" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "vteÅ™in pÅ™ibližnÄ›" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "archiv je moc velký" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "založený na Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "buffer je příliÅ¡ malý" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "maximem pro profil tisku" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "komprese se nezdaÅ™ila" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "pokraÄovat" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "dekomprese selhala nebo je archiv poÅ¡kozen" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "výchozí" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "výchozí profil pro SLA materiál" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "výchozí SLA tiskový profil" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "výchozí barva" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "výchozí profil filamentu" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "výchozí tiskový profil" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "výchozí hodnota" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "smazat" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "liší se od původního souboru" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "neobsahuje platný G-code." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "s výjimkou prvních %1% vrstev." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "vyjma první vrstvy." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "vnÄ›jší perimetry" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "selhalo nalezení koÅ™enového adresáře" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "filament" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "filamenty" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "zavÅ™ení souboru selhalo" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "vytvoÅ™ení souboru selhalo" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "soubor nenalezen" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "otevÅ™ení souboru selhalo" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "Ätení souboru se nezdaÅ™ilo" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "hledání souboru selhalo" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "soubor stat selhal" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "soubor je příliÅ¡ velký" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "zápis souboru se nezdaÅ™il" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "průtok je maximalizován" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"na levé stranÄ›: indikuje nesystémové (jiné než výchozí) pÅ™ednastavení,\n" +"na pravé stranÄ›: indikuje, že nastavení nebylo zmÄ›nÄ›no." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "z" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "celé jméno profilu" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "generovaná varování" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "in" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"indikuje, že nÄ›která nastavení byla zmÄ›nÄ›na a nejsou shodná se systémovými " +"(výchozími) hodnotami pro danou skupinu nastavení.\n" +"KliknÄ›te na ikonu ODEMKNUTÉHO ZÃMKU pro reset vÅ¡ech nastavení aktuální " +"skupiny nastavení na systémové (nebo výchozí) hodnoty." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"indikuje, že nastavení jsou stejná jako systémové (výchozí) hodnoty pro " +"aktuální skupinu nastavení" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavení, které není shodné s naposledy " +"uloženým pÅ™ednastavením pro aktuální skupinu nastavení.\n" +"KliknÄ›te na ikonu Å IPKY ZPÄšT pro reset vÅ¡ech nastavení pro aktuální skupinu " +"nastavení na naposledy uložené pÅ™ednastavení." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "výplň" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "interní chyba" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "neplatný název souboru" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "neplatná hlaviÄka nebo je archiv poÅ¡kozen" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "neplatný parametr" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "je založen na Slic3r od Alessandra Ranellucciho a RepRap komunity." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "je licencován pod" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "vrstva(y)" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "zavádÄ›n" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "max PrusaSlicer verze" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "min PrusaSlicer verze" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (nula pro vypnutí)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm nebo %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm nebo % (nula pro deaktivaci)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s nebo %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "model" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "upraveno" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "cena/láhev" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "cena/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "normální režim" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "není ZIP archiv" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "tryska" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "objekt" +msgstr[1] "objektů" +msgstr[2] "objektů" +msgstr[3] "objektů" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "objekty" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "souÄasného Objektu" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "nebo stisknÄ›te klávesu „+“" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "název parametru" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "perimetry" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "tisk" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "tiskárna" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "model tiskárny" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "odebrat" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "vyžaduje max. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "vyžaduje min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "vyžaduje min. %s a max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "s" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "plná výplň" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "tichý režim" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "podpÄ›ry" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "kontaktní vrstva podpÄ›r" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "podpÄ›ry a podložka" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "symbolické jméno profilu" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "následující znaky nejsou povolené:" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "následující přípona není povolená:" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "do" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "příliÅ¡ mnoho souborů" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "vrchní plná výplň" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "nedefinovaná chyba" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "neoÄekávaná dekomprimovaná velikost" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "vyjmuto" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "nepodporovaná velikost centrálního adresáře" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "nepodporované Å¡ifrování" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "nepodporovaná funkce" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "nepodporovaná metoda" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "nepodporovaný multidisk archiv" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "až do" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "použitý" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "validace selhala" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "varianty" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "výrobce" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "verze" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "pÅ™i tisku" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "Äistící věž" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "s objemovou rychlostí" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "zpÄ›tné volání se nezdaÅ™ilo" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -16857,6 +16853,10 @@ msgstr "AddToPropertyCollection zavolána bez platného zapisovaÄe" msgid "Adding book %s" msgstr "PÅ™idávám knihu %s" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "PokroÄilé" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Za odstavcem:" @@ -17123,6 +17123,10 @@ msgstr "Okraj" msgid "Borders" msgstr "Okraje" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Dolů" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Dolní okraj (mm):" @@ -17923,6 +17927,10 @@ msgstr "Zkopírováno do schránky: \"%s\"" msgid "Copies:" msgstr "Kopie:" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Kopírovat" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Kopírovat výbÄ›r" diff --git a/resources/localization/de/PrusaSlicer.mo b/resources/localization/de/PrusaSlicer.mo index 796dbe27bf..1e2275b755 100644 Binary files a/resources/localization/de/PrusaSlicer.mo and b/resources/localization/de/PrusaSlicer.mo differ diff --git a/resources/localization/de/PrusaSlicer_de.po b/resources/localization/de/PrusaSlicer_de.po index 5c87133ee4..79a01fac88 100644 --- a/resources/localization/de/PrusaSlicer_de.po +++ b/resources/localization/de/PrusaSlicer_de.po @@ -5,7 +5,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -17,6 +17,22 @@ msgstr "" "ist.\n" "Um \"%1%\" zu aktivieren, schalten Sie bitte \"%2%\" aus." +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"In before_layer_gcode wurde \"G92 E0\" gefunden, was mit der absoluten " +"Extruder-Adressierung nicht kompatibel ist." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"Im layer_gcode wurde \"G92 E0\" gefunden, was mit der absoluten Extruder-" +"Adressierung nicht kompatibel ist." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -109,6 +125,12 @@ msgid_plural "%1% (%2$d shells)" msgstr[0] "%1% (%2$d Wand)" msgstr[1] "%1% (%2$d Wände)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% Voreinstellung" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -118,12 +140,6 @@ msgstr "" "%1%, die mit * markiert sind, sind nicht mit einigen " "installierten Druckern kompatibel." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% Voreinstellung" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -185,6 +201,16 @@ msgstr "%s - BREAKING CHANGE" msgid "%s - Drop project file" msgstr "%s - Drop Projektdatei" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "%s Familie" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "%s Anzeigemodus" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -200,11 +226,6 @@ msgstr "%s akzeptiert keine Prozentangaben" msgid "%s error" msgstr "%s Fehler" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "%s Familie" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -215,6 +236,18 @@ msgstr "%s hat eine Warnmeldung" msgid "%s has encountered an error" msgstr "%s ist auf einen Fehler gestoßen" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"%s ist auf einen Fehler gestoßen. Es wurde wahrscheinlich dadurch " +"verursacht, dass der Speicher knapp wird. Wenn Sie sicher sind, dass Sie " +"genügend RAM auf Ihrem System haben, kann dies auch ein Programmfehler sein, " +"und wir würden uns freuen, wenn Sie ihn melden würden." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -231,18 +264,6 @@ msgstr "" "\n" "Die Anwendung wird nun beendet." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"%s ist auf einen Fehler gestoßen. Es wurde wahrscheinlich dadurch " -"verursacht, dass der Speicher knapp wird. Wenn Sie sicher sind, dass Sie " -"genügend RAM auf Ihrem System haben, kann dies auch ein Programmfehler sein, " -"und wir würden uns freuen, wenn Sie ihn melden würden." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -292,11 +313,6 @@ msgstr "" "einzurichten sowie auszuwählen, ob Einstellungen automatisch aktualisiert " "werden dürfen." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "%s Anzeigemodus" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -451,22 +467,14 @@ msgstr "&Fenster" msgid "(All)" msgstr "(Alles)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(einschließlich Spule)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(Minimum)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "(Re)Slice jet&zt" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Re)Slice" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "(Re)Slice jet&zt" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(Einige Zeilen nicht gezeigt)" @@ -475,6 +483,14 @@ msgstr "(Einige Zeilen nicht gezeigt)" msgid "(Unknown)" msgstr "(Unbekannt)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(einschließlich Spule)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(Minimum)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") nicht gefunden." @@ -535,10 +551,6 @@ msgstr "3 (schwer)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "3D Editiermodus" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "3D Bienenwabe" @@ -547,6 +559,10 @@ msgstr "3D Bienenwabe" msgid "3D Mouse disconnected." msgstr "3D-Maus nicht angeschlossen." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "3D Editiermodus" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "3Dconnexion Einstellungen" @@ -587,10 +603,6 @@ msgstr "" "Es wird eine Kopie der aktuellen Systemvoreinstellung erstellt, die von der " "Systemvoreinstellung gelöst wird." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Es wurde ein neues Filament installiert, das nun aktiviert wird." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "A new Printer was installed and it will be activated." @@ -599,6 +611,10 @@ msgstr "A new Printer was installed and it will be activated." msgid "A new SLA material was installed and it will be activated." msgstr "Ein neues SLA-Material wurde installiert und wird nun aktiviert." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Es wurde ein neues Filament installiert, das nun aktiviert wird." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -635,6 +651,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "Es wurde ein Werkzeugweg außerhalb des Druckbereichs erkannt." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "API Key / Kennwort" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "API Key" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "Abbruch" @@ -644,10 +668,6 @@ msgstr "Abbruch" msgid "About %s" msgstr "Über %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "über" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Über Z" @@ -680,10 +700,6 @@ msgstr "Aktivieren" msgid "Active" msgstr "Aktiv" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "aktiv" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adaptiv" @@ -715,6 +731,60 @@ msgstr "" "\"%1%\" als nächste Voreinstellung für den physischen Drucker \"%2%\" " "hinzufügen" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "Generische Subobjekt hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "Höhenbereich hinzufügen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "Kopie des gewählten Objektes hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "Schichten hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "Höhenbreich Einstellungsbündel hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "Objekt Einstellungsbündel hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "Subobjekt Einstellungsbündel hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "Schichten Einstellungen hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "Objekt Einstellungen hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "Subobjekt Einstellungen hinzufügen" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "Form hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "Form aus Galerie hinzufügen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "Formen aus Galerie hinzufügen" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Fügt eine Grundschicht unter das gestützte Modell" @@ -785,33 +855,15 @@ msgstr "Extruderwechsel hinzufügen - Linksklick" msgid "Add extruder to sequence" msgstr "Extruder zur Sequenz hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "Generische Subobjekt hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "Höhenbereich hinzufügen" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "Kopie hinzufügen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "Kopie des gewählten Objektes hinzufügen" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "Schichtbereich hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "Schichten hinzufügen" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "Modifizierer hinzufügen" @@ -871,42 +923,6 @@ msgstr "Ausgewählte Form(en) zum Bett hinzufügen" msgid "Add settings" msgstr "Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "Höhenbreich Einstellungsbündel hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "Objekt Einstellungsbündel hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "Subobjekt Einstellungsbündel hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "Schichten Einstellungen hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "Objekt Einstellungen hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "Subobjekt Einstellungen hinzufügen" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "Form hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "Form aus Galerie hinzufügen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "Formen aus Galerie hinzufügen" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -962,14 +978,14 @@ msgstr "Voreinstellungen hinzufügen/entfernen" msgid "Add/Remove printers" msgstr "Drucker hinzufügen/entfernen" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Weitere Informationen:" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Weitere Informationen:" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -982,26 +998,19 @@ msgstr "" msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" -msgstr "Erweiterte Einstellungen" - -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "Fortgeschrittener Modus" +msgstr "Erweitert" #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "Erweiterter Anzeigemodus" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "Fortgeschrittener Modus" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "Fortgeschritten: Ausgabeprotokoll" @@ -1026,14 +1035,14 @@ msgstr "" msgid "After layer change G-code" msgstr "G-Code am Schichtende" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Das Modell auf den angegebenen Punkt ausrichten." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Ausrichten von XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Das Modell auf den angegebenen Punkt ausrichten." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Ausgerichtet" @@ -1097,10 +1106,6 @@ msgstr "Alle Benutzervoreinstellungen werden gelöscht." msgid "All walls" msgstr "Alle Wände" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "Allokation fehlgeschlagen" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "Nur eine einzige PrusaSlicer-Instanz zulassen" @@ -1195,6 +1200,10 @@ msgstr "" "Ein Objekt verfügt über benutzerdefinierte Stützverstärker, die nicht " "verwendet werden, weil Stützen deaktiviert sind." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "Es wurde ein Objekt außerhalb des Druckbereichs erkannt." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1203,10 +1212,6 @@ msgstr "" "Es wurde ein Objekt außerhalb des Druckbereichs erkannt.\n" "Das Problem lösen, um mit dem Slicen fortzufahren." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "Es wurde ein Objekt außerhalb des Druckbereichs erkannt." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "Unerwarteter Fehler aufgetreten" @@ -1227,14 +1232,6 @@ msgstr "" "Alle Änderungen sollten als neue Voreinstellungen gespeichert werden, die " "von diesem vererbt wurden." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "API Key" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "API Key / Kennwort" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Anwendungseinstellungen" @@ -1257,18 +1254,10 @@ msgstr "Farbwechsel automatisch anwenden" msgid "Apply to all the remaining small objects being loaded." msgstr "Anwenden auf alle verbleibenden kleinen Objekte, die geladen werden." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "ungefähre Sekunden" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Archimedische Bögen" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "Archiv ist zu groß" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1300,6 +1289,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "Sind Sie sicher, dass Sie den Drucker \"%1%\" löschen möchten?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "Sind Sie sicher, dass Sie alle Ersetzungen löschen möchten?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "Sind Sie sicher, dass Sie es tun wollen?" @@ -1555,14 +1548,22 @@ msgstr "Verhalten bei unbekannten Konfigurationswerten" msgid "Balanced" msgstr "Balanziert" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "basiert auf Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Druckbett" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "Druckbettprofil" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "Druckbettform und -größe" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Druckbetttemperatur:" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "Druckbett individuelles Modell" @@ -1579,18 +1580,10 @@ msgstr "Bettfüllen abgebrochen." msgid "Bed filling done." msgstr "Bett füllen abgeschlossen." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "Druckbettprofil" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "Druckbettkontur" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "Druckbettform und -größe" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Druckbetttemperatur" @@ -1604,10 +1597,6 @@ msgstr "" "Wert auf null, um die Befehle zur Steuerung der Betttemperatur im Output zu " "deaktivieren." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Druckbetttemperatur:" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1617,14 +1606,14 @@ msgstr "G-Code vor dem Schichtwechsel" msgid "Before roll back" msgstr "Vor dem Zurückwechseln" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Unter dem Objekt" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "Unter Z" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Unter dem Objekt" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "Beste Oberflächenqualität" @@ -1663,13 +1652,14 @@ msgstr "Flaschenvolumen" msgid "Bottle weight" msgstr "Flaschengewicht" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" -msgstr "Unten" +msgstr "Boden" + +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Ansicht von unten" #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" @@ -1696,10 +1686,6 @@ msgstr "Die Bodenschale ist %1% mm stark für eine Schichthöhe von %2% mm." msgid "Bottom solid layers" msgstr "Massive Basisschichten" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Ansicht von unten" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1798,10 +1784,6 @@ msgstr "Pinselgröße" msgid "Bucket fill" msgstr "Eimerfüllung" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "Puffer zu klein" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1827,18 +1809,30 @@ msgstr "" "Hinweis: Dieser Name kann später über die Einstellungen für physische " "Drucker geändert werden." -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "mit dem Maximum des Druckerprofils" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "ABGEBROCHEN" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "ABGESCHLOSSEN" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "CRC-32 Check fehlgeschlagen" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"CURL Init ist fehlgeschlagen. PrusaSlicer ist nicht in der Lage, " +"Netzwerkverbindungen herzustellen. Siehe Protokolle für weitere Details." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Kamera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Kameraansicht" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1849,6 +1843,10 @@ msgstr "" "Wussten Sie, dass Sie mit den Zifferntasten 0-6 schnell zwischen " "vordefinierten Kamerawinkeln wechseln können?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Kameraansicht" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "Kann nicht angewendet werden, wenn die Vorschau bearbeitet wird." @@ -1871,10 +1869,6 @@ msgstr "Abbruch ausgewählt" msgid "Cancel upload" msgstr "Upload abgebrochen" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "ABGEBROCHEN" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "Abgebrochen" @@ -1978,30 +1972,10 @@ msgstr "Zertifikatsdatei (*.crt, *.pem)|*.crt;*.pem|alle Dateien|*.*" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "\"%1%\" in \"%2%\" für den physischen Drucker \"%3%\" ändern." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "Ändern des Kameratyps (perspektivisch, orthografisch)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "Durchmesser des Drainagelochs ändern" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "Wechsel Extruder" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "Extruder wechseln (nv)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "Extruderfarbe ändern" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "Wechsel Extruder" @@ -2015,6 +1989,26 @@ msgstr "Ändere Option %s" msgid "Change Part Type" msgstr "Teil Typ ändern" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "Ändern des Kameratyps (perspektivisch, orthografisch)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "Durchmesser des Drainagelochs ändern" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "Wechsel Extruder" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "Extruder wechseln (nv)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "Extruderfarbe ändern" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "Ändern des Stützpunkt-Kopfdurchmessers" @@ -2051,6 +2045,10 @@ msgstr "" "Das Ändern einiger Optionen führt zu einem Neustart der Anwendung.\n" "Sie verlieren dann den Inhalt der Plattform." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Nach Konfigurationsaktualisierungen suchen" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Nach Updates suchen" @@ -2059,9 +2057,9 @@ msgstr "Nach Updates suchen" msgid "Check for configuration updates" msgstr "Suche nach Konfigurationsaktualisierungen" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Nach Konfigurationsaktualisierungen suchen" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "SLA Archiv wählen:" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2085,6 +2083,10 @@ msgstr "" "Wählen Sie eine STL-Datei aus, aus der Sie die Druckbettform importieren " "möchten:" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Choose one PNG file:" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Wählen Sie eine Datei (3MF/AMF):" @@ -2101,14 +2103,6 @@ msgstr "Wählen Sie eine oder mehrere Dateien (STL, OBJ):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wählen Sie eine oder mehrere Dateien (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Choose one PNG file:" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "SLA Archiv wählen:" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Wählen Sie den Typ der von Ihrem Drucker verwendeten Firmware." @@ -2123,10 +2117,6 @@ msgstr "Kreis" msgid "Circular" msgstr "Kreisförmig" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Alles löschen" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Undo/Redo-Stapel bei neuem Projekt löschen" @@ -2138,6 +2128,10 @@ msgstr "" "Undo / Redo-Stapel bei neuem Projekt oder beim Laden eines bestehenden " "Projekts löschen." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Alles löschen" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "" @@ -2193,11 +2187,6 @@ msgstr "Schließen" msgid "Close holes" msgstr "Löcher schließen" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Schliessabstand" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "" @@ -2207,6 +2196,11 @@ msgstr "" msgid "Closing PrusaSlicer. Current project is modified." msgstr "PrusaSlicer schließen. Das aktuelle Projekt wurde geändert." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Schliessabstand" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "Schließradius" @@ -2223,6 +2217,15 @@ msgstr "Seitenleiste zu-/ausklappen" msgid "Color" msgstr "Farbe" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "G-Code für Farbwechsel" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Color Print" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "Farbwechsel" @@ -2237,10 +2240,6 @@ msgstr "Farbwechsel (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Farbwechsel (\"%1%\") für Extruder %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "G-Code für Farbwechsel" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "G-Code für Farbwechsel" @@ -2249,11 +2248,6 @@ msgstr "G-Code für Farbwechsel" msgid "Color changes" msgstr "Farbwechsel" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Color Print" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Colorprint Höhe" @@ -2288,12 +2282,12 @@ msgid "Comment:" msgstr "Kommentar:" #: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +msgid "Compare Presets" msgstr "Voreinstellungen vergleichen" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 -msgid "Compare Presets" +msgid "Compare presets" msgstr "Voreinstellungen vergleichen" #: src/slic3r/GUI/Tab.cpp:216 @@ -2328,14 +2322,6 @@ msgstr "Objekte nacheinander drucken" msgid "Completed" msgstr "Fertig" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "ABGESCHLOSSEN" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "Komprimierung fehlgeschlagen" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2353,6 +2339,24 @@ msgstr "&Konfigurations-Assistent" msgid "Configuration Assistant" msgstr "Konfigurations-Assistent" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Konfigurations-Momentaufnahmen" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"Bei einer Konfigurationsaktualisierung gehen voreingestellte Änderungen " +"verloren.\n" +"Überprüfen Sie daher nicht gespeicherte Änderungen und speichern Sie sie " +"gegebenenfalls." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Konfigurations-Assistent" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2395,10 +2399,6 @@ msgstr "" "Konfigurations-Schnappschüsse können Sie Schnappschüsse anzeigen und " "zwischen ihnen hin und her wechseln." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Konfigurations-Momentaufnahmen" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Konfigurationsupdate" @@ -2415,20 +2415,6 @@ msgstr "Konfigurationsupdate ist verfügbar." msgid "Configuration updates" msgstr "Konfigurationsupdates" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"Bei einer Konfigurationsaktualisierung gehen voreingestellte Änderungen " -"verloren.\n" -"Überprüfen Sie daher nicht gespeicherte Änderungen und speichern Sie sie " -"gegebenenfalls." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Konfigurations-Assistent" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Bestätigung" @@ -2501,12 +2487,6 @@ msgstr "" msgid "Connection to OctoPrint works correctly." msgstr "Verbindung zu OctoPrint funktioniert einwandfrei." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "" -"Die Verbindung zu Druckern, die über den Druck-Host angeschlossen sind, ist " -"fehlgeschlagen." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "Verbindung zum Prusa SL1 / SL1S funktioniert einwandfrei." @@ -2519,9 +2499,11 @@ msgstr "Die Verbindung zu PrusaLink funktioniert einwandfrei." msgid "Connection to Repetier works correctly." msgstr "Die Verbindung zu Repetier funktioniert korrekt." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "weiter" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "" +"Die Verbindung zu Druckern, die über den Druck-Host angeschlossen sind, ist " +"fehlgeschlagen." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2605,25 +2587,26 @@ msgstr "Position des Kühlschlauchs" msgid "Copies of the selected object" msgstr "Kopien des ausgewählten Objekts" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" msgstr "Kopieren" +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Versionsinfo kopieren" + #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Auswahl in Zwischenablage kopieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Zu Zwischenablage kopieren" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Zu Zwischenablage kopieren" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Versionsinfo kopieren" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Zu Zwischenablage kopieren" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2780,10 +2763,6 @@ msgstr "" "endgültige Druckauflösung verringern, daher ist es ratsam, den Wert relativ " "niedrig zu halten." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "CRC-32 Check fehlgeschlagen" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "" @@ -2827,14 +2806,6 @@ msgstr "Strg + Mausrad" msgid "Cubic" msgstr "Kubisch" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"CURL Init ist fehlgeschlagen. PrusaSlicer ist nicht in der Lage, " -"Netzwerkverbindungen herzustellen. Siehe Protokolle für weitere Details." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2953,10 +2924,6 @@ msgstr "Todeszone:" msgid "Decimate ratio" msgstr "Dezimierungsverhältnis" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "Entpacken fehlgeschlagen oder Archiv defekt" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Kopien verringern" @@ -2967,16 +2934,9 @@ msgstr "Kopien verringern" msgid "Default" msgstr "Standard" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "Standard" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "Standard-SLA-Materialprofil" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2992,18 +2952,10 @@ msgstr "" msgid "Default color" msgstr "Standardfarbe" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "Standardfarbe" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "Standardextrusionsbreite" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "Standard-Filamentprofil" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "Standard-Filamentprofil" @@ -3017,10 +2969,6 @@ msgstr "" "Standard-Filamentprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei " "Auswahl des aktuellen Druckerprofils wird dieses Filamentprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "Standard-Druckprofil" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "Standard-Druckprofil" @@ -3035,22 +2983,6 @@ msgstr "" "Standarddruckprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei " "Auswahl des aktuellen Druckerprofils wird dieses Druckprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "Standard-SLA-Materialprofil" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "Standard-SLA-Materialprofil" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "Standard-SLA-Druckprofil" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "Standardwert" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "Benutzerdefiniertes Druckerprofil definieren" @@ -3071,10 +3003,6 @@ msgstr "" msgid "Delay after unloading" msgstr "Verzögerung nach dem Entladen" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "löschen" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3085,11 +3013,6 @@ msgstr "Löschen" msgid "Delete &All" msgstr "&Alles löschen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "Alle löschen" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "Alle Kopien des Objektes löschen" @@ -3098,22 +3021,6 @@ msgstr "Alle Kopien des Objektes löschen" msgid "Delete All Objects" msgstr "Alle Objekte löschen" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "Farbwechsel löschen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "Löscht einen Farbwechselmarker der aktuellen Schicht" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "Benutzerdefinierten G-Code löschen" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "Drainageloch entfernen" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "Höhenbereich löschen" @@ -3126,33 +3033,15 @@ msgstr "Kopie löschen" msgid "Delete Object" msgstr "Objekt löschen" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"Löschen Sie eine oder mehrere benutzerdefinierte Formen. Sie können keine " -"Systemformen löschen" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "Lösche Option %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "Druckpause löschen" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "Physischen Drucker löschen" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "Physischen Drucker löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "Löschen ausgewählt" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "Löschen ausgewählt" @@ -3173,6 +3062,45 @@ msgstr "Einstellungen löschen" msgid "Delete Subobject" msgstr "Subobjekt löschen" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "Alle löschen" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "Farbwechsel löschen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "Löscht einen Farbwechselmarker der aktuellen Schicht" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "Benutzerdefinierten G-Code löschen" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "Drainageloch entfernen" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"Löschen Sie eine oder mehrere benutzerdefinierte Formen. Sie können keine " +"Systemformen löschen" + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "Druckpause löschen" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "Physischen Drucker löschen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "Löschen ausgewählt" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "Stützpunkt löschen" @@ -3249,10 +3177,6 @@ msgstr "Alle Objekte abwählen" msgid "Desktop Integration" msgstr "Desktop Integration" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "Desktop Integration fehlgeschlagen." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3264,6 +3188,10 @@ msgstr "" "\n" "Drücken Sie auf \"Ausführen\", um fortzufahren." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "Desktop Integration fehlgeschlagen." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "Desktop Integration war erfolgreich." @@ -3358,10 +3286,6 @@ msgstr "" "Modell in der 3D-Ansicht, wählen Sie Schichten und Umfänge und passen Sie " "die Werte im rechten Fenster an. Lesen Sie mehr in der Dokumentation." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "weicht von der Originaldatei ab" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "Richtung" @@ -3535,18 +3459,14 @@ msgstr "Möchten Sie die Änderungen in \"%1%\" speichern?" msgid "Do you want to save your manually edited support points?" msgstr "Möchten Sie Ihre manuell bearbeiteten Stützpunkte speichern?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "Möchten Sie Standardfilamente für diese FFF-Druckermodelle auswählen?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "" "Möchten Sie Standard-SLA-Materialien für diese Druckermodelle auswählen?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "enthält keinen gültigen G-Code." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "Möchten Sie Standardfilamente für diese FFF-Druckermodelle auswählen?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3642,10 +3562,37 @@ msgstr "Dynamisch" msgid "E&xport" msgstr "E&xport" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "FEHLER" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "FEHLER:" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"FEHLER: Bitte schließen Sie zuerst alle in der linken Symbolleiste " +"verfügbaren Manipulatoren" + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "FEHLER: Nicht genügend Ressourcen, um einen neuen Job auszuführen." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Bearbeiten" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Höhenbereich bearbeiten" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Farbe bearbeiten" @@ -3659,10 +3606,6 @@ msgstr "" msgid "Edit custom G-code" msgstr "Benutzerdefinierten G-Code bearbeiten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Höhenbereich bearbeiten" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Druckpausen-Mitteilung bearbeiten" @@ -3695,10 +3638,6 @@ msgstr "Eigen Vektorisierung unterstützt:" msgid "Ejec&t SD Card / Flash Drive" msgstr "SD-Kar&te/Flash-Laufwerk auswerfen" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "Laufwerk auswerfen" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "SD-Karte/Flash-Laufwerk auswerfen" @@ -3709,6 +3648,10 @@ msgstr "" "SD-Karte / Flash-Laufwerk auswerfen, nachdem der G-Code dorthin exportiert " "wurde." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "Laufwerk auswerfen" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -4016,9 +3959,9 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "FEHLER" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Fehlermeldung" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -4037,10 +3980,6 @@ msgstr "Fehler während Ersatz" msgid "Error loading shaders" msgstr "Fehler beim Laden von Shadern" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Fehlermeldung" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4080,30 +4019,11 @@ msgstr "Fehler!" msgid "Error! Invalid model" msgstr "Fehler! Ungültiges Modell" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "FEHLER:" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Fehler: %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "FEHLER: Nicht genügend Ressourcen, um einen neuen Job auszuführen." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"FEHLER: Bitte schließen Sie zuerst alle in der linken Symbolleiste " -"verfügbaren Manipulatoren" - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4125,15 +4045,6 @@ msgstr "Ereignis" msgid "Everywhere" msgstr "Überall" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "außer für die ersten %1% Schichten." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "außer für die erste Schicht." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4183,14 +4094,14 @@ msgstr "" msgid "Expert" msgstr "Experte" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Expertenmodus" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Experten Anzeigemodus" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Expertenmodus" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Export" @@ -4211,6 +4122,63 @@ msgstr "Werkzeugwege als OBJ expor&tieren" msgid "Export 3MF" msgstr "Export 3MF" +#: src/libslic3r/PrintConfig.cpp:4261 +msgid "Export AMF" +msgstr "Exportiere AMF" + +#: src/slic3r/GUI/Plater.cpp:2853 +msgid "Export AMF file:" +msgstr "Exportiere AMF Datei:" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export Config &Bundle" +msgstr "Konfigurationssa&mlung exportieren" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export Config Bundle With Physical Printers" +msgstr "Konfigurations-Bundle mit physischen Druckern exportieren" + +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "G-Code exportieren." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Export G-Code" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "G-Code auf SD-Karte/Flash-Laufwerk exportieren" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Exportiere OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Exportiere OBJ Datei:" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Exportiere die Plattenbelegung als &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Exportiere Plattenbelegung als STL einschließlich Stützen" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Exportiere SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Exportiere STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Exportiere STL Datei:" + #: src/slic3r/GUI/MainFrame.cpp:1260 msgid "Export all presets including physical printers to file" msgstr "" @@ -4221,14 +4189,6 @@ msgstr "" msgid "Export all presets to file" msgstr "Exportiere alle Voreinstellungen in eine Datei" -#: src/libslic3r/PrintConfig.cpp:4261 -msgid "Export AMF" -msgstr "Exportiere AMF" - -#: src/slic3r/GUI/Plater.cpp:2853 -msgid "Export AMF file:" -msgstr "Exportiere AMF Datei:" - #: src/slic3r/GUI/GUI_Factories.cpp:715 msgid "Export as STL" msgstr "Exportiere als STL" @@ -4237,14 +4197,6 @@ msgstr "Exportiere als STL" msgid "Export config" msgstr "Konfiguration exportieren" -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export Config &Bundle" -msgstr "Konfigurationssa&mlung exportieren" - -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export Config Bundle With Physical Printers" -msgstr "Konfigurations-Bundle mit physischen Druckern exportieren" - #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Exportiere die aktuelle Konfiguration in eine Datei" @@ -4273,55 +4225,14 @@ msgstr "" "Exportieren Sie die vollständigen Pfadnamen der Modelle und Teilequellen in " "3mf- und amf-Dateien" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Export G-Code" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "G-Code auf SD-Karte/Flash-Laufwerk exportieren" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "G-Code exportieren." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Exportiere OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Exportiere OBJ Datei:" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "Export einer temporären 3MF Datei fehlgeschlagen" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Exportiere die Plattenbelegung als &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Exportiere Plattenbelegung als STL einschließlich Stützen" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Exportiere SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Vollständige Pfadnamen der Quellen in 3mf und amf exportieren" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Exportiere STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Exportiere STL Datei:" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Exportiert das/die Modell(e) als 3MF Datei." @@ -4350,6 +4261,10 @@ msgstr "Werkzeugweg als OBJ exportieren" msgid "Export." msgstr "Export." +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Exportiere G-Code" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Konfigurationsbündel exportieren" @@ -4358,10 +4273,6 @@ msgstr "Konfigurationsbündel exportieren" msgid "Exporting finished." msgstr "Exportieren beendet." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Exportiere G-Code" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4388,10 +4299,6 @@ msgstr "Belichtungszeit" msgid "External perimeter" msgstr "Außenkontur" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "Außenkonturen" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "Außenkonturen" @@ -4437,6 +4344,10 @@ msgstr "Extruder %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Extruder (Werkzeug) ist geändert auf Extruder \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Extruder Farbe" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "Extruder geändert auf" @@ -4445,10 +4356,6 @@ msgstr "Extruder geändert auf" msgid "Extruder clearance" msgstr "Extruder Freiraum" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Extruder Farbe" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Extruder Offset" @@ -4470,22 +4377,10 @@ msgstr "Extruder Anzahl" msgid "Extrusion" msgstr "Extrusion" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "Extrusionsachse" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "Extrusionsfaktor" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Extrusionstemperatur:" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Extrusionbreite" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4494,6 +4389,22 @@ msgstr "Extrusionbreite" msgid "Extrusion Width" msgstr "Extrusionsbreite" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "Extrusionsachse" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "Extrusionsfaktor" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Extrusionbreite" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "FFF Technologie Drucker" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Flächen" @@ -4502,10 +4413,6 @@ msgstr "Flächen" msgid "Faded layers" msgstr "Ausblendende Schichten" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "Zentrales Verzeichnis nicht gefunden" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4530,6 +4437,10 @@ msgstr "Konfigurations-Snapshot konnte nicht aktiviert werden." msgid "Failed to drill some holes into the model" msgstr "Das Bohren einiger Löcher in das Modell ist fehlgeschlagen" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "Lüftergeschwindigkeit (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Lüfter Einstellungen" @@ -4538,10 +4449,6 @@ msgstr "Lüfter Einstellungen" msgid "Fan speed" msgstr "Lüftergeschwindigkeit" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "Lüftergeschwindigkeit (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4599,19 +4506,41 @@ msgstr "Merkmalstyp" msgid "Feature types" msgstr "Merkmalstypen" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "FFF Technologie Drucker" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "Filament" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "Filamentdurchmesser:" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "Filament Ende G-code" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "Filament Übersteuerung" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "Filament Profile Auswahl" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Filamenteinstellungen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Filamenteinstellungsreiter" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "Filament Start G-code" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4622,14 +4551,6 @@ msgstr "Filament- und Düsendurchmesser" msgid "Filament at extruder %1%" msgstr "Filament auf Extruder %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "Filamentdurchmesser:" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "Filament Ende G-code" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4646,36 +4567,14 @@ msgstr "Filament Ladezeit" msgid "Filament notes" msgstr "Filament Bemerkungen" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "Filament Übersteuerung" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Filament Parkposition" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "Filament Profile Auswahl" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "Filament Eigenschaften" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Filamenteinstellungen" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Filamenteinstellungsreiter" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "Filament Start G-code" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Filament Typ" @@ -4684,58 +4583,18 @@ msgstr "Filament Typ" msgid "Filament unload time" msgstr "Filament Entladezeit" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "Filamente" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filamente" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "Dateischließen fehlgeschlagen" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "Dateierzeugen fehlgeschlagen" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "Datei zum Ersetzen wurde nicht ausgewählt" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "Datei nicht gefunden" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "Datei nicht gefunden" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "Öffnen der Datei fehlgeschlagen" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "Dateilesen fehlgeschlagen" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "Dateizugriff fehlgeschlagen" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "Zugriff auf Dateieigenschaften fehlgeschlagen" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "Datei zu groß" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "Schreiben der Datei fehlgeschlagen" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "Datei zum Ersetzen wurde nicht ausgewählt" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4817,14 +4676,6 @@ msgstr "Fertig" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Firmware Flasher" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Firmware Image:" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Firmware Einzug" @@ -4833,6 +4684,14 @@ msgstr "Firmware Einzug" msgid "Firmware Type" msgstr "Firmware Typ" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Firmware Flasher" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Firmware Image:" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "Erste Farbe" @@ -4943,10 +4802,6 @@ msgstr "Fluss" msgid "Flow rate" msgstr "Flussrate" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "die Durchflussmenge ist am Maximum" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -5016,16 +4871,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Nur für Stützverstärker" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"Beim linken Knopf: zeigt eine Nicht-System- (oder Nicht-Standard-) " -"Einstellung an.\n" -"Beim rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5080,10 +4925,6 @@ msgstr "Reservierte Schlüsselwörter gefunden in" msgid "From" msgstr "Von" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "von" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "" @@ -5102,10 +4943,6 @@ msgstr "Frontalansicht" msgid "Full fan speed at layer" msgstr "Volle Lüfterdrehzahl auf Schicht" -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "vollständiger Profilname" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "Vollbild" @@ -5120,6 +4957,12 @@ msgstr "" "Wussten Sie, dass Sie PrusaSlicer in den Vollbildmodus schalten können? " "Verwenden Sie die Tastenkombination F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "Fuzzy Skin" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5133,12 +4976,6 @@ msgstr "" "können auch Modifizierer verwenden, um Fuzzy-Skin nur auf einen Teil Ihres " "Modells anzuwenden." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "Fuzzy Skin" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "Fuzzy skin (experimentell)" @@ -5155,10 +4992,6 @@ msgstr "Fuzzy Skin Stärke" msgid "Fuzzy skin type." msgstr "Fuzzy Skin Typ." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "G-Code" @@ -5201,13 +5034,13 @@ msgstr "G-Code-Miniaturbilder" msgid "G-code viewer" msgstr "G-Code-Viewer" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero General Public License, Version 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "GUI" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5261,10 +5094,6 @@ msgstr "Stützen generieren" msgid "Generate supports for the models" msgstr "Erzeugt Stützen für die Modelle" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "erzeugte Warnungen" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Generiere G-Code" @@ -5309,10 +5138,6 @@ msgstr "Erzeuge den Vertex-Puffer" msgid "Generic" msgstr "Generisch" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "Gizmo Schnitt" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM Aufmal-Naht" @@ -5321,14 +5146,6 @@ msgstr "Gizmo FDM Aufmal-Naht" msgid "Gizmo FDM paint-on supports" msgstr "Gizmo FDM Aufmal-Stützen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Gizmo Bewegung" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Gizmo Bewegung: Drücken um um 1 mm zu Rasten" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Gizmo Multi Material Bemalung" @@ -5337,6 +5154,26 @@ msgstr "Gizmo Multi Material Bemalung" msgid "Gizmo Place face on bed" msgstr "Gizmo auf Fläche platzieren" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA Aushöhlung" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Gizmo SLA Stützpunkte" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "Gizmo Schnitt" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Gizmo Bewegung" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Gizmo Bewegung: Drücken um um 1 mm zu Rasten" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Gizmo Rotieren" @@ -5369,14 +5206,6 @@ msgstr "Gizmo Skalieren: Drücken, um um 5% zu rasten" msgid "Gizmo scale: Scale selection to fit print volume" msgstr "Gizmo Skalieren: Auswahl skalieren, um in das Druckvolumen zu passen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Gizmo SLA Aushöhlung" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Gizmo SLA Stützpunkte" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5399,10 +5228,6 @@ msgstr "Gizmo Skalierung" msgid "Gizmos" msgstr "Gizmos" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, Version 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5424,14 +5249,36 @@ msgstr "Gruppe" msgid "Group manipulation" msgstr "Gruppenbearbeitung" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "GUI" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Gyroid" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP Digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"HTTP-Status: %1%\n" +"Nachrichtentext: \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "HTTPS CA Datei" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"HTTPS-CA-Datei ist optional. Sie wird nur benötigt, wenn Sie HTTPS mit einem " +"selbstsignierten Zertifikat verwenden." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "Kopfdurchmesser" @@ -5605,14 +5452,14 @@ msgstr "Änderung der Aushöhlungsparameter" msgid "Honeycomb" msgstr "Bienenwabe" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "Horizontale Konturhüllen" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Horizontaler Schieberegler" +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "Horizontale Konturhüllen" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5677,40 +5524,14 @@ msgstr "Wie man Grenzen anwendet" msgid "How to apply the Machine Limits" msgstr "Wie man Maschinengrenzen anwendet" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP Digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"HTTP-Status: %1%\n" -"Nachrichtentext: \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "HTTPS CA Datei" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"HTTPS-CA-Datei ist optional. Sie wird nur benötigt, wenn Sie HTTPS mit einem " -"selbstsignierten Zertifikat verwenden." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Symbolgröße in Bezug auf die Standardgröße" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5748,6 +5569,46 @@ msgstr "" "Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar " "wird, wird sie beim Programmstart angeboten." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "" +"Wenn diese Option aktiviert ist, wird PrusaSlicer an der Position geöffnet, " +"an der er geschlossen wurde." + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "" +"Wenn diese Option aktiviert ist, wird PrusaSlicer keine Hyperlinks in Ihrem " +"Browser öffnen." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"Wenn diese Option aktiviert ist, werden die Registerkarten für die " +"Einstellungen als Menüpunkte platziert. Wenn deaktiviert, wird die alte " +"Benutzeroberfläche verwendet." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Wenn aktiviert, lädt Slic3r Updates der eingebauten Systemvoreinstellungen " +"im Hintergrund herunter. Diese Updates werden in einen separaten temporären " +"Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar " +"wird, wird sie beim Programmstart angeboten." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"Wenn aktiviert, verwendet die Benutzeroberfläche die Farben des dunklen " +"Modus. Wenn deaktiviert, wird die alte Benutzeroberfläche verwendet." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "" @@ -5761,6 +5622,15 @@ msgstr "" "Wenn aktiviert, werden alle Druckextruder zu Beginn des Druckvorgangs an der " "Vorderkante des Druckbetts geprimt." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Wenn diese Option aktiviert ist, ermöglicht der Befehl \"Von Festplatte neu " +"laden\" das automatische Suchen und Laden der Dateien, wenn er aufgerufen " +"wird." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5774,15 +5644,6 @@ msgstr "" "Wenn nicht aktiviert, fordert der Befehl Von der Festplatte neu laden jede " "Datei über ein Dialogfeld zum Öffnen von Dateien zur Auswahl auf." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"Wenn diese Option aktiviert ist, ermöglicht der Befehl \"Von Festplatte neu " -"laden\" das automatische Suchen und Laden der Dateien, wenn er aufgerufen " -"wird." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5817,18 +5678,6 @@ msgstr "" "Schieberegler in der Vorschau vorgenommenen Änderungen auf den gesamten G-" "Code angewendet." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "" -"Wenn diese Option aktiviert ist, wird PrusaSlicer an der Position geöffnet, " -"an der er geschlossen wurde." - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "" -"Wenn diese Option aktiviert ist, wird PrusaSlicer keine Hyperlinks in Ihrem " -"Browser öffnen." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5844,6 +5693,14 @@ msgstr "" msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "Wenn aktiviert, wird die Richtung des Zooms mit dem Mausrad umgekehrt" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"Wenn aktiviert, legt PrusaSlicer G-Code-Viewer als Standardanwendung zum " +"Öffnen von .gcode-Dateien fest." + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5856,35 +5713,6 @@ msgstr "" "Wenn aktiviert, legt PrusaSlicer als Standardanwendung zum Öffnen von .stl-" "Dateien fest." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"Wenn aktiviert, legt PrusaSlicer G-Code-Viewer als Standardanwendung zum " -"Öffnen von .gcode-Dateien fest." - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"Wenn diese Option aktiviert ist, werden die Registerkarten für die " -"Einstellungen als Menüpunkte platziert. Wenn deaktiviert, wird die alte " -"Benutzeroberfläche verwendet." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Wenn aktiviert, lädt Slic3r Updates der eingebauten Systemvoreinstellungen " -"im Hintergrund herunter. Diese Updates werden in einen separaten temporären " -"Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar " -"wird, wird sie beim Programmstart angeboten." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5942,13 +5770,6 @@ msgstr "" "Extruder nach unten, um den Reinigungsturm zu drucken. Der Benutzer ist " "dafür verantwortlich, dass es nicht zu einer Kollision mit dem Druck kommt." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"Wenn aktiviert, verwendet die Benutzeroberfläche die Farben des dunklen " -"Modus. Wenn deaktiviert, wird die alte Benutzeroberfläche verwendet." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -6059,15 +5880,6 @@ msgstr "" "die Geschwindigkeit des Druckvorgangs verringert, um die Zeitdauer auf " "diesen Wert zu verlängern." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Wenn diese Option aktiviert ist, wird der Lüfter niemals deaktiviert und " -"läuft mindestens mit seiner Minimaldrehzahl weiter. Sinnvoll für PLA, " -"ungeignet für ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6093,6 +5905,15 @@ msgstr "" "Ausgabeverzeichnis anstelle des Verzeichnisses, in dem sich die " "Eingabedateien befinden." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Wenn diese Option aktiviert ist, wird der Lüfter niemals deaktiviert und " +"läuft mindestens mit seiner Minimaldrehzahl weiter. Sinnvoll für PLA, " +"ungeignet für ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6232,26 +6053,6 @@ msgstr "Importiere Konfiguration von &Projekt" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Konfiguration aus ini/amf/3mf/gcode importieren" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Nur Konfiguration importieren" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Datei importieren" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Nur Geometrie importieren" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Modell und Profil importieren" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Nur Modell importieren" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Objekt importieren" @@ -6260,14 +6061,6 @@ msgstr "Objekt importieren" msgid "Import Objects" msgstr "Objekte importieren" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "Import einer reparierten 3MF Datei fehlgeschlagen" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Nur Profil importieren" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Import SL1 / SL1S Archiv" @@ -6289,6 +6082,38 @@ msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "" "Importiere STL/OBJ/AMF/3MF mit Konfigurationsdaten, Druckplatte beibehalten" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Nur Konfiguration importieren" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Datei importieren" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Nur Geometrie importieren" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Modell und Profil importieren" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Nur Modell importieren" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "Import einer reparierten 3MF Datei fehlgeschlagen" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Nur Profil importieren" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importiere SLA-Archiv" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Importieren abgebrochen." @@ -6297,18 +6122,6 @@ msgstr "Importieren abgebrochen." msgid "Importing done." msgstr "Importieren abgeschlossen." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importiere SLA-Archiv" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "in" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "" @@ -6345,42 +6158,6 @@ msgstr "Kopien erhöhen" msgid "Increase/decrease edit area" msgstr "Bearbeitungsbereich vergrößern/verkleinern" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"zeigt an, dass einige Einstellungen geändert wurden und nicht mit den " -"System- (oder Standard-) Werten für die aktuelle Optionsgruppe " -"übereinstimmen.\n" -"Klicken Sie auf das Symbol GEÖFFNETES SCHLOSS, um alle Einstellungen für die " -"aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für " -"die aktuelle Optionsgruppe übereinstimmen" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt " -"gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen.\n" -"Klicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die " -"aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6394,10 +6171,6 @@ msgstr "" msgid "Infill" msgstr "Infill" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "Infill" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "Infill vor Kontur" @@ -6443,6 +6216,11 @@ msgstr "Anfangsschichthöhe" msgid "Inner brim only" msgstr "Nur innerer Rand" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "Der Eingabewert ist nicht im gültigen Bereich" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6452,11 +6230,6 @@ msgstr "" "Eingabewert liegt außerhalb des Bereichs\n" "Sind Sie sicher, dass %s ein korrekter Wert ist und Sie fortfahren möchten?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "Der Eingabewert ist nicht im gültigen Bereich" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6531,10 +6304,6 @@ msgstr "Schnittstellenmuster Abstand" msgid "Interface shells" msgstr "Schnittstellenshells" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "interner Fehler" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6545,6 +6314,10 @@ msgstr "Interner Fehler: %1%" msgid "Internal infill" msgstr "Internes Infill" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "Ungültige Eindringtiefe des Stützkopfes" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "Ungültige Daten" @@ -6554,18 +6327,6 @@ msgstr "Ungültige Daten" msgid "Invalid file format." msgstr "Ungültiges Dateiformat." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "ungültiger Dateiname" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "Ungültige Eindringtiefe des Stützkopfes" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "ungültiger Dateiheader oder Archiv ist beschädigt" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6581,14 +6342,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "Ungültige numerische Eingabe." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "ungültiger Parameter" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "Ungültiger Nadelkopfdurchmesser" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Bügeln" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6604,32 +6370,14 @@ msgstr "" "glätten. Weitere Informationen finden Sie in der Dokumentation. (Erfordert " "den Modus Erweitert oder Experte.)" -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Bügeln" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Bügeltyp" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "basiert auf Slic3r von Alessandro Ranellucci und der RepRap Community." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "Ist das sicher?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "ist unter der Lizenz der" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Iso" @@ -6691,15 +6439,6 @@ msgstr "Jitter" msgid "Jump to height" msgstr "Zur Höhe wechseln" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"Auf Höhe %s springen\n" -"oder Linealmodus einstellen" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6711,6 +6450,15 @@ msgstr "" "Lineal-Modus einstellen\n" "oder Extrudersequenz für den gesamten Druck einstellen" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"Auf Höhe %s springen\n" +"oder Linealmodus einstellen" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "Zum Bewegen wechseln" @@ -6753,9 +6501,25 @@ msgstr "Tastaturkürzel" msgid "Keyboard shortcuts" msgstr "Tastaturkürzel" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "GESCHLOSSENES SCHLOSS" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"Das Symbol GESCHLOSSENES SCHLOSS zeigt an, dass die Einstellungen mit den " +"System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"Das Symbol GESCHLOSSENES SCHLOSS zeigt an, dass der Wert mit dem System- " +"(oder Standard-) Wert übereinstimmt." #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6809,23 +6573,11 @@ msgstr "Schichthöhen Grenzen" msgid "Layer range Settings to modify" msgstr "Schichtbereicheinstellungen zum Ändern" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "Schichten" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Schichten" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Schichten und Umfänge" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6839,15 +6591,9 @@ msgstr "Schichten und Umfänge" msgid "Layers and Perimeters" msgstr "Schichten und Konturen" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Boden" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Decke" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Schichten und Umfänge" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6862,6 +6608,14 @@ msgstr "\"%1%\" aktiviert lassen" msgid "Left" msgstr "Links" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Linker voreingestellter Wert" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Anicht von Links" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6878,14 +6632,6 @@ msgstr "Linke Maustaste" msgid "Left mouse button:" msgstr "Linke Maustaste:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Linker voreingestellter Wert" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Anicht von Links" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Legende/geschätzte Druckzeit" @@ -6913,6 +6659,10 @@ msgstr "" "Lizenzvereinbarungen für alle folgenden Programme (Bibliotheken) sind Teil " "der Anwendungslizenzvereinbarung" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Z Hebung" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6921,10 +6671,6 @@ msgstr "" "Hebt das Objekt über das Bett, wenn es sich teilweise darunter befindet. " "Standardmäßig aktiviert, zum Deaktivieren --no-ensure-on-bed verwenden." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Z Hebung" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6941,18 +6687,42 @@ msgstr "Linie" msgid "Load" msgstr "Laden" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Lade und füge Konfiguration von ini/amf/3mf/gcode hinzu" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "Datei laden" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "Dateien laden" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "Modifizierer laden" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "Teil laden" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "Projekt laden" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "Lade ein Modell" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "Laden eines mit imperialen Einheiten gespeicherten Modells" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "Laden eines SL1 / SL1S Archiv" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "Laden eines mit imperialen Einheiten gespeicherten Modells" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6982,10 +6752,6 @@ msgstr "" "verwenden, mit denen Sie ebenfalls 3D-Modelle aus den Voxel-Daten " "rekonstruieren können." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "Lade und füge Konfiguration von ini/amf/3mf/gcode hinzu" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "Lade Konfiguration aus Projektdatei" @@ -7002,30 +6768,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "Laden einer exportierten Konfigurationsdatei" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "Datei laden" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "Dateien laden" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "Modifizierer laden" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "Teil laden" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "Lade Voreinstellungen aus einer Sammlung" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "Projekt laden" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "Lade Umriß von STL..." @@ -7034,10 +6780,6 @@ msgstr "Lade Umriß von STL..." msgid "Load..." msgstr "Laden..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "geladen wird" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "Lade" @@ -7102,26 +6844,6 @@ msgstr "Lokale Koordinaten" msgid "Lock supports under new islands" msgstr "Fixiere Stützen unter neuen Inseln" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "GESCHLOSSENES SCHLOSS" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"Das Symbol GESCHLOSSENES SCHLOSS zeigt an, dass die Einstellungen mit den " -"System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"Das Symbol GESCHLOSSENES SCHLOSS zeigt an, dass der Wert mit dem System- " -"(oder Standard-) Wert übereinstimmt." - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Logging-Level" @@ -7155,13 +6877,6 @@ msgstr "" "Maschinengrenzen sind nicht gesetzt, daher ist die Schätzung der Druckzeit " "möglicherweise nicht genau." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"Maschinengrenzen werden im G-Code ausgegeben und zur Schätzung der Druckzeit " -"verwendet." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7172,6 +6887,13 @@ msgstr "" "Schätzung der Druckzeit verwendet, die daher möglicherweise nicht genau ist, " "da der Drucker möglicherweise eine andere Reihe von Maschinenlimits anwendet." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"Maschinengrenzen werden im G-Code ausgegeben und zur Schätzung der Druckzeit " +"verwendet." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7204,10 +6926,6 @@ msgstr "Mate&rial Einstellungen" msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Material Druckprofil" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7218,6 +6936,10 @@ msgstr "Material Einstellungen" msgid "Material Settings Tab" msgstr "Materialeinstellungsreiter" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Material Druckprofil" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Max" @@ -7246,10 +6968,6 @@ msgstr "Max. Druckhöhe" msgid "Max print speed" msgstr "Maximale Druckgeschwindigkeit" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "max PrusaSlicer Version" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Max. volumetrische Steigung negativ" @@ -7274,6 +6992,18 @@ msgstr "Maximalabstand zwischen Stützen auf spärlichen Infill-Abschnitten." msgid "Maximum acceleration E" msgstr "Maximale Beschleunigung E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Maximale Beschleunigung X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Maximale Beschleunigung Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Maximale Beschleunigung Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Maximale Beschleunigung für Fahrbewegungen" @@ -7322,18 +7052,6 @@ msgstr "Maximale Beschleunigung beim Einzug" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Maximale Beschleunigung beim Einzug (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Maximale Beschleunigung X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Maximale Beschleunigung Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Maximale Beschleunigung Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Maximale Beschleunigungen" @@ -7364,6 +7082,18 @@ msgstr "Maximale Belichtungszeit" msgid "Maximum feedrate E" msgstr "Maximaler Vorschub E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Maximaler Vorschub X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Maximaler Vorschub Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Maximaler Vorschub Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Maximaler Vorschub auf der E-Achse" @@ -7380,18 +7110,6 @@ msgstr "Maximaler Vorschub auf der Y-Achse" msgid "Maximum feedrate of the Z axis" msgstr "Maximaler Vorschub auf der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Maximaler Vorschub X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Maximaler Vorschub Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Maximaler Vorschub Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Maximaler Vorschub" @@ -7404,6 +7122,18 @@ msgstr "Maximale Anfang-Belichtungszeit" msgid "Maximum jerk E" msgstr "Maximaler Ruck E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Maximaler Ruck X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Maximaler Ruck Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Maximaler Ruck Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Maximaler Ruck auf der E-Achse" @@ -7420,18 +7150,6 @@ msgstr "Maximaler Ruck auf der Y-Achse" msgid "Maximum jerk of the Z axis" msgstr "Maximaler Ruck auf der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Maximaler Ruck X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Maximaler Ruck Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Maximaler Ruck Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Maximale Länge des Infill-Ankers" @@ -7527,10 +7245,6 @@ msgstr "Min" msgid "Min print speed" msgstr "Minimale Druckgeschwindigkeit" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "min PrusaSlicer Version" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Minimaler Abstand der Stützpunkte" @@ -7593,6 +7307,10 @@ msgstr "Minimaler Vorschub" msgid "Minimum initial exposure time" msgstr "Minimale Anfang-Belichtungszeit" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Minimale Schalenstärke" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7606,10 +7324,6 @@ msgstr "" "Funktion ist besonders nützlich, wenn Sie die Funktion der variablen " "Schichthöhe verwenden." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Minimale Schalenstärke" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Mindeststärke einer Ober-/Bodenschale" @@ -7646,6 +7360,10 @@ msgstr "" "Mindestbreite der Merkmale, die bei der Kompensation des Elefantenfußes " "einzuhalten sind." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Spiegeln" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7657,18 +7375,14 @@ msgstr "" "umgekehrte Version davon zu erstellen? Klicken Sie mit der rechten Maustaste " "auf das Modell, wählen Sie Spiegeln und wählen Sie die Spiegelachse." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Spiegeln" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Objekt spiegeln" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Horizontal spiegeln" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Objekt spiegeln" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Ausgewähltes Objekt spiegeln" @@ -7699,133 +7413,10 @@ msgstr "Nicht übereinstimmender Typ des Druckhosts: %s" msgid "Mixed" msgstr "Gemischt" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (Null zum Deaktivieren)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm oder %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm oder % (Null zum Deaktivieren)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s oder %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "&Modus" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "Modell" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Modell" @@ -7838,19 +7429,10 @@ msgstr "Modellreparatur abgebrochen" msgid "Model repair finished" msgstr "Modellreparatur beendet" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "Erweitert" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Änderungen am aktuellen Profil werden gespeichert." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "geändert" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Veränderer" @@ -7859,14 +7441,6 @@ msgstr "Veränderer" msgid "Modifiers" msgstr "Veränderer" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "Kosten/Flasche" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "Kosten/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotonisch" @@ -7898,6 +7472,10 @@ msgstr "Mausrad:" msgid "Move" msgstr "Bewegen" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "Objekt bewegen" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "Aktiven Schieber nach unten bewegen" @@ -7922,10 +7500,6 @@ msgstr "Beschnittebene bewegen" msgid "Move drainage hole" msgstr "Drainageloch bewegen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "Objekt bewegen" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "Punkt bewegen" @@ -8015,6 +7589,14 @@ msgstr "Mehrfache Kopien mit diesem Faktor." msgid "N/A" msgstr "N.V." +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "ÜBERHAUPT KEIN RAMMEN" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "HINWEIS:" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -8049,6 +7631,10 @@ msgstr "" msgid "Nearest" msgstr "Nächste" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Negatives Volumen" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -8063,14 +7649,18 @@ msgstr "" "leicht veränderbare Löcher direkt in PrusaSlicer erstellen. Lesen Sie mehr " "in der Dokumentation. (Erfordert den Fortgeschrittenen- oder Expertenmodus.)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Negatives Volumen" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "Network Lookup" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Neues Projekt" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Neuer Wert" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "" @@ -8085,10 +7675,6 @@ msgstr "Die neue Vorabversion %1% ist verfügbar." msgid "New printer preset selected" msgstr "Neue Druckervoreinstellung ausgewählt" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Neues Projekt" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Neues Projekt, Druckplatte leeren" @@ -8098,10 +7684,6 @@ msgstr "Neues Projekt, Druckplatte leeren" msgid "New release version %1% is available." msgstr "Die neue Release-Version %1% ist verfügbar." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Neuer Wert" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8155,10 +7737,6 @@ msgstr "" msgid "No previously sliced file." msgstr "Keine vorher gesclicete Datei." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "ÜBERHAUPT KEIN RAMMEN" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Keine spärlichen Schichten (EXPERIMENTELL)" @@ -8183,18 +7761,10 @@ msgstr "Kein" msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "Normaler Modus" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Normaler Modus" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "kein ZIP Archiv" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "Nicht gefunden:" @@ -8226,10 +7796,6 @@ msgstr[1] "" "Beachten Sie, dass diese Drucker nach dem Löschen der ausgewählten " "Voreinstellung gelöscht werden." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "HINWEIS:" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8273,16 +7839,16 @@ msgstr "Hinweis: Es ist mindestens die OctoPrint-Version 1.1.0 erforderlich." msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Hinweis: Eine Repetierversion von mindestens 0.90.0 ist erforderlich." +#: src/slic3r/GUI/SavePresetDialog.cpp:137 +msgid "Note: This preset will be replaced after saving" +msgstr "Hinweis: Diese Voreinstellung wird nach dem Speichern ersetzt" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "" "Hinweis: Einige Tastenkombinationen funktionieren nur im " "(Nicht-)Bearbeitungsmodus." -#: src/slic3r/GUI/SavePresetDialog.cpp:137 -msgid "Note: This preset will be replaced after saving" -msgstr "Hinweis: Diese Voreinstellung wird nach dem Speichern ersetzt" - #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8301,14 +7867,14 @@ msgstr "Hinweis" msgid "Notify about new releases" msgstr "Über neue Releases benachrichtigen" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "Düse" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Düse" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "Düsendurchmesser:" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Düsen- und Bett-Temperaturen" @@ -8318,10 +7884,6 @@ msgstr "Düsen- und Bett-Temperaturen" msgid "Nozzle diameter" msgstr "Düsendurchmesser" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "Düsendurchmesser:" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Düsentemperatur" @@ -8417,11 +7979,9 @@ msgstr "" msgid "Number of tool changes" msgstr "Anzahl der Werkzeugwechsel" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "Objekt" -msgstr[1] "Objekte" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "Abweichende Objekteigenschaften" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8448,10 +8008,6 @@ msgstr "Objekt oder Kopie" msgid "Object reordered" msgstr "Objekt neu angeordnet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "Abweichende Objekteigenschaften" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8481,10 +8037,6 @@ msgstr "" "Material zu sparen, das sonst im Reinigungsturm landen und die Druckzeit " "verkürzen würde. Die Farben der Objekte werden dabei gemischt." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "Objekte" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Objektliste" @@ -8497,15 +8049,6 @@ msgstr "Achterstern-Spirale" msgid "OctoPrint version" msgstr "OctoPrint Version" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "des aktuellen Objekts" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Größe" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Offset" @@ -8518,14 +8061,14 @@ msgstr "" "Versatz des Rands zum gedruckten Objekt. Der Versatz wird nach dem " "Elefantenfußausgleich angewendet." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Altes reguläres Layout mit der Registerleiste" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Alter Wert" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Altes reguläres Layout mit der Registerleiste" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8611,14 +8154,6 @@ msgstr "Z anheben nur unter" msgid "Only retract when crossing perimeters" msgstr "Nur bei Umfangsüberquerungen einziehen" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"Nur die folgenden installierten Drucker sind mit den ausgewählten Filamenten " -"kompatibel" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8627,6 +8162,14 @@ msgstr "" "Nur die folgenden installierten Drucker sind mit den ausgewählten SLA-" "Materialien kompatibel" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"Nur die folgenden installierten Drucker sind mit den ausgewählten Filamenten " +"kompatibel" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Vermeidung von Nachsickern (Ooze)" @@ -8641,6 +8184,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Öffne &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Open CA Zertifikat Datei" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Dokumentation im Webbrowser öffnen." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Öffne Ordner." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Öffne G-Code-Datei:" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "G-Code-Viewer öffnen" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Neue Instanz öffnen" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Einstellungen öffnen." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "PrusaSlicer öffnen" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Öffne eine G-Code-Datei" @@ -8658,35 +8233,15 @@ msgstr "Öffne eine Projektdatei" msgid "Open as project" msgstr "Als Projekt öffnen" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Open CA Zertifikat Datei" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "Änderungsseite öffnen" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Dokumentation im Webbrowser öffnen." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Downloadseite öffnen" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Öffne Ordner." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Öffne G-Code-Datei:" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "G-Code-Viewer öffnen" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "Hyperlink im Standardbrowser öffnen?" @@ -8699,35 +8254,23 @@ msgstr "Neuen G-Code-Viewer öffnen" msgid "Open new instance" msgstr "Neue Instanz öffnen" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Neue Instanz öffnen" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Einstellungen öffnen." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Öffne Projekt STL/OBJ/AMF/3MF mit Konfiguration, Druckplatte leeren" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "PrusaSlicer öffnen" - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "%s-Website in Ihrem Browser öffnen" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "Öffnen Sie den Dialog zum Ändern der Formengalerie" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Download-Seite für die Prusa3D-Treiber in Ihrem Browser öffnen" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "Öffnen Sie den Dialog zum Ändern der Formengalerie" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Seite mit Programmversionen in Ihrem Browser öffnen" @@ -8754,6 +8297,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Operation wird bereits abgebrochen. Bitte warten Sie einige Sekunden." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Rotation optimieren" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "Objektrotation für beste Oberflächenqualität optimieren." @@ -8774,10 +8321,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Optimiere Ausrichtung" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Rotation optimieren" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8802,10 +8345,6 @@ msgstr "Optionen für Stützmaterial und Raft" msgid "Options:" msgstr "Optionen:" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "oder drücken Sie die Taste \"+\"" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "Objektvolumen nach Typen ordnen" @@ -8826,14 +8365,14 @@ msgstr "Nullpunkt" msgid "Other" msgstr "Sonstige" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Andere Schichten" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Andere Hersteller" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Andere Schichten" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "Äußere und innerer Rand" @@ -8842,22 +8381,22 @@ msgstr "Äußere und innerer Rand" msgid "Outer brim only" msgstr "Nur äußerer Rand" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "Ausgabedatei" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "Ausgabedatei" +#: src/libslic3r/PrintConfig.cpp:4305 +msgid "Output Model Info" +msgstr "Ausgabe Modellinformationen" + +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "Ausgabedatei" + #: src/libslic3r/PrintConfig.cpp:1902 msgid "Output filename format" msgstr "Ausgabe Dateinamen Format" -#: src/libslic3r/PrintConfig.cpp:4305 -msgid "Output Model Info" -msgstr "Ausgabe Modellinformationen" - #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Ausgabeoptionen" @@ -8969,6 +8508,10 @@ msgstr "" "im oder gegen den Uhrzeigersinn drehen können, indem Sie Bild nach oben bzw. Bild nach unten drücken?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Aufmal-Naht" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8982,9 +8525,10 @@ msgstr "" "Sie die FunktionAufmal-Naht aus. (Erfordert den Modus " "\"Fortgeschritten\" oder \"Experte\")." -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Aufmal-Naht" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Aufmal-Stützen" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -8999,11 +8543,6 @@ msgstr "" "Sie die Funktion Aufmal-Stützen aus. (Erfordert den Modus " "\"Fortgeschritten\" oder \"Experte\")." -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Aufmal-Stützen" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -9037,10 +8576,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Bemalt nur eine Fläche." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "Parametername" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Parameterüberprüfung" @@ -9061,14 +8596,14 @@ msgstr "" msgid "Part" msgstr "Teil" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Teilbearbeitung" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "Abweichende Teileigenschaften" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Teilbearbeitung" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "Kennwort" @@ -9077,6 +8612,10 @@ msgstr "Kennwort" msgid "Paste" msgstr "Einfügen" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Aus Zwischenablage einfügen" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Aus Zwischenablage einfügen" @@ -9085,10 +8624,6 @@ msgstr "Aus Zwischenablage einfügen" msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Aus Zwischenablage einfügen" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Muster" @@ -9119,16 +8654,16 @@ msgstr "Unterstützungsmaterialmuster." msgid "Pause" msgstr "Pause" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Druck pausieren (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "Druckpausen G-Code" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Druck pausieren (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "Prozent einer Flussrate relativ zur normalen Schichthöhe des Objekts." @@ -9162,6 +8697,12 @@ msgstr "" "Leistung vs. Genauigkeit der Berechnung. Niedrigere Werte können zu " "unerwünschten Artefakten führen." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "" +"Durchführen der Desktop-Integration fehlgeschlagen - Ausführbare Datei " +"konnte nicht gefunden werden." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9179,12 +8720,6 @@ msgstr "" "erstellt werden. Die PrusaSlicer-Desktopdatei wurde wahrscheinlich " "erfolgreich erstellt." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "" -"Durchführen der Desktop-Integration fehlgeschlagen - Ausführbare Datei " -"konnte nicht gefunden werden." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9202,10 +8737,6 @@ msgstr "Außenkontur" msgid "Perimeter extruder" msgstr "Umfang Extruder" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "Außenkonturen" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9282,6 +8813,10 @@ msgstr "Nadelkopf Breite" msgid "Place bearings in slots and resume printing" msgstr "Lager in Nuten einsetzen und Druck wieder aufnehmen" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Auf Fläche legen" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9294,10 +8829,6 @@ msgstr "" "seiner Flächen auf dem Druckbett sitzt? Wählen Sie die Funktion Auf " "Fläche legen oder drücken Sie die Taste F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Auf Fläche legen" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9340,10 +8871,6 @@ msgstr "Position" msgid "Position (for multi-extruder printers)" msgstr "Position (für Multi-Extruder-Drucker)" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Position des Startpunktes des Umfangs." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "X-Position" @@ -9352,6 +8879,10 @@ msgstr "X-Position" msgid "Position Y" msgstr "Y-Position" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Position des Startpunktes des Umfangs." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "" @@ -9454,11 +8985,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "Eine Voreinstellung mit dem Namen \"%1%\" existiert bereits." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Kopieren" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9521,10 +9047,6 @@ msgstr "Vorher geslicete Datei (" msgid "Prime all printing extruders" msgstr "Alle Druckextruder vorfüllen" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "Druck" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Druck" @@ -9533,14 +9055,6 @@ msgstr "Druck" msgid "Print &Host Upload Queue" msgstr "Druck&host Warteschlange" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Drucken Sie Konturumfänge von der äußersten zur innersten Kontur anstatt der " -"standardmäßigen umgekehrten Reihenfolge." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Druckdurchmesser" @@ -9549,6 +9063,23 @@ msgstr "Druckdurchmesser" msgid "Print Host upload" msgstr "Hochladen zum Druckhost" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Druckeinstellungen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Druckeinstellungsreiter" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Drucken Sie Konturumfänge von der äußersten zur innersten Kontur anstatt der " +"standardmäßigen umgekehrten Reihenfolge." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9562,20 +9093,11 @@ msgstr "Druckmodus" msgid "Print pauses" msgstr "Druckpausen" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Druckeinstellungen" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Druckeinstellungen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Druckeinstellungsreiter" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "Druckgeschwindigkeit" @@ -9611,9 +9133,14 @@ msgstr "" msgid "Printer" msgstr "Drucker" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "Drucker" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Druckereinstellungen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Druckereinstellungsreiter" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9623,10 +9150,6 @@ msgstr "Drucker absolute Korrektur" msgid "Printer gamma correction" msgstr "Drucker Gammakorrektur" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "Druckermodell" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Drucker Anmerkungen" @@ -9635,6 +9158,18 @@ msgstr "Drucker Anmerkungen" msgid "Printer preset names" msgstr "Drucker-Voreinstellungsnamen" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Druckerskalierung X-Achsen-Korrektur" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Druckerskalierung Y-Achsen-Korrektur" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Druckerskalierung Z-Achsen-Korrektur" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9652,27 +9187,6 @@ msgstr "Korrektur der Druckerskalierung in der Y-Achse" msgid "Printer scaling correction in Z axis" msgstr "Korrektur der Druckerskalierung in der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Druckerskalierung X-Achsen-Korrektur" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Druckerskalierung Y-Achsen-Korrektur" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Druckerskalierung Z-Achsen-Korrektur" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Druckereinstellungen" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Druckereinstellungsreiter" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Druckertechnologie" @@ -9765,6 +9279,10 @@ msgstr "Prusa FFF Technologie Drucker" msgid "Prusa MSLA Technology Printers" msgstr "Prusa MSLA Technologie Drucker" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "PrusaSlicer GUI-Initialisierung fehlgeschlagen" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9798,10 +9316,6 @@ msgstr "PrusaSlicer erkannte System-SSL-Zertifikatspeicher in: %1%" msgid "PrusaSlicer error" msgstr "PrusaSlicer Fehler" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "PrusaSlicer GUI-Initialisierung fehlgeschlagen" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10147,6 +9661,16 @@ msgstr "Normal" msgid "Regular expression" msgstr "Regulärer Ausdruck" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"Bei der relativen Extruderadressierung muss die Extruderposition in jeder " +"Schicht neu eingestellt werden, damit die Fließkommagenauigkeit nicht " +"verloren geht. Fügen Sie \"G92 E0\" zum layer_gcode hinzu." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Nur Vollversion" @@ -10155,6 +9679,11 @@ msgstr "Nur Vollversion" msgid "Reload all from disk" msgstr "Alles von der Festplatte neu laden" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Neuladen von Festplatte" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10168,11 +9697,6 @@ msgstr "" "rechten Maustaste auf das Modell in der 3D-Ansicht und wählen Sie Von " "Festplatte neu laden. Lesen Sie mehr in der Dokumentation." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Neuladen von Festplatte" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Neuladen von:" @@ -10210,15 +9734,19 @@ msgstr "Auswahl merken" msgid "Remember output directory" msgstr "Ausgabeverzeichnis merken" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "Entfernen" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "Entfernen" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "Entfernt Kopie des gewählten Objekts" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "Multi Material Bemalung entfernen" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "Alle Löcher entfernen" @@ -10244,18 +9772,10 @@ msgstr "Extruder aus der Sequenz entfernen" msgid "Remove instance" msgstr "Kopie entfernen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "Entfernt Kopie des gewählten Objekts" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "Schichtbereich entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "Multi Material Bemalung entfernen" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "Entferne eine Kopie des gewählten Objekts" @@ -10388,11 +9908,11 @@ msgid "Repairing was canceled" msgstr "Reparieren wurde abgebrochen" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" +msgid "Repeat Last Quick Slice" msgstr "Letzten Quick Slice wiederholen" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat Last Quick Slice" +msgid "Repeat last quick slice" msgstr "Letzten Quick Slice wiederholen" #: src/slic3r/GUI/Plater.cpp:3432 @@ -10428,21 +9948,6 @@ msgstr "Ein &Problem melden" msgid "Report an issue on %s" msgstr "Einen Problem melden über %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "benötigt max. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "benötigt min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "benötigt min. %s und max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Rescan" @@ -10451,6 +9956,14 @@ msgstr "Rescan" msgid "Reset" msgstr "Rücksetzen" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Projekt zurücksetzen" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Rotation zurücksetzen" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Beschnittebene zurücksetzen" @@ -10463,18 +9976,10 @@ msgstr "Beschnittebene zurücksetzen" msgid "Reset direction" msgstr "Richtung zurücksetzen" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Projekt zurücksetzen" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Rotation zurücksetzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Rotation zurücksetzen" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10486,14 +9991,14 @@ msgstr "Skalierung zurücksetzen" msgid "Reset selection" msgstr "Auswahl zurücksetzen" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Zurücksetzen auf Basis" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Zurücksetzen auf Filamentfarbe" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Zurücksetzen auf Basis" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Anwendung neu starten" @@ -10515,13 +10020,6 @@ msgstr "Bei Schichtwechsel einziehen" msgid "Retraction" msgstr "Einzug" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"Der Einzug wird nicht ausgelöst, wenn die Fahrbewegungen kürzer als diese " -"Länge sind." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "Einzugslänge" @@ -10534,6 +10032,13 @@ msgstr "Einzugslänge (Werkzeugwechsel)" msgid "Retraction Speed" msgstr "Einzugsgeschwindigkeit" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"Der Einzug wird nicht ausgelöst, wenn die Fahrbewegungen kürzer als diese " +"Länge sind." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10570,6 +10075,14 @@ msgstr "Überprüfen Sie die Ersetzungen und passen Sie sie bei Bedarf an." msgid "Right" msgstr "Rechts" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Rechter voreingestellter Wert" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Ansicht von rechts" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10602,14 +10115,6 @@ msgstr "Rechte Maustaste" msgid "Right mouse button:" msgstr "Rechte Maustaste:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Rechter voreingestellter Wert" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Ansicht von rechts" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10677,16 +10182,6 @@ msgstr "%s ausführen" msgid "Running post-processing scripts" msgstr "Post-Prozess Scripts werden ausgeführt" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "s" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "S&ende G-code" @@ -10695,6 +10190,60 @@ msgstr "S&ende G-code" msgid "S&end to print" msgstr "Zum Drucken s&enden" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "SLA Material Profile Auswahl" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "SLA Materialien" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "SLA Stützpunkte" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "SLA Technologie Drucker" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "SLA Gizmo Tastaturkürzel" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "SLA Material" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "SLA Materialtyp" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "SLA Materialien" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "SLA Druck" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "SLA Druckmaterial-Anmerkungen" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "SLA Druckeinstellungen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "SLA-Stützen außerhalb des Druckbereichs wurden erkannt." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10715,6 +10264,23 @@ msgstr "Speichere %s als:" msgid "Save %s file as:" msgstr "Speichere %s Datei als:" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Speichere G-Code Datei als:" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "" +"Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "Projekt speichern &als" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "SL1 / SL1S-Datei speichern unter:" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Speichere Konfigurationsdatei" @@ -10745,15 +10311,6 @@ msgstr "Speichere aktuelle Projektdatei als" msgid "Save file as:" msgstr "Speichere Datei als:" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Speichere G-Code Datei als:" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "" -"Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10767,10 +10324,6 @@ msgstr "Sichern der Voreinstellungssammlung unter:" msgid "Save project" msgstr "Projekt speichern" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "Projekt speichern &als" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Speichere Projekt (3mf)" @@ -10779,10 +10332,6 @@ msgstr "Speichere Projekt (3mf)" msgid "Save project as (3mf)" msgstr "Speichere Projekt als (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "SL1 / SL1S-Datei speichern unter:" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "Stützpunkte speichern?" @@ -10814,6 +10363,10 @@ msgstr "Sichern des Netzes in einen 3MF-Container fehlgeschlagen." msgid "Scale" msgstr "Skalieren" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Passend skalieren" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Skalierungsfaktoren" @@ -10827,10 +10380,6 @@ msgstr "" msgid "Scale to Fit" msgstr "Passend skalieren" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Passend skalieren" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "Auf das gegebene Volumen skalieren." @@ -10919,13 +10468,41 @@ msgstr "Zweite Farbe" msgid "See Download page." msgstr "Siehe Download-Seite." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Siehe Releases-Seite." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Siehe mehr." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Siehe Releases-Seite." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Wählt Filamenteinstellungsreiter" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Wählt Druckplattenreiter" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Wählt Druckeinstellungsreiter" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Wählt Druckereinstellungsreiter" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Wählen Sie JA, wenn Sie alle gespeicherten Werkzeugänderungen löschen " +"möchten, \n" +"NEIN, wenn Sie möchten, dass alle Werkzeugänderungen auf Farbwechsel " +"umgestellt werden, \n" +"oder ABBRECHEN, um sie unverändert zu lassen." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10963,26 +10540,10 @@ msgstr "Konfiguration zum Laden auswählen:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Koordinatenraum wählen, in dem die Transformation durchgeführt wird." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Wählt Filamenteinstellungsreiter" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Wählt Druckplattenreiter" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Voreinstellungen zum Vergleichen wählen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Wählt Druckeinstellungsreiter" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Wählt Druckereinstellungsreiter" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Form aus der Galerie auswählen" @@ -10991,6 +10552,10 @@ msgstr "Form aus der Galerie auswählen" msgid "Select showing settings" msgstr "Wähle Anzeigeeinstellungen" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Geben Sie die STL-Datei an, die repariert werden soll:" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "Wählen Sie die Sprache aus" @@ -11007,10 +10572,6 @@ msgstr "Wählt die Druckprofile, die mit diesem Profil kompatibel sind." msgid "Select the printers this profile is compatible with." msgstr "Wählen Sie die Drucker aus, die mit diesem Profil kompatibel sind." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Geben Sie die STL-Datei an, die repariert werden soll:" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "" @@ -11028,18 +10589,6 @@ msgstr "Wählen Sie aus, welche Art von Grundschicht Sie benötigen" msgid "Select what kind of support do you need" msgstr "Wählen Sie aus, welche Art von Unterstützung Sie benötigen" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Wählen Sie JA, wenn Sie alle gespeicherten Werkzeugänderungen löschen " -"möchten, \n" -"NEIN, wenn Sie möchten, dass alle Werkzeugänderungen auf Farbwechsel " -"umgestellt werden, \n" -"oder ABBRECHEN, um sie unverändert zu lassen." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "Auswahl hinzufügen" @@ -11048,14 +10597,6 @@ msgstr "Auswahl hinzufügen" msgid "Selection-Add All" msgstr "Auswahl Alles hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "Auswahl aus Liste hinzufügen" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "Auswahl über Rechteck hinzufügen" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "Auswahl Kopie hinzufügen" @@ -11064,6 +10605,14 @@ msgstr "Auswahl Kopie hinzufügen" msgid "Selection-Add Object" msgstr "Auswahl Objekt hinzufügen" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "Auswahl aus Liste hinzufügen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "Auswahl über Rechteck hinzufügen" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "Auswahl entfernen" @@ -11072,14 +10621,6 @@ msgstr "Auswahl entfernen" msgid "Selection-Remove All" msgstr "Auswahl Alles entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "Auswahl aus Liste entfernen" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "Auswahl über Rechteck entfernen" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "Auswahl Kopie entfernen" @@ -11088,18 +10629,26 @@ msgstr "Auswahl Kopie entfernen" msgid "Selection-Remove Object" msgstr "Auswahl Objekt entfernen" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "Auswahl aus Liste entfernen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "Auswahl über Rechteck entfernen" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Alle Objekte auswählen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "Sende G-code" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "Sende G-Code zum Druckerhost" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "Sende G-code" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -11150,6 +10699,46 @@ msgstr "Name des Dienstes" msgid "Set" msgstr "Setzen" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Spiegel setzen" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "Orientierung setzen" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Position setzen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Setze Druckbar" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Setze druckbare Kopie" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Setze druckbare Gruppe" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Setze Skalierung" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Setze Undruckbar" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Setze undruckbare Kopie" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Gruppe \"Nicht druckbar\" setzen" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "Als separates Objekt festlegen" @@ -11198,9 +10787,9 @@ msgstr "Linken Schieber aktiv setzen" msgid "Set lower thumb as active" msgstr "Unteren Schieber aktiv setzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Spiegel setzen" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Setze Anzahl der Kopien" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11213,35 +10802,11 @@ msgstr "" "und die genaue Anzahl der Kopien festlegen können, anstatt es mehrmals zu " "kopieren und einzufügen?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Setze Anzahl der Kopien" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Setze Anzahl der Kopien auf %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "Orientierung setzen" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Position setzen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Setze Druckbar" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Setze druckbare Gruppe" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Setze druckbare Kopie" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Rechten Schieber aktiv setzen" @@ -11250,10 +10815,6 @@ msgstr "Rechten Schieber aktiv setzen" msgid "Set ruler mode" msgstr "Lineal-Modus einstellen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Setze Skalierung" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Ausgewählte Elemente als druckbar/ nicht druckbar festlegen" @@ -11420,18 +10981,6 @@ msgstr "" "des Abstandszylinders um Ihren Extruder herum und stellt die maximale Tiefe " "dar, die der Extruder vor der Kollision mit anderen Druckobjekten sehen kann." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Setze Undruckbar" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Gruppe \"Nicht druckbar\" setzen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Setze undruckbare Kopie" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Oberen Schieber aktiv setzen" @@ -11456,6 +11005,10 @@ msgstr "Einstellungen" msgid "Settings for height range" msgstr "Einstellungen für Höhenbereich" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Einstellungen im nicht-modalen Fenster" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11470,10 +11023,6 @@ msgstr "" "zu den Einstellungen und wählen Sie Einstellungen in nicht-modalem " "Fenster." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Einstellungen im nicht-modalen Fenster" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "Soll ich diese Einstellungen für Stützen anpassen?" @@ -11558,6 +11107,10 @@ msgstr "Zeige &Konfigurationsordner" msgid "Show &Labels" msgstr "Anzeigen Beschriftungen (&L)" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Tipp des Tages anzeigen" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "\"Über\"-Dialog anzeigen" @@ -11646,18 +11199,18 @@ msgstr "Vorschau der 3D-Schnitte anzeigen" msgid "Show the filament settings" msgstr "Filamenteinstellungen anzeigen" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "" -"Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für Druck/GCode " -"an." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "" "Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für SLA Druck " "an." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "" +"Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für Druck/GCode " +"an." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Liste der Tastaturkürzel anzeigen" @@ -11678,10 +11231,6 @@ msgstr "Druckereinstellungen anzeigen" msgid "Show this help." msgstr "Diese Hilfe zeigen." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Tipp des Tages anzeigen" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Zeige Benutzerkonfigurationsordner (datadir)" @@ -11721,14 +11270,14 @@ msgstr "Objekt-/Kopiebeschriftungen ein-/ausblenden" msgid "Simple" msgstr "Einfach" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Einfacher Modus" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "EInfacher Anzeigemodus" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Einfacher Modus" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "" @@ -11762,10 +11311,6 @@ msgstr "" msgid "Simplify model" msgstr "Modell vereinfachen" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Einzelextruder MM Setup" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "Einzelextruder mit Multi-Material" @@ -11782,6 +11327,10 @@ msgstr "" "Möchten Sie den Durchmesser für alle Extruder auf den Wert des ersten " "Extruderdüsendurchmessers ändern?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Einzelextruder MM Setup" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Einzelextruder Multimaterial Parameter" @@ -11812,6 +11361,10 @@ msgstr "Größe der rechteckigen Platte in X und Y." msgid "Skirt" msgstr "Schürze" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "Schleifen für die Schürze" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11822,65 +11375,11 @@ msgstr "Schürze und Rand" msgid "Skirt height" msgstr "Schürzenhöhe" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "Schleifen für die Schürze" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Schürze/Rand" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "SLA Gizmo Tastaturkürzel" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "SLA Material" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "SLA Material Profile Auswahl" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "SLA Materialtyp" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "SLA Materialien" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "SLA Materialien" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "SLA Druck" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "SLA Druckmaterial-Anmerkungen" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "SLA Druckeinstellungen" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "SLA Stützpunkte" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "SLA-Stützen außerhalb des Druckbereichs wurden erkannt." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "SLA Technologie Drucker" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Slab" @@ -11979,6 +11478,14 @@ msgstr "Das Objekt \"%1%\" sieht aus wie ein Logo oder ein Schild" msgid "Slicing" msgstr "Slice" +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "Slicing abgeschlossen!" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Slice-Modus" + #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 msgid "Slicing complete" @@ -11988,10 +11495,6 @@ msgstr "Slicing abgeschlossen" msgid "Slicing done" msgstr "Slicing abgeschlossen" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "Slicing abgeschlossen!" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "Slicing abgeschlossen." @@ -12002,10 +11505,6 @@ msgid "" msgstr "" "Das Slicen wurde wegen eines internen Fehlers gestoppt: Defekter Sliceindex." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Slice-Modus" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "Slice das Modell" @@ -12064,10 +11563,6 @@ msgstr "Nahtlos" msgid "Software &Releases" msgstr "Software &Release" -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "Massives Infill" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -12082,6 +11577,10 @@ msgstr "Massives Infill alle" msgid "Solid infill extruder" msgstr "Massives Infill Extruder" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Massives Infill Flächen Schwellwert" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -12094,10 +11593,6 @@ msgstr "" "automatisch mit Solid Infill füllen lassen können? Stellen Sie " "denSchwellenwertbereich für Solid Infill ein (nur im Expertenmodus)." -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Massives Infill Flächen Schwellwert" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Massive Schichten" @@ -12110,17 +11605,6 @@ msgstr "Lösliches Material" msgid "Soluble material is most likely used for a soluble support." msgstr "Lösliches Material wird meistens für lösliche Stützen verwendet." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"Einige Texte sind zu lang. Ein rechter Mausklick zeigt den vollständigen " -"Text an." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "Einige Filamente wurden deinstalliert." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -12134,6 +11618,25 @@ msgstr "" "Extrusion\" verhindert, dass PrusaSlicer überhaupt einen Extrusionswert " "exportiert." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "Einige Drucker wurden deinstalliert." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "Einige SLA-Materialien wurden deinstalliert." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"Einige Texte sind zu lang. Ein rechter Mausklick zeigt den vollständigen " +"Text an." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "Einige Filamente wurden deinstalliert." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "Einige Objekte sind während der Bearbeitung nicht sichtbar." @@ -12185,14 +11688,6 @@ msgstr "" "Mit einigen Druckern oder Druckerkonfigurationen ist es schwierig, mit einer " "variablen Schichthöhe zu drucken. Standardmäßig aktiviert." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "Einige Drucker wurden deinstalliert." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "Einige SLA-Materialien wurden deinstalliert." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "Abstand" @@ -12359,14 +11854,14 @@ msgstr "Geschwindigkeit:" msgid "Sphere" msgstr "Kugel" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Spiralvasenmodus" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Spiralvasenmodus" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Spiralvasenmodus" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12388,22 +11883,22 @@ msgstr "Ausgewähltes Objekt in Einzelobjekte trennen" msgid "Split the selected object into individual parts" msgstr "Das ausgewählte Objekt in einzelne Teile aufteilen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "In Objekte trennen" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "In Objekte trennen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "In Teile trennen" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "In Teile trennen" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "In Objekte trennen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "In Teile trennen" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12431,6 +11926,12 @@ msgstr "Standard" msgid "Stars" msgstr "Sterne" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "Start G-Code" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "Ein neues Projekt beginnen" @@ -12439,12 +11940,6 @@ msgstr "Ein neues Projekt beginnen" msgid "Start at height" msgstr "Starte auf Höhe" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "Start G-Code" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Neuen Slicing-Prozess starten" @@ -12501,10 +11996,6 @@ msgstr "Status:" msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "Stealth Modus" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Stealth Modus" @@ -12544,22 +12035,6 @@ msgstr "" "Erfolgreich ausgeworfen. Das Gerät %s(%s) kann nun sicher vom Computer " "entfernt werden." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "Stützen" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "Stützfuß Durchmesser" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Stützfuß Höhe" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "Sicherheitsabstand der Stützbasis" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Stützblocker" @@ -12576,14 +12051,22 @@ msgstr "Stützverstärker" msgid "Support Generator" msgstr "Stütz-Generator" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "Stützfuß Durchmesser" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Stützfuß Höhe" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "Sicherheitsabstand der Stützbasis" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "Stützkopf" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "Schnittstelle zu den Stützen" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12669,10 +12152,6 @@ msgstr "Stützpunkte editieren" msgid "Supports" msgstr "Stützen" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "Stützen und Grundschicht" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "Unterstützt Restzeit" @@ -12705,10 +12184,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "Öffnen des Hyperlinks im Browser unterdrücken" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "Y/Z-Achsen vertauschen" @@ -12730,10 +12205,6 @@ msgstr "Umschalten des Codes auf Farbwechsel (%1%) für:" msgid "Switch to 3D" msgstr "Zeige 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "Zum Bearbeitungsmodus umschalten" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "Wechseln zur Vorschau" @@ -12742,6 +12213,10 @@ msgstr "Wechseln zur Vorschau" msgid "Switch to Settings" msgstr "Zu Einstellungen wechseln" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "Zum Bearbeitungsmodus umschalten" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12782,10 +12257,6 @@ msgstr "" "\n" "Wollen Sie fortfahren?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "symbolischer Profilname" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12803,14 +12274,14 @@ msgstr "Mit Objektschichten synchronisieren" msgid "System &Info" msgstr "System&informationen" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Systeminfo erfolgreich gesendet. Dankeschön." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Systeminformationen" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Systeminfo erfolgreich gesendet. Dankeschön." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12896,6 +12367,148 @@ msgstr "" "Wenn das Gerät angeschlossen ist, drücken Sie bitte die Reset-Taste neben " "dem USB-Anschluss...." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"Das SLA-Archiv enthält keine Voreinstellungen. Bitte aktivieren Sie zunächst " +"eine SLA-Druckervoreinstellung, bevor Sie das SLA-Archiv importieren." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Der Spiralvasenmodus erfordert:\n" +"- einen Perimeter\n" +"- keine oberen massiven Schichten\n" +"- 0% Fülldichte\n" +"- kein Stützmaterial\n" +"- Vertikale Schalenstärke sicherstellen aktiv\n" +"- Dünne Wände erkennen nicht aktiv" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "" +"Die Option Spiralvase kann nur beim Drucken von Objekten aus einem einzigen " +"Material verwendet werden." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"Der Reinigungsturm unterstützt derzeit kein volumetrisches E " +"(use_volumetric_e=0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie " +"mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel " +"auszulösen.\n" +"(sowohl der Stützmaterial-Extruder als auch der Stützmaterial-Schnittstellen-" +"Extruder müssen auf 0 eingestellt sein)" + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"Der Reinigungsturm unterstützt zur Zeit nichtlösliche Stützen nur, falls sie " +"mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden " +"(sowohl support_material_extruder wie auch " +"support_material_interface_extruder müssen auf null gesetzt werden)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"Der Wischturm wird derzeit nicht für sequentielle Multimaterialdrucke " +"unterstützt." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"Der Wischturm wird derzeit nur für die Varianten Marlin, RepRap/Sprinter, " +"RepRapFirmware und Repetier-G-Code unterstützt." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"Der Wischturm wird derzeit nur mit relativer Extruder-Adressierung " +"unterstützt ((use_relative_e_distances=1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der " +"gleichen Anzahl von Raftschichten gedruckt werden" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der " +"gleichen support_material_contact_distance gedruckt werden" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese gleich " +"gesliced werden." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese die " +"gleiche Schichthöhe haben" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet " +"wird.\n" +"\n" +"Soll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"Der Reinigungsturm wird nur unterstützt, wenn alle Objekte die gleiche " +"variable Schichthöhe haben" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -13062,18 +12675,19 @@ msgstr "" "um das Ausquetschen in der ersten Schicht (\"Elephant Foot\"-Effekt) zu " "kompensieren." -#: src/slic3r/GUI/Plater.cpp:5717 -msgid "The following characters are not allowed by a FAT file system:" -msgstr "Die folgenden Zeichen sind in einem FAT-Dateisystem nicht zulässig:" - -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "die folgenden Zeichen sind nicht erlaubt:" - #: src/slic3r/GUI/ConfigWizard.cpp:2459 msgid "The following FFF printer models have no filament selected:" msgstr "Bei den folgenden FFF-Druckermodellen wurde kein Filament ausgewählt:" +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "" +"Bei den folgenden SLA-Druckermodellen wurden keine Materialien ausgewählt:" + +#: src/slic3r/GUI/Plater.cpp:5717 +msgid "The following characters are not allowed by a FAT file system:" +msgstr "Die folgenden Zeichen sind in einem FAT-Dateisystem nicht zulässig:" + #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -13128,15 +12742,6 @@ msgstr "" "Die folgenden Tastenkombinationen sind anwendbar, wenn das angegebene Gizmo " "aktiv ist" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "" -"Bei den folgenden SLA-Druckermodellen wurden keine Materialien ausgewählt:" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "das folgenden Suffix ist nicht erlaubt:" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "Die folgenden Werte wurden ersetzt:" @@ -13466,6 +13071,15 @@ msgstr "" "Das ausgewählte Projekt ist nicht mehr verfügbar.\n" "Wollen Sie es aus der Liste der letzten Projekte entfernen?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"Der sequenzielle Druck ist eingeschaltet.\n" +"Es ist nicht möglich, einen benutzerdefinierten G-Code für Objekte " +"anzuwenden, die sequentiell gedruckt werden." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13478,15 +13092,6 @@ msgstr "" "die sequentiell gedruckt werden.\n" "Dieser Code wird bei der G-Code-Generierung nicht verarbeitet." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"Der sequenzielle Druck ist eingeschaltet.\n" -"Es ist nicht möglich, einen benutzerdefinierten G-Code für Objekte " -"anzuwenden, die sequentiell gedruckt werden." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "Die Größe des Objekts kann in Zoll angegeben werden" @@ -13495,14 +13100,6 @@ msgstr "Die Größe des Objekts kann in Zoll angegeben werden" msgid "The size of the object is zero" msgstr "Die Größe des Objekts ist Null" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"Das SLA-Archiv enthält keine Voreinstellungen. Bitte aktivieren Sie zunächst " -"eine SLA-Druckervoreinstellung, bevor Sie das SLA-Archiv importieren." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13525,32 +13122,6 @@ msgstr "" msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Die Einzugsgeschwindigkeit (sie betrifft nur den Extruderantrieb)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"Der Spiralvasenmodus erfordert:\n" -"- einen Perimeter\n" -"- keine oberen massiven Schichten\n" -"- 0% Fülldichte\n" -"- kein Stützmaterial\n" -"- Vertikale Schalenstärke sicherstellen aktiv\n" -"- Dünne Wände erkennen nicht aktiv" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "" -"Die Option Spiralvase kann nur beim Drucken von Objekten aus einem einzigen " -"Material verwendet werden." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "Der angegebene Name ist leer. Die Speicherung kann nicht erfolgen." @@ -13604,106 +13175,6 @@ msgstr "" "support_material_contact_distance sowohl für den oberen als auch für den " "unteren Z-Abstand verwendet." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet " -"wird.\n" -"\n" -"Soll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"Der Reinigungsturm unterstützt derzeit kein volumetrisches E " -"(use_volumetric_e=0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie " -"mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel " -"auszulösen.\n" -"(sowohl der Stützmaterial-Extruder als auch der Stützmaterial-Schnittstellen-" -"Extruder müssen auf 0 eingestellt sein)" - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"Der Reinigungsturm unterstützt zur Zeit nichtlösliche Stützen nur, falls sie " -"mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden " -"(sowohl support_material_extruder wie auch " -"support_material_interface_extruder müssen auf null gesetzt werden)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"Der Wischturm wird derzeit nicht für sequentielle Multimaterialdrucke " -"unterstützt." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"Der Wischturm wird derzeit nur für die Varianten Marlin, RepRap/Sprinter, " -"RepRapFirmware und Repetier-G-Code unterstützt." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"Der Wischturm wird derzeit nur mit relativer Extruder-Adressierung " -"unterstützt ((use_relative_e_distances=1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der " -"gleichen Anzahl von Raftschichten gedruckt werden" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der " -"gleichen support_material_contact_distance gedruckt werden" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese gleich " -"gesliced werden." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese die " -"gleiche Schichthöhe haben" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13712,14 +13183,6 @@ msgstr "" "Der Wischturm wird nur unterstützt, wenn alle Extruder den gleichen " "Düsendurchmesser haben und Filamente mit dem gleichen Durchmesser verwenden." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"Der Reinigungsturm wird nur unterstützt, wenn alle Objekte die gleiche " -"variable Schichthöhe haben" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "Es gibt aktive Warnungen zu gesliceten Modellen:" @@ -13772,6 +13235,18 @@ msgstr "Dicke Brücken" msgid "This %s version: %s" msgstr "Diese %s Version: %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Dieser G-Code wird als Code für den Farbwechsel verwendet" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Dieser G-Code wird als Code für die Druckpause verwendet" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Dieser G-Code wird als benutzerdefinierter Code verwendet" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -14045,18 +13520,6 @@ msgstr "" "Diese Einstellung wird die Düse während dem Einzug bewegen, um mögliche " "Tropfen bei einem undichten Extruder zu minimieren." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Dieser G-Code wird als Code für den Farbwechsel verwendet" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Dieser G-Code wird als Code für die Druckpause verwendet" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Dieser G-Code wird als benutzerdefinierter Code verwendet" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "Dies ist eine Standard-Voreinstellung." @@ -14499,10 +13962,6 @@ msgstr "" "Werkzeugwechseln beitragen bei flexiblen Materialien, die mehr Zeit zum " "Schrumpfen auf ihre ursprüngliche Größe brauchen." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "bis" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "" @@ -14539,10 +13998,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "Umschalten der Spiegelung der %c-Achse" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "zu viele Dateien" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "Zu viele überlappende Löcher." @@ -14596,6 +14051,10 @@ msgstr "" "Hinweis zur Ober-/Bodenschalestärke: Nicht verfügbar wegen ungültiger " "Schichthöhe." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Ansicht von oben" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "Decke Kontakt Z Abstand" @@ -14617,10 +14076,6 @@ msgstr "Oben ist offen." msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Die obere Schale ist %1% mm stark für eine Schichthöhe von %2% mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "Oberes massives Infill" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14631,10 +14086,6 @@ msgstr "Oberes massives Infill" msgid "Top solid layers" msgstr "Obere massive Schichten" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Ansicht von oben" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Nur oberste Fläche" @@ -14718,6 +14169,34 @@ msgstr "Druckertyp." msgid "Type:" msgstr "Typ:" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "OFFENES SCHLOSS" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert " +"wurden und nicht mehr mit den System- (oder Standard-) Werte für die " +"aktuelle Optionsgruppe identisch sind.\n" +"Klicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die " +"System- (oder Standard-) Werte zurückzusetzen." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und " +"nicht mit der System- (oder Standard-) Einstellung identisch ist.\n" +"Klicken Sie, um den aktuellen Wert auf die System- (oder Standard-) " +"Einstellung zurückzusetzen." + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "" @@ -14763,10 +14242,6 @@ msgstr "Gruppe nicht definieren" msgid "Undefined" msgstr "Undefiniert" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "unbekannter Fehler" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "Unterlauf" @@ -14788,6 +14263,10 @@ msgstr[1] "Undo %1$d Aktionen" msgid "Undo / Redo is processing" msgstr "Undo / Redo arbeitet" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Undo Verlauf" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "Rücknahme der Desktop Integration fehlgeschlagen." @@ -14796,10 +14275,6 @@ msgstr "Rücknahme der Desktop Integration fehlgeschlagen." msgid "Undo desktop integration was successful." msgstr "Die Desktop-Integration wurde erfolgreich rückgängig gemacht." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Undo Verlauf" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14811,10 +14286,6 @@ msgstr "" "Pfeile klicken können, um den Änderungsverlauf zu sehen und mehrere " "Aktionen auf einmal rückgängig zu machen oder wiederherzustellen?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "unerwartete dekomprimierte Größe" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14831,10 +14302,6 @@ msgstr "Unbekannter Fehler aufgetreten" msgid "Unknown error occured during exporting G-code." msgstr "Unbekannter Fehler trat beim Exportieren von G-Code auf." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "entladen wird" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "Entladegeschwindigkeit" @@ -14843,34 +14310,6 @@ msgstr "Entladegeschwindigkeit" msgid "Unloading speed at the start" msgstr "Entladegeschwindigkeit zu Beginn" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "OFFENES SCHLOSS" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert " -"wurden und nicht mehr mit den System- (oder Standard-) Werte für die " -"aktuelle Optionsgruppe identisch sind.\n" -"Klicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die " -"System- (oder Standard-) Werte zurückzusetzen." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und " -"nicht mit der System- (oder Standard-) Einstellung identisch ist.\n" -"Klicken Sie, um den aktuellen Wert auf die System- (oder Standard-) " -"Einstellung zurückzusetzen." - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Nicht gespeicherte Änderungen" @@ -14879,26 +14318,6 @@ msgstr "Nicht gespeicherte Änderungen" msgid "Unselect gizmo or clear selection" msgstr "Gizmo abwählen oder Auswahl löschen" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "nicht unterstützte zentrale Verzeichnisgröße" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "nicht unterstützte Verschlüsselung" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "nicht unterstützte Funktion" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "nicht unterstützte Methode" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "nicht unterstütztes Multidisk-Archiv" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "Nicht unterstützte OpenGL Version" @@ -14912,10 +14331,6 @@ msgstr "Nicht unterstützte Auswahl" msgid "Untitled" msgstr "Unbenannt" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "bis zu" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "Ein Update ist verfügbar" @@ -14987,6 +14402,10 @@ msgstr "" "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden " "Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Verwende Retina Auflösung für die 3D Anzeige" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Einen anderen Extruder verwenden" @@ -15039,10 +14458,6 @@ msgstr "Benutze perspektivische Kamera" msgid "Use relative E distances" msgstr "Relative Abstände für Extrusion benutzen" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Verwende Retina Auflösung für die 3D Anzeige" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "Systemmenü für Anwendung verwenden" @@ -15068,15 +14483,6 @@ msgstr "" msgid "Use volumetric E" msgstr "Volumetrisches E benutzen" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "genutzt" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Genutztes Filament" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Filamentbedarf (g)" @@ -15105,6 +14511,11 @@ msgstr "Benutztes Material (ml)" msgid "Used Material (unit)" msgstr "Benutztes Material (Einheit)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Genutztes Filament" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Benutzer" @@ -15115,10 +14526,6 @@ msgstr "Benutzer" msgid "User presets" msgstr "Benutzerdefinierte Voreinstellungen" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "Überprüfung fehlgeschlagen" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "Der Wert ist gleich wie die Systemeinstellung" @@ -15139,6 +14546,11 @@ msgstr "Werte in dieser Spalte sind für den normalen Modus" msgid "Values in this column are for Stealth mode" msgstr "Werte in dieser Spalte sind für den Stealth Modus" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Variable Schichthöhe" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -15152,11 +14564,6 @@ msgstr "" "glätten können? Versuchen Sie es mit demWerkzeug für variable " "Schichthöhen. (Nicht verfügbar für SLA-Drucker.)" -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Variable Schichthöhe" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Variable Schichthöhe - Adaptiv" @@ -15173,14 +14580,6 @@ msgstr "Variable Schichthöhe - Zurücksetzen" msgid "Variable layer height - Smooth all" msgstr "Variable Schichthöhe - Alles glätten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "Varianten" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "Hersteller" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Hersteller:" @@ -15194,18 +14593,14 @@ msgstr "Ausführlicher G-Code" msgid "Version" msgstr "Version" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "Version" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Vertikaler Schieberegler" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "Vertikale Konturhüllen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Vertikaler Schieberegler" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15283,6 +14678,39 @@ msgstr "Volumetrische Flussrate (mm³/s)" msgid "Volumetric speed" msgstr "Volumengeschwindigkeit" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "WARNUNG:" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "WEISSER PUNKT" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "" +"Das Symbol mit dem WEISSEN PUNKT zeigt eine Nicht-System- (oder nicht " +"standardmäßige) Voreinstellung an." + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"Das Symbol WEISSER PUNKT zeigt an, dass die Einstellungen dieselben sind wie " +"in der zuletzt gespeicherten Voreinstellung für die aktuelle Optionsgruppe." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"Das Symbol WEISSER PUNKT zeigt an, dass der Wert identisch ist mit " +"demjenigen in der zuletzt gespeicherten Voreinstellung." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Wandstärke" @@ -15295,13 +14723,6 @@ msgstr "Wandstärke" msgid "Warning" msgstr "Warnung" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "WARNUNG:" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15361,10 +14782,6 @@ msgstr "" "die Aktion auswählen können, die mit der zu ladenden Datei ausgeführt werden " "soll." -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "während dem Druck" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15459,32 +14876,6 @@ msgstr "" "Extruder diese zusätzliche Menge an Filament ausgeben. Diese Einstellung " "wird selten benötigt." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "WEISSER PUNKT" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "" -"Das Symbol mit dem WEISSEN PUNKT zeigt eine Nicht-System- (oder nicht " -"standardmäßige) Voreinstellung an." - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"Das Symbol WEISSER PUNKT zeigt an, dass die Einstellungen dieselben sind wie " -"in der zuletzt gespeicherten Voreinstellung für die aktuelle Optionsgruppe." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"Das Symbol WEISSER PUNKT zeigt an, dass der Wert identisch ist mit " -"demjenigen in der zuletzt gespeicherten Voreinstellung." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "Ganzes Wort" @@ -15530,6 +14921,11 @@ msgstr "" msgid "Wipe" msgstr "Reinigen" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "Reinigungsturm" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "Dieses Objekt zum Reinigen verwenden" @@ -15548,15 +14944,6 @@ msgstr "Wischoptionen" msgid "Wipe tower" msgstr "Reinigungsturm" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "Reinigungsturm" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "Reinigungsturm" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "Reinigungsturm - Anpassung des Reinigungsvolumens" @@ -15581,10 +14968,6 @@ msgstr "Rotationswinkel des Reinigungsturms bezogen auf die X-Achse." msgid "Wipe while retracting" msgstr "Während Einzug reinigen" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "mit einer Volumenrate von" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15635,10 +15018,6 @@ msgstr "" "\n" "Aktualisierte Konfigurationssammlungen:" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "Schreibabruf fehlgeschlagen" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "Schreibt Informationen über das Modell auf die Konsole." @@ -15651,6 +15030,10 @@ msgstr "Ungültiges Kennwort" msgid "X coordinate of the left front corner of a wipe tower" msgstr "X-Koordinate der linken vorderen Ecke des Reinigungsturms" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "XY-Größenausgleich" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "XY-Abstand zwischen einem Objekt und seinen Stützen" @@ -15664,10 +15047,6 @@ msgstr "" "angegeben (z.B. 50%), wird der Abstand von der Breite der Außenkontur " "ausgehend berechnet." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "XY-Größenausgleich" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y-Koordinate der linken vorderen Ecke des Reinigungsturms" @@ -15730,6 +15109,10 @@ msgstr "" "Sie können hier Ihre persönlichen Notizen eingeben. Der Text wird dem " "Header vom G-Code hinzugefügt." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "Sie können Ihre Notizen zum SLA Druckmaterial hier eingeben." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "Sie können Ihre Notizen zum Filament hier eingeben." @@ -15738,10 +15121,6 @@ msgstr "Sie können Ihre Notizen zum Filament hier eingeben." msgid "You can put your notes regarding the printer here." msgstr "Sie können Ihre Bemerkungen zum Drucker hier eingeben." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "Sie können Ihre Notizen zum SLA Druckmaterial hier eingeben." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -15979,6 +15358,623 @@ msgstr "" "Auf ausgewähltes Objekt zoomen\n" "oder alle Objekte in der Szene, wenn keines ausgewählt ist" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "über" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "aktiv" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "Allokation fehlgeschlagen" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "ungefähre Sekunden" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "Archiv ist zu groß" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "basiert auf Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "Puffer zu klein" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "mit dem Maximum des Druckerprofils" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "Komprimierung fehlgeschlagen" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "weiter" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "Entpacken fehlgeschlagen oder Archiv defekt" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "Standard" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "Standard-SLA-Materialprofil" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "Standard-SLA-Druckprofil" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "Standardfarbe" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "Standard-Filamentprofil" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "Standard-Druckprofil" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "Standardwert" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "löschen" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "weicht von der Originaldatei ab" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "enthält keinen gültigen G-Code." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "außer für die ersten %1% Schichten." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "außer für die erste Schicht." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "Außenkonturen" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "Zentrales Verzeichnis nicht gefunden" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "Filament" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "Filamente" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "Dateischließen fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "Dateierzeugen fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "Datei nicht gefunden" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "Öffnen der Datei fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "Dateilesen fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "Dateizugriff fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "Zugriff auf Dateieigenschaften fehlgeschlagen" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "Datei zu groß" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "Schreiben der Datei fehlgeschlagen" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "die Durchflussmenge ist am Maximum" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"Beim linken Knopf: zeigt eine Nicht-System- (oder Nicht-Standard-) " +"Einstellung an.\n" +"Beim rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "von" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "vollständiger Profilname" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "erzeugte Warnungen" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "in" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"zeigt an, dass einige Einstellungen geändert wurden und nicht mit den " +"System- (oder Standard-) Werten für die aktuelle Optionsgruppe " +"übereinstimmen.\n" +"Klicken Sie auf das Symbol GEÖFFNETES SCHLOSS, um alle Einstellungen für die " +"aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für " +"die aktuelle Optionsgruppe übereinstimmen" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt " +"gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen.\n" +"Klicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die " +"aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "Infill" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "interner Fehler" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "ungültiger Dateiname" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "ungültiger Dateiheader oder Archiv ist beschädigt" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "ungültiger Parameter" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "basiert auf Slic3r von Alessandro Ranellucci und der RepRap Community." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "ist unter der Lizenz der" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "Schichten" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "geladen wird" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "max PrusaSlicer Version" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "min PrusaSlicer Version" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (Null zum Deaktivieren)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm oder %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm oder % (Null zum Deaktivieren)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s oder %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "Modell" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "geändert" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "Kosten/Flasche" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "Kosten/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "Normaler Modus" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "kein ZIP Archiv" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "Düse" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "Objekt" +msgstr[1] "Objekte" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "Objekte" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "des aktuellen Objekts" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "oder drücken Sie die Taste \"+\"" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "Parametername" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "Außenkonturen" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "Druck" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "Drucker" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "Druckermodell" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "Entfernen" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "benötigt max. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "benötigt min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "benötigt min. %s und max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "s" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "Massives Infill" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "Stealth Modus" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "Stützen" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "Schnittstelle zu den Stützen" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "Stützen und Grundschicht" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "symbolischer Profilname" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "die folgenden Zeichen sind nicht erlaubt:" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "das folgenden Suffix ist nicht erlaubt:" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "bis" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "zu viele Dateien" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "Oberes massives Infill" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "unbekannter Fehler" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "unerwartete dekomprimierte Größe" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "entladen wird" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "nicht unterstützte zentrale Verzeichnisgröße" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "nicht unterstützte Verschlüsselung" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "nicht unterstützte Funktion" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "nicht unterstützte Methode" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "nicht unterstütztes Multidisk-Archiv" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "bis zu" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "genutzt" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "Überprüfung fehlgeschlagen" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "Varianten" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "Hersteller" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "Version" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "während dem Druck" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "Reinigungsturm" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "mit einer Volumenrate von" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "Schreibabruf fehlgeschlagen" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -17139,6 +17135,10 @@ msgstr "AddToPropertyCollection aufgerufen ohne gültigen adder" msgid "Adding book %s" msgstr "Buch %s wird hinzugefügt" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "Erweitert" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Nach einem Absatz:" @@ -17406,6 +17406,10 @@ msgstr "Rahmen" msgid "Borders" msgstr "Rahmen" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Unten" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Unterer Rand (mm)" @@ -18225,6 +18229,10 @@ msgstr "In Zwischenablage kopiert:„%s“" msgid "Copies:" msgstr "Kopien:" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Kopieren" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Auswahl kopieren" diff --git a/resources/localization/en/PrusaSlicer_en.po b/resources/localization/en/PrusaSlicer_en.po index 23e8b93b80..c70eeaf393 100644 --- a/resources/localization/en/PrusaSlicer_en.po +++ b/resources/localization/en/PrusaSlicer_en.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -543,7 +543,7 @@ msgstr "" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "" @@ -551,17 +551,17 @@ msgstr "" msgid "filaments" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "" @@ -620,7 +620,7 @@ msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "" @@ -705,7 +705,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "" @@ -794,7 +794,7 @@ msgstr "" "an update is applied." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "" @@ -1080,7 +1080,7 @@ msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "" @@ -1144,7 +1144,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1591,8 +1591,8 @@ msgid "parameter name" msgstr "" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "" @@ -1982,7 +1982,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "" @@ -2251,7 +2251,7 @@ msgid "Add..." msgstr "" #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "" @@ -3127,25 +3127,25 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " "not be affected." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3157,7 +3157,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3166,19 +3166,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3188,53 +3188,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3247,291 +3247,291 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3637,7 +3637,7 @@ msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3647,7 +3647,7 @@ msgid "Advanced" msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3661,8 +3661,8 @@ msgid "Supports" msgstr "" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3672,8 +3672,8 @@ msgstr "" msgid "Pad" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3776,7 +3776,7 @@ msgstr "" msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3802,19 +3802,19 @@ msgstr "" msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4075,7 +4075,7 @@ msgstr "" msgid "Loading" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4494,7 +4494,7 @@ msgstr "" msgid "Delete Option %s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "" @@ -4613,18 +4613,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4784,11 +4784,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "" @@ -4829,11 +4829,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "" @@ -5214,7 +5214,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "" @@ -5326,29 +5326,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5858,7 +5858,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -5967,9 +5967,9 @@ msgstr "" msgid "Save zip file as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "" @@ -6230,7 +6230,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6256,8 +6256,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "" @@ -6513,12 +6513,12 @@ msgstr "" msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "" @@ -6625,7 +6625,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "" @@ -6633,7 +6633,7 @@ msgstr "" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6643,12 +6643,12 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6659,11 +6659,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6676,15 +6676,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6697,180 +6697,180 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6878,171 +6878,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "" @@ -7159,7 +7159,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7173,7 +7173,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7184,7 +7184,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7687,11 +7687,11 @@ msgstr "" msgid "Upload to Printer Host with the following filename:" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7700,18 +7700,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "" @@ -8147,7 +8147,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "" @@ -8231,11 +8231,11 @@ msgstr "" msgid "Flow" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "" @@ -8247,11 +8247,11 @@ msgstr "" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "" @@ -8259,19 +8259,20 @@ msgstr "" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "" @@ -8346,7 +8347,7 @@ msgid "Ramming settings" msgstr "" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "" @@ -8384,8 +8385,8 @@ msgstr "" msgid "Size and coordinates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "" @@ -8450,11 +8451,11 @@ msgstr "" msgid "Tilt time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "" @@ -8609,69 +8610,73 @@ msgstr "" msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8679,23 +8684,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8703,13 +8708,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8717,17 +8722,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "WHITE BULLET icon indicates a non-system (or non-default) preset." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8735,253 +8740,254 @@ msgid "" "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" "Click to reset current value to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 -msgid "" -"You will not be asked about the unsaved changes in presets the next time you " -"create new project" -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " -"switch a preset" +"create new project" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" +"You will not be asked about the unsaved changes in presets the next time you " +"switch a preset" +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 +msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" "- Closing PrusaSlicer while some presets are modified,\n" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9743,116 +9749,116 @@ msgstr "" msgid "write calledback failed" msgstr "" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "" -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "" -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" msgstr "" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" msgstr "" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "" -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "One or more objects were assigned an extruder that the printer does not have." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -9860,13 +9866,13 @@ msgid "" "same diameter." msgstr "" -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." msgstr "" -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -9874,27 +9880,46 @@ msgid "" "set to 0)." msgstr "" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "" diff --git a/resources/localization/es/PrusaSlicer.mo b/resources/localization/es/PrusaSlicer.mo index 354de3a952..69f4dba572 100644 Binary files a/resources/localization/es/PrusaSlicer.mo and b/resources/localization/es/PrusaSlicer.mo differ diff --git a/resources/localization/es/PrusaSlicer_es.po b/resources/localization/es/PrusaSlicer_es.po index 5ee9598d9c..2504c45420 100644 --- a/resources/localization/es/PrusaSlicer_es.po +++ b/resources/localization/es/PrusaSlicer_es.po @@ -5,7 +5,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -16,6 +16,22 @@ msgstr "" "\"%1%\" está desactivado porque \"%2%\" está en la categoría \"%3%\".\n" "Para activar \"%1%\", por favor desactiva \"%2%\"" +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"Se encontró \"G92 E0\" en before_layer_gcode, que es incompatible con el " +"direccionamiento absoluto del extrusor." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"Se encontró \"G92 E0\" en layer_gcode, que es incompatible con el " +"direccionamiento absoluto del extrusor." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -31,6 +47,13 @@ msgid_plural "%1$d backward edges" msgstr[0] "%1$d borde de retroceso" msgstr[1] "%1$d bordes de retroceso" +#: src/slic3r/GUI/GUI_ObjectList.cpp:415 +#, c-format, boost-format +msgid "%1$d degenerate facet" +msgid_plural "%1$d degenerate facets" +msgstr[0] "%1$d faceta degenerada" +msgstr[1] "%1$d facetas degeneradas" + #: src/slic3r/GUI/GUI_ObjectList.cpp:417 #, c-format, boost-format msgid "%1$d edge fixed" @@ -101,6 +124,12 @@ msgid_plural "%1% (%2$d shells)" msgstr[0] "%1% (%2$d carcasa)" msgstr[1] "%1% (%2$d carcasas)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% Preset" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -110,12 +139,6 @@ msgstr "" "%1% marcados con un * no son compatible con algunas de las " "impresoras instaladas." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% Preset" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -176,6 +199,16 @@ msgstr "%s - CAMBIO IMPORTANTE" msgid "%s - Drop project file" msgstr "%s - Soltar archivo de proyecto" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "%s Familia" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "%s Tipo de vista" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -191,11 +224,6 @@ msgstr "%s no permite porcentajes" msgid "%s error" msgstr "%s error" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "%s Familia" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -206,6 +234,17 @@ msgstr "%s tiene un aviso" msgid "%s has encountered an error" msgstr "%s ha ocurrido un error" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"%s ha encontrado un error. Probablemente fue causado por quedarse sin " +"memoria. Si estás seguro de tener suficiente RAM en su sistema, esto también " +"puede ser un error y nos complacería que lo informaras." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -221,17 +260,6 @@ msgstr "" "\n" "La aplicación se cerrará." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"%s ha encontrado un error. Probablemente fue causado por quedarse sin " -"memoria. Si estás seguro de tener suficiente RAM en su sistema, esto también " -"puede ser un error y nos complacería que lo informaras." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -279,11 +307,6 @@ msgstr "" "Por favof, continúa con el %s que sigue para establecer los nuevos ajustes y " "seleccionar si quieres que estos se actualicen automáticamente." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "%s Tipo de vista" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -436,22 +459,14 @@ msgstr "&Ventana" msgid "(All)" msgstr "(Todo)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(incluyendo la bobina)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(mínimo)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "(Re)Laminar A&hora" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Re)laminar" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "(Re)Laminar A&hora" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(Algunas líneas no se muestran)" @@ -460,6 +475,14 @@ msgstr "(Algunas líneas no se muestran)" msgid "(Unknown)" msgstr "(Desconocido)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(incluyendo la bobina)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(mínimo)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") no encontrado." @@ -520,10 +543,6 @@ msgstr "3 (pesado)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "Vista editor 3D" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "Panal de abeja 3D" @@ -532,6 +551,10 @@ msgstr "Panal de abeja 3D" msgid "3D Mouse disconnected." msgstr "Ratón 3D desconectado." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "Vista editor 3D" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "Ajustes 3Dconnexion" @@ -572,10 +595,6 @@ msgstr "" "Se creará una copia del preajuste del sistema actual, que se separará del " "preajuste del sistema." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Un nuevo filamento se instaló y se activará." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "Una nueva Impresora se instaló y se activará." @@ -584,6 +603,10 @@ msgstr "Una nueva Impresora se instaló y se activará." msgid "A new SLA material was installed and it will be activated." msgstr "Un nuevo material SLA se instaló y se activará." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Un nuevo filamento se instaló y se activará." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -619,6 +642,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "Ha sido detectada una trayectoria fuera del área de impresión." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "Clave API / Contraseña" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "Clave API" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "Abortar" @@ -628,10 +659,6 @@ msgstr "Abortar" msgid "About %s" msgstr "Acerca de %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "sobre" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Encima de Z" @@ -664,10 +691,6 @@ msgstr "Activar" msgid "Active" msgstr "Activo" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "activo" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adaptativa" @@ -699,6 +722,60 @@ msgstr "" "Añade \"%1%\" como siguiente ajuste preestablecido para la impresora física " "\"%2%\"" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "Añadir Subobjeto Genérico" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "Añadir Rango de Alturas" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "Añadir instancia del objeto seleccionado" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "Añadir Capas" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "Añadir Conjunto de Ajustes para Rango de Alturas" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "Añadir Conjunto de Ajustes para Objeto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "Añadir Conjunto de Ajustes para Sub-objeto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "Añadir Ajustes para Capas" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "Agregar Ajustes para Objeto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "Agregar Ajustes para Sub-objeto" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "Añadir forma" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "Añadir Forma desde la Galería" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "Añadir Formas desde la Galería" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Añade un pad debajo del modelo compatible" @@ -768,33 +845,15 @@ msgstr "Añadir cambio de extrusor - Clic izquierdo" msgid "Add extruder to sequence" msgstr "Añadir extrusor a la secuencia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "Añadir Subobjeto Genérico" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "Añadir Rango de Alturas" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "Añadir instancia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "Añadir instancia del objeto seleccionado" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "Añadir rango de capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "Añadir Capas" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "Añadir modificador" @@ -854,42 +913,6 @@ msgstr "Añadir la(s) forma(s) seleccionada(s) a la base" msgid "Add settings" msgstr "Añadir ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "Añadir Conjunto de Ajustes para Rango de Alturas" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "Añadir Conjunto de Ajustes para Objeto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "Añadir Conjunto de Ajustes para Sub-objeto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "Añadir Ajustes para Capas" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "Agregar Ajustes para Objeto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "Agregar Ajustes para Sub-objeto" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "Añadir forma" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "Añadir Forma desde la Galería" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "Añadir Formas desde la Galería" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -944,14 +967,14 @@ msgstr "Añadir/Quitar ajustes preestablecidos" msgid "Add/Remove printers" msgstr "Añade/Quita impresoras" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Información adicional:" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Ajustes adicionales" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Información adicional:" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -964,26 +987,19 @@ msgstr "" msgid "Address" msgstr "Dirección" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" msgstr "Avanzado" -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "Modo avanzado" - #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "Modo vista avanzada" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "Modo avanzado" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "Avanzado: Registro de salida" @@ -1008,14 +1024,14 @@ msgstr "" msgid "After layer change G-code" msgstr "Código G tras un cambio de capa" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Alinear el modelo a un punto dado." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Alinear XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Alinear el modelo a un punto dado." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Alineado" @@ -1082,10 +1098,6 @@ msgstr "Se borrarán todos los ajustes del usuario." msgid "All walls" msgstr "Todas las paredes" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "asignación fallida" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "Permitir una sola instancia de PrusaSlicer" @@ -1178,6 +1190,10 @@ msgstr "" "Un objeto tiene reforzadores de soporte personalizados que no se utilizarán " "porque los soportes están desactivados." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "Se detectó un objeto fuera del área de impresión." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1186,10 +1202,6 @@ msgstr "" "Se detectó un objeto fuera del área de impresión.\n" "Resuelve el problema actual para seguir laminando." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "Se detectó un objeto fuera del área de impresión." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "Se ha producido un error inesperado" @@ -1209,14 +1221,6 @@ msgid "" msgstr "" "Cualquier modificación debe guardarse como un nuevo preset heredado de este." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "Clave API" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "Clave API / Contraseña" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Preferencias de la aplicación" @@ -1239,18 +1243,10 @@ msgstr "Aplicar el cambio de color automáticamente" msgid "Apply to all the remaining small objects being loaded." msgstr "Aplicar a todos los objetos pequeños restantes que se cargan." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "segundos aproximadamente" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Acordes de Arquímedes" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "el archivo es demasiado grande" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1282,6 +1278,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "¿Estás seguro de que quieres borrar la impresora \"%1%\"?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "¿Está seguro de que quiere eliminar todas las sustituciones?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "¿Estás seguro de que quieres hacerlo?" @@ -1533,14 +1533,22 @@ msgstr "Salir en caso de valores de configuración desconocidos" msgid "Balanced" msgstr "Balanceado" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "basado en Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Base" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "Forma de la base de impresión" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "Tamaño y forma de la base" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Temperatura de la base:" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "Modelo de base personalizado" @@ -1557,18 +1565,10 @@ msgstr "Relleno de base cancelado." msgid "Bed filling done." msgstr "Relleno de la base realizado." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "Forma de la base de impresión" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "Forma de la base de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "Tamaño y forma de la base" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Temperatura de la base" @@ -1582,10 +1582,6 @@ msgstr "" "Ajusta esto a cero para deshabilitar los comandos de control de temperatura " "de la base calefactable en la salida." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Temperatura de la base:" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1595,14 +1591,14 @@ msgstr "Código G para antes del cambio de capa" msgid "Before roll back" msgstr "Antes de volver atrás" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Por debajo del objeto" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "Por debajo de Z" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Por debajo del objeto" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "La mejor calidad de superficie" @@ -1641,14 +1637,15 @@ msgstr "Volumen de la botella" msgid "Bottle weight" msgstr "Peso botella" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" msgstr "Inferior" +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Vista inferior" + #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" msgstr "Distancia Z de contacto inferior " @@ -1675,10 +1672,6 @@ msgstr "" msgid "Bottom solid layers" msgstr "Capas sólidas inferiores" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Vista inferior" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1777,10 +1770,6 @@ msgstr "Tamaño del pincel" msgid "Bucket fill" msgstr "Relleno de cubos" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "buffer demasiado pequeño" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1806,18 +1795,30 @@ msgstr "" "Nota: Este nombre se puede cambiar posteriormente en los ajustes de " "impresora física" -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "por el máximo perfil de impresión" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "CANCELADO" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "COMPLETADO" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "Comprobación con CRC-32 fallida" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"CURL init ha fallado. PrusaSlicer no podrá establecer conexiones de red. " +"Consulta los registros para obtener detalles adicionales." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Cámara" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Vista de cámara" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1828,6 +1829,10 @@ msgstr "" "¿Sabías que puedes utilizar las teclas numéricas 0-6 para cambiar " "rápidamente entre los ángulos de cámara predefinidos?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Vista de cámara" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "No se puede aplicar cuando la vista previa del proceso." @@ -1850,10 +1855,6 @@ msgstr "Cancelar selección" msgid "Cancel upload" msgstr "Cancelar subida" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "CANCELADO" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "Cancelado" @@ -1956,30 +1957,10 @@ msgstr "Archivos de certificados (*.crt, *.pem)|*.crt;*.pem|Todos|*.*" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "Cambia \"%1%\" a \"%2%\" para esta impresora física \"%3%\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "Cambiar tipo de cámara (perspectiva, ortográfica)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "Cambiar diámetro orificio de drenaje" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "Cambiar extrusor" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "Cambiar Extrusor" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "Cambiar extrusor (N/A)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "Cambiar color del extrusor" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "Cambiar Extrusores" @@ -1993,6 +1974,26 @@ msgstr "Cambiar opción %s" msgid "Change Part Type" msgstr "Cambiar Tipo de Pieza" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "Cambiar tipo de cámara (perspectiva, ortográfica)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "Cambiar diámetro orificio de drenaje" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "Cambiar extrusor" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "Cambiar extrusor (N/A)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "Cambiar color del extrusor" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "Cambiar diámetro de la cabeza de punta" @@ -2029,6 +2030,10 @@ msgstr "" "El cambio de algunas opciones hará que se reinicie la aplicación.\n" "Se perderá el contenido de la plataforma." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Comprobación de las Actualizaciones de la Configuración" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Comprueba si hay actualizaciones de la aplicación" @@ -2037,9 +2042,9 @@ msgstr "Comprueba si hay actualizaciones de la aplicación" msgid "Check for configuration updates" msgstr "Comprueba si hay actualizaciones de configuración" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Comprobación de las Actualizaciones de la Configuración" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "Elegir archivo SLA:" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2058,6 +2063,10 @@ msgstr "Escoge un archivo STL para importar el modelo de la base de impresión:" msgid "Choose an STL file to import bed shape from:" msgstr "Escoge un archivo STL para importar la forma de la base:" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Elije un archivo PNG:" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Selecciona un archivo (3MF/AMF):" @@ -2074,14 +2083,6 @@ msgstr "Elije uno o varios archivos (STL, OBJ):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Escoje uno o más archivos (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Elije un archivo PNG:" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "Elegir archivo SLA:" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Selecciona el tipo de firmware que usa tu impresora." @@ -2096,10 +2097,6 @@ msgstr "Círculo" msgid "Circular" msgstr "Circular" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Borrar todo" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Borrar la pila de Deshacer / Rehacer en el nuevo proyecto" @@ -2111,6 +2108,10 @@ msgstr "" "Borrar la pila de Deshacer / Rehacer en un nuevo proyecto o cuando se carga " "un proyecto existente." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Borrar todo" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "Clic con botón derecho del ratón para abrir/cerrar Historia" @@ -2163,11 +2164,6 @@ msgstr "Cerrar" msgid "Close holes" msgstr "Cerrar agujeros" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Distancia de cierre" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "Cerrando PrusaSlicer mientras se modifican algunos ajustes." @@ -2176,6 +2172,11 @@ msgstr "Cerrando PrusaSlicer mientras se modifican algunos ajustes." msgid "Closing PrusaSlicer. Current project is modified." msgstr "Cerrando PrusaSlicer. Se modifica el proyecto actual." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Distancia de cierre" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "Radio de cierre" @@ -2192,6 +2193,15 @@ msgstr "Ocultar/Expandir barra lateral" msgid "Color" msgstr "Color" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "Código G Cambio Color" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Color Print" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "Cambio de color" @@ -2206,10 +2216,6 @@ msgstr "Cambio de color (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Cambio de color (\"%1%\") para el Extrusor %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "Código G Cambio Color" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "Código G Cambio color" @@ -2218,11 +2224,6 @@ msgstr "Código G Cambio color" msgid "Color changes" msgstr "Cambios de color" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Color Print" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Altura de Colorprint" @@ -2256,15 +2257,15 @@ msgstr "Comandos" msgid "Comment:" msgstr "Comentario:" -#: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" -msgstr "Comparar justes" - #: src/slic3r/GUI/MainFrame.cpp:1417 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 msgid "Compare Presets" msgstr "Comparar Ajustes" +#: src/slic3r/GUI/MainFrame.cpp:1417 +msgid "Compare presets" +msgstr "Comparar justes" + #: src/slic3r/GUI/Tab.cpp:216 msgid "Compare this preset with some another" msgstr "Comparar este ajuste con algún otro" @@ -2297,14 +2298,6 @@ msgstr "Completar objetos individuales" msgid "Completed" msgstr "Completado" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "COMPLETADO" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "compresión fallida" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2322,6 +2315,23 @@ msgstr "Ayudante de co&nfiguración" msgid "Configuration Assistant" msgstr "Asistente de Configuración" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Instantáneas de la Configuración" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"La actualización de la configuración hace que se pierda la modificación de " +"los ajustes.\n" +"Por lo tanto, comprueba los cambios no guardados y guárdalos si es necesario." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Asistente de configuración" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2364,10 +2374,6 @@ msgstr "" "instantáneas utilizando la opción de Configuración - Menú de Instantáneas " "de la configuración." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Instantáneas de la Configuración" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Actualización de configuración" @@ -2384,19 +2390,6 @@ msgstr "Disponible la actualización de la configuración." msgid "Configuration updates" msgstr "Actualizaciones de la configuración" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"La actualización de la configuración hace que se pierda la modificación de " -"los ajustes.\n" -"Por lo tanto, comprueba los cambios no guardados y guárdalos si es necesario." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Asistente de configuración" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Confirmación" @@ -2466,11 +2459,6 @@ msgstr "" msgid "Connection to OctoPrint works correctly." msgstr "La conexión a OctoPrint funciona correctamente." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "" -"Falló la conexión a las impresoras conectadas a través del host de impresión." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "La conexión con la Prusa SL1 / SL1S funciona correctamente." @@ -2483,9 +2471,10 @@ msgstr "La conexión con PrusaLink funciona correctamente." msgid "Connection to Repetier works correctly." msgstr "La conexión con Repetier funciona correctamente." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "continuar" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "" +"Falló la conexión a las impresoras conectadas a través del host de impresión." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2573,25 +2562,26 @@ msgstr "Posición del tubo de refrigeración" msgid "Copies of the selected object" msgstr "Copias del objeto seleccionado" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" msgstr "Copiar" +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Copiar Información de Versión" + #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Copiar selección al portapapeles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Copiar al portapapeles" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Copiar Información de Versión" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2745,10 +2735,6 @@ msgstr "" "puede reducir la resolución de la impresión, por lo tanto es aconsejable " "mantener ese valor razonablemente bajo." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "Comprobación con CRC-32 fallida" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "Crear pad alrededor del objeto e ignorar la elevación del soporte" @@ -2787,14 +2773,6 @@ msgstr "Ctrl + Rueda del ratón" msgid "Cubic" msgstr "Cúbico" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"CURL init ha fallado. PrusaSlicer no podrá establecer conexiones de red. " -"Consulta los registros para obtener detalles adicionales." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2912,10 +2890,6 @@ msgstr "Zona muerta:" msgid "Decimate ratio" msgstr "Relación de decimación" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "descompresión fallida o archivo está dañado" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Reducir Instancias" @@ -2926,16 +2900,9 @@ msgstr "Reducir Instancias" msgid "Default" msgstr "Por defecto" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "por defecto" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "Perfil de material de SLA predeterminado" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2952,18 +2919,10 @@ msgstr "" msgid "Default color" msgstr "Color predeterminado" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "color predeterminado" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "Ancho de extrusión por defecto" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "perfil de filamento por defecto" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "Perfil de filamento por defecto" @@ -2978,10 +2937,6 @@ msgstr "" "Al seleccionar el perfil de impresora actual se activará este perfil de " "filamento." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "perfil de impresión por defecto" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "Perfil de impresión por defecto" @@ -2997,22 +2952,6 @@ msgstr "" "Al seleccionar el perfil de impresora actual se activará este perfil de " "impresión." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "perfil de material de SLA por defecto" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "Perfil de material de SLA predeterminado" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "perfil de impresión de SLA por defecto" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "valor por defecto" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "Definir un perfil de impresora personalizado" @@ -3034,10 +2973,6 @@ msgstr "" msgid "Delay after unloading" msgstr "Retardo tras la descarga" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "borra" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3048,11 +2983,6 @@ msgstr "Borra" msgid "Delete &All" msgstr "Borrar &Todo" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "Eliminar todo" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "Eliminar todas las instancias del Objeto" @@ -3061,22 +2991,6 @@ msgstr "Eliminar todas las instancias del Objeto" msgid "Delete All Objects" msgstr "Borrar Todos Los Objetos" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "Eliminar cambio de color" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "Eliminar marcador de cambio de color para la capa actual" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "Eliminar código G personalizado" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "Eliminar orificio de drenaje" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "Eliminar Rango de Alturas" @@ -3089,33 +3003,15 @@ msgstr "Eliminar Instancia" msgid "Delete Object" msgstr "Eliminar Objeto" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"Eliminar una o varias formas personalizadas. No se pueden eliminar las " -"formas del sistema" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "Eliminar Opción %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "Eliminar pausa de impresión" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "Eliminar impresora física" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "Eliminar Impresora Física" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "Eliminar selección" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "Eliminar Selección" @@ -3136,6 +3032,45 @@ msgstr "Eliminar Ajustes" msgid "Delete Subobject" msgstr "Eliminar Subobjeto" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "Eliminar todo" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "Eliminar cambio de color" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "Eliminar marcador de cambio de color para la capa actual" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "Eliminar código G personalizado" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "Eliminar orificio de drenaje" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"Eliminar una o varias formas personalizadas. No se pueden eliminar las " +"formas del sistema" + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "Eliminar pausa de impresión" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "Eliminar impresora física" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "Eliminar selección" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "Borra punto de apoyo" @@ -3213,10 +3148,6 @@ msgstr "Deseleccionar todos los objetos" msgid "Desktop Integration" msgstr "Integración en el escritorio" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "La integración en el escritorio ha fallado." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3228,6 +3159,10 @@ msgstr "" "\n" "Pulse \"Realizar\" para continuar." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "La integración en el escritorio ha fallado." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "La integración en el escritorio ha sido un éxito." @@ -3322,10 +3257,6 @@ msgstr "" "3D, elige Capas y Perímetros y ajusta los valores en el panel derecho. Lee " "más en la documentación." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "difiere del archivo original" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "Dirección" @@ -3502,21 +3433,17 @@ msgstr "¿Quieres guardar los cambios en \"%1%\"?" msgid "Do you want to save your manually edited support points?" msgstr "¿Deseas guardar tus puntos de soporte editados manualmente?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "" -"¿Desea seleccionar filamentos predeterminados para estos modelos de " -"impresoras FFF?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "" "¿Desea seleccionar materiales SLA predeterminados para estos modelos de " "impresora?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "no contiene gcode válido." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "" +"¿Desea seleccionar filamentos predeterminados para estos modelos de " +"impresoras FFF?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3611,10 +3538,37 @@ msgstr "Dinámico" msgid "E&xport" msgstr "E&xportar" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "ERROR" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "ERROR:" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"ERROR: Por favor, cierre primero todos los manipuladores disponibles en la " +"barra de herramientas de la izquierda" + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "ERROR: no hay suficientes recursos para ejecutar el trabajo." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Editar" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Editar Rango de Alturas" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Editar color" @@ -3627,10 +3581,6 @@ msgstr "Editar color actual - Clic derecho en el segmento de color deslizante" msgid "Edit custom G-code" msgstr "Editar código G personalizado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Editar Rango de Alturas" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Editar mensaje de pausa de impresión" @@ -3663,10 +3613,6 @@ msgstr "Se admite la vectorización propia:" msgid "Ejec&t SD Card / Flash Drive" msgstr "Expul&sar Tarjeta SD / Unidad Flash" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "Expulsar la unidad" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "Expulsa la tarjeta SD / disco USB" @@ -3676,6 +3622,10 @@ msgid "Eject SD card / Flash drive after the G-code was exported to it." msgstr "" "Expulsa la tarjeta SD / disco USB después de que se haya exportado a él." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "Expulsar la unidad" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -3982,9 +3932,9 @@ msgstr "" msgid "Error" msgstr "Error" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "ERROR" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Mensaje de Error" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -4003,10 +3953,6 @@ msgstr "Error durante el reemplazo" msgid "Error loading shaders" msgstr "Error al cargar sombras" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Mensaje de Error" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4046,30 +3992,11 @@ msgstr "¡Error!" msgid "Error! Invalid model" msgstr "Error! Modelo inválido" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "ERROR:" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Error: %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "ERROR: no hay suficientes recursos para ejecutar el trabajo." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"ERROR: Por favor, cierre primero todos los manipuladores disponibles en la " -"barra de herramientas de la izquierda" - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4091,15 +4018,6 @@ msgstr "Evento" msgid "Everywhere" msgstr "En todos los sitios" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "a excepción de las %1% primeras capas." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "a excepción de la primera capa." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4148,14 +4066,14 @@ msgstr "" msgid "Expert" msgstr "Experto" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Modo experto" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Modo de visualización experto" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Modo experto" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Exportar" @@ -4176,6 +4094,63 @@ msgstr "Exportar &Movimientos como OBJ" msgid "Export 3MF" msgstr "Exportar 3MF" +#: src/libslic3r/PrintConfig.cpp:4261 +msgid "Export AMF" +msgstr "Exportar AMF" + +#: src/slic3r/GUI/Plater.cpp:2853 +msgid "Export AMF file:" +msgstr "Exportar archivo AMF:" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export Config &Bundle" +msgstr "Exportar Conjunto de A&justes" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export Config Bundle With Physical Printers" +msgstr "Exportar Paquete de Configuración Con Impresoras Físicas" + +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "Exportar Código G." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Exportar código G" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "Exportar código G a la Tarjeta SD / Unidad Flash" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Exportar OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Exportar archivo OBJ:" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Exportar Plataforma como &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Exportar plataforma como STL &Incluyendo Soportes" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Exportar SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Exportar STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Exportar archivo STL:" + #: src/slic3r/GUI/MainFrame.cpp:1260 msgid "Export all presets including physical printers to file" msgstr "" @@ -4186,14 +4161,6 @@ msgstr "" msgid "Export all presets to file" msgstr "Exportar todos los ajustes al archivo" -#: src/libslic3r/PrintConfig.cpp:4261 -msgid "Export AMF" -msgstr "Exportar AMF" - -#: src/slic3r/GUI/Plater.cpp:2853 -msgid "Export AMF file:" -msgstr "Exportar archivo AMF:" - #: src/slic3r/GUI/GUI_Factories.cpp:715 msgid "Export as STL" msgstr "Exportar como STL" @@ -4202,14 +4169,6 @@ msgstr "Exportar como STL" msgid "Export config" msgstr "Exportar configuración" -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export Config &Bundle" -msgstr "Exportar Conjunto de A&justes" - -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export Config Bundle With Physical Printers" -msgstr "Exportar Paquete de Configuración Con Impresoras Físicas" - #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Exportar la configuración actual al archivo" @@ -4237,55 +4196,14 @@ msgstr "" "Exportar nombres de ruta completos de las fuentes de los modelos y de piezas " "a archivos 3mf y amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Exportar código G" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "Exportar código G a la Tarjeta SD / Unidad Flash" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "Exportar Código G." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Exportar OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Exportar archivo OBJ:" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "La exportación de un archivo temporal de 3mf falló" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Exportar Plataforma como &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Exportar plataforma como STL &Incluyendo Soportes" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Exportar SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exportar nombres de ruta completos de las fuentes a 3mf y amf" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Exportar STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Exportar archivo STL:" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Exportar el(los) objeto(s) como 3MF." @@ -4314,6 +4232,10 @@ msgstr "Exportar trayectorias de herramientas como OBJ" msgid "Export." msgstr "Exportar." +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Exportando código G" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Exportando el paquete de configuración" @@ -4322,10 +4244,6 @@ msgstr "Exportando el paquete de configuración" msgid "Exporting finished." msgstr "Exportación finalizada." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Exportando código G" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4353,10 +4271,6 @@ msgstr "Tiempo de exposición" msgid "External perimeter" msgstr "Perímetro externo" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "perímetros externos" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "Perímetros externos" @@ -4402,6 +4316,10 @@ msgstr "Extrusor %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "El Extrusor (herramienta) se cambia al Extrusor \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Color del extrusor" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "El extrusor cambia a" @@ -4410,10 +4328,6 @@ msgstr "El extrusor cambia a" msgid "Extruder clearance" msgstr "Separación del extrusor" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Color del extrusor" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Offset del extrusor" @@ -4435,22 +4349,10 @@ msgstr "Contador de extrusores" msgid "Extrusion" msgstr "Extrusión" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "Eje de extrusión" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "Multiplicador de extrusión" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Temperatura de Extrusión:" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Ancho de extrusión" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4459,6 +4361,22 @@ msgstr "Ancho de extrusión" msgid "Extrusion Width" msgstr "Ancho de Extrusión" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "Eje de extrusión" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "Multiplicador de extrusión" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Ancho de extrusión" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "Impresoras de Tecnología FFF" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Facetas" @@ -4467,10 +4385,6 @@ msgstr "Facetas" msgid "Faded layers" msgstr "Capas descoloridas" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "búsqueda de directorio central fallida" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4493,6 +4407,10 @@ msgstr "No se pudo activar la instantánea de configuración." msgid "Failed to drill some holes into the model" msgstr "Fallo en la perforación de algunos agujeros en el modelo" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "Velocidad Ventilador (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Configuración del ventilador" @@ -4501,10 +4419,6 @@ msgstr "Configuración del ventilador" msgid "Fan speed" msgstr "Velocidad del ventilador" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "Velocidad Ventilador (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4561,19 +4475,41 @@ msgstr "Tipo de función" msgid "Feature types" msgstr "Tipos de funciones" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "Impresoras de Tecnología FFF" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "filamento" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "Diámetro del filamento:" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "Código G Final del Filamento" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "Anulaciones de filamentos" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "Selección Perfiles de Filamento" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Configuración del filamento" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Pestaña Ajustes Filamento" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "Código G Inicial del Filamento" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4584,14 +4520,6 @@ msgstr "Filamento y diámetros de boquilla" msgid "Filament at extruder %1%" msgstr "Filamento en extrusor %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "Diámetro del filamento:" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "Código G Final del Filamento" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4608,36 +4536,14 @@ msgstr "Tiempo de carga de filamento" msgid "Filament notes" msgstr "Notas del filamento" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "Anulaciones de filamentos" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Posición de aparcar el filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "Selección Perfiles de Filamento" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "Propiedades del filamento" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Configuración del filamento" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Pestaña Ajustes Filamento" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "Código G Inicial del Filamento" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Tipo de filamento" @@ -4646,58 +4552,18 @@ msgstr "Tipo de filamento" msgid "Filament unload time" msgstr "Tiempo de descarga del filamento" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "filamentos" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filamentos" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "cierre del archivo fallido" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "creación del archivo fallida" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "El archivo para el reemplazo no fue seleccionado" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "Archivo no encontrado" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "archivo no encontrado" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "apertura de archivo fallida" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "lectura del archivo fallida" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "búsqueda de archivo fallida" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "estadística de archivos fallida" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "archivo demasiado grande" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "escritura del archivo fallida" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "El archivo para el reemplazo no fue seleccionado" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4776,14 +4642,6 @@ msgstr "Terminado" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Flasheador de firmware" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Imagen del firmware:" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Retracción del firmware" @@ -4792,6 +4650,14 @@ msgstr "Retracción del firmware" msgid "Firmware Type" msgstr "Tipo de Firmware" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Flasheador de firmware" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Imagen del firmware:" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "Primer color" @@ -4901,10 +4767,6 @@ msgstr "Flujo" msgid "Flow rate" msgstr "Tasa de flujo" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "se maximiza el flujo de material" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -4974,16 +4836,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Sólo para forzado de soportes" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"para el botón izquierdo: indica un ajuste que no es del sistema (o no " -"predeterminado),\n" -"para el botón derecho: indica que la configuración no se ha modificado." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5039,10 +4891,6 @@ msgstr "Encontradas palabras clave reservadas en" msgid "From" msgstr "Desde" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "desde" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "" @@ -5061,10 +4909,6 @@ msgstr "Vista frontal" msgid "Full fan speed at layer" msgstr "Velocidad máxima del ventilador en la capa" -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "nombre completo perfil" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "Pantalla completa" @@ -5079,6 +4923,12 @@ msgstr "" "¿Sabías que puedes poner el PrusaSlicer en modo de pantalla completa? " "Utiliza la tecla de acceso rápido F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "Piel Difusa" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5092,12 +4942,6 @@ msgstr "" "puedes utilizar modificadores para aplicar la piel difusa sólo a una parte " "de tu modelo." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "Piel Difusa" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "Piel difusa (experimental)" @@ -5114,10 +4958,6 @@ msgstr "Espesor de la piel difusa" msgid "Fuzzy skin type." msgstr "Tipo de Piel difusa." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "Código G" @@ -5160,13 +5000,13 @@ msgstr "Miniaturas de código G" msgid "G-code viewer" msgstr "Visor código G" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero General Public License, versión 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "IU" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5219,10 +5059,6 @@ msgstr "Generar soportes" msgid "Generate supports for the models" msgstr "Generar soportes para los modelos" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "avisos generados" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Generando G-code" @@ -5267,10 +5103,6 @@ msgstr "Generando buffer de vértice" msgid "Generic" msgstr "Genérico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "Herramienta de Corte" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM pintado de costuras" @@ -5279,14 +5111,6 @@ msgstr "Gizmo FDM pintado de costuras" msgid "Gizmo FDM paint-on supports" msgstr "Gizmo Soportes pintables FDM" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Herramienta de Movimiento" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Herramienta de mover: Pulsa para ajustar en pasos de 1 mm" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Gizmo Pintura multimaterial" @@ -5295,6 +5119,26 @@ msgstr "Gizmo Pintura multimaterial" msgid "Gizmo Place face on bed" msgstr "Gizmo Colocar cara en la base" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Herramienta de vaciado SLA" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Herramienta de puntos de soporte SLA" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "Herramienta de Corte" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Herramienta de Movimiento" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Herramienta de mover: Pulsa para ajustar en pasos de 1 mm" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Herramienta de Rotación" @@ -5328,14 +5172,6 @@ msgstr "" "Herramienta de escala: Escala las piezas seleccionadas para ajustarse al " "volumen de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Herramienta de vaciado SLA" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Herramienta de puntos de soporte SLA" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5358,10 +5194,6 @@ msgstr "Gizmo-Escalar" msgid "Gizmos" msgstr "Gizmos" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, versión 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5382,14 +5214,36 @@ msgstr "Agrupar" msgid "Group manipulation" msgstr "Manipulación de grupos" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "IU" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Giroide" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"Estado HTTP: %1%\n" +"Cuerpo del mensaje: \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "Archivo HTTPS CA" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"El archivo HTTPS CA es opcional. Sólo se necesita si vas a usar HTTPS con un " +"certificado auto-firmado." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "Diámetro de la cabeza" @@ -5563,14 +5417,14 @@ msgstr "Cambio del parámetro de vaciar el interior" msgid "Honeycomb" msgstr "Panal de abeja" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "Carcasas horizontales" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Control Deslizante Horizontal" +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "Carcasas horizontales" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5638,40 +5492,14 @@ msgstr "Cómo aplicar límites" msgid "How to apply the Machine Limits" msgstr "Cómo aplicar los Límites Máquina" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"Estado HTTP: %1%\n" -"Cuerpo del mensaje: \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "Archivo HTTPS CA" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"El archivo HTTPS CA es opcional. Sólo se necesita si vas a usar HTTPS con un " -"certificado auto-firmado." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Tamaño del icono respecto al tamaño original" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5708,6 +5536,42 @@ msgstr "" "temporal. Cuando hay un nuevo ajuste disponible, este se podrá incorporar y " "usar cuando la aplicación se vuelva a iniciar." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "Si se activa, PrusaSlicer se abrirá en la posición en la que se cerró" + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "" +"Si está activado, PrusaSlicer no abrirá los hipervínculos en tu navegador." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"Si se activa, las Pestañas de Configuración se colocarán como elementos de " +"menú. Si se desactiva, se utilizará la antigua interfaz de usuario." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Si está activado, Slic3r descargará actualizaciones de los ajustes del " +"sistema mientras lo usamos. Estas actualizaciones se descargan a una " +"ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá " +"incorporar y usar cuando la aplicación se vuelva a iniciar." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"Si se activa, la interfaz de usuario utilizará los colores del modo oscuro. " +"Si se desactiva, se utilizará la antigua interfaz de usuario." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "" @@ -5721,6 +5585,14 @@ msgstr "" "Si está habilitado, todos los extrusores de impresión estarán cebados en el " "borde frontal de la cama de impresión al comienzo de la impresión." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Si está activado, permite que la orden de Recarga desde el disco busque y " +"cargue los ficheros cuando se invoque." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5733,14 +5605,6 @@ msgstr "" "Si no está activado, la orden de Recarga desde el disco te pedirá que " "selecciones cada archivo en un cuadro de abrir archivo." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"Si está activado, permite que la orden de Recarga desde el disco busque y " -"cargue los ficheros cuando se invoque." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5773,15 +5637,6 @@ msgstr "" "desactiva, los cambios realizados con el deslizador secuencial, en la vista " "previa, se aplican a todo el código G." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "Si se activa, PrusaSlicer se abrirá en la posición en la que se cerró" - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "" -"Si está activado, PrusaSlicer no abrirá los hipervínculos en tu navegador." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5797,6 +5652,14 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "" "Si está habilitado, invierte la dirección del zoom con la rueda del mouse" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"Si está habilitado, establece el Visor de CódigoG de PrusaSlicer como " +"aplicación predeterminada para abrir archivos .gcode." + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5809,34 +5672,6 @@ msgstr "" "Si está habilitado, establece a PrusaSlicer como aplicación predeterminada " "para abrir archivos .stl." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"Si está habilitado, establece el Visor de CódigoG de PrusaSlicer como " -"aplicación predeterminada para abrir archivos .gcode." - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"Si se activa, las Pestañas de Configuración se colocarán como elementos de " -"menú. Si se desactiva, se utilizará la antigua interfaz de usuario." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Si está activado, Slic3r descargará actualizaciones de los ajustes del " -"sistema mientras lo usamos. Estas actualizaciones se descargan a una " -"ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá " -"incorporar y usar cuando la aplicación se vuelva a iniciar." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5893,13 +5728,6 @@ msgstr "" "hacia abajo para imprimir la torre de limpieza. El usuario es responsable de " "garantizar que no haya colisión con la impresión." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"Si se activa, la interfaz de usuario utilizará los colores del modo oscuro. " -"Si se desactiva, se utilizará la antigua interfaz de usuario." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -6009,15 +5837,6 @@ msgstr "" "segundos, la velocidad de los movimientos de impresión se reducirá para " "extender la duración a este valor." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Si esto está habilitado, el ventilador nunca se desactivará y se mantendrá " -"funcionando al menos a su velocidad mínima. Útil para PLA, no recomendado " -"para ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6042,6 +5861,15 @@ msgstr "" "Si esto está habilitado, Slic3r solicitará el último directorio de salida en " "lugar del que contiene los archivos de entrada." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Si esto está habilitado, el ventilador nunca se desactivará y se mantendrá " +"funcionando al menos a su velocidad mínima. Útil para PLA, no recomendado " +"para ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6180,26 +6008,6 @@ msgstr "Importar configuración desde un &Proyecto" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importar Configuración desde ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Importar configuración solo" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Importar archivo" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Importar geometría solo" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Importar modelo y perfil" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Importar modelo únicamente" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Importar Objeto" @@ -6208,14 +6016,6 @@ msgstr "Importar Objeto" msgid "Import Objects" msgstr "Importar Objetos" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "La importación del archivo 3mf reparado ha fallado" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Importar perfil únicamente" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Importar Archivo SL1 / SL1S" @@ -6236,6 +6036,38 @@ msgstr "Importar STL/OBJ/AM&F/3MF" msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importar STL/OBJ/AMF/3MF sin configuración, mantener la base" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Importar configuración solo" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Importar archivo" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Importar geometría solo" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Importar modelo y perfil" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Importar modelo únicamente" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "La importación del archivo 3mf reparado ha fallado" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Importar perfil únicamente" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importando archivo SLA" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Importación cancelada." @@ -6244,18 +6076,6 @@ msgstr "Importación cancelada." msgid "Importing done." msgstr "Importación finalizada." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importando archivo SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "en" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "En el código G personalizado se encontraron palabras clave reservadas:" @@ -6290,41 +6110,6 @@ msgstr "Aumentar Instancias" msgid "Increase/decrease edit area" msgstr "Incrementar/reducir area edición" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"indica que se modificaron algunas configuraciones y no son iguales a los " -"valores del sistema (o predeterminados) para el grupo de opciones actual.\n" -"Haz clic en el icono CANDADO DESBLOQUEADO para restablecer todos los ajustes " -"del grupo de opciones actual a los valores del sistema (o predeterminados)." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"indica que los ajustes son los mismos que los valores del sistema (o por " -"defecto) para el grupo de opciones actual" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"indica que los ajustes cambiaron y no son iguales que los ajustes grabados " -"la última vez para el grupo de opciones actual.\n" -"Haz clic en el símbolo de FLECHA ATRÃS para resetear todos los ajustes del " -"grupo de opciones actual a los grabados la vez anterior." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6338,10 +6123,6 @@ msgstr "" msgid "Infill" msgstr "Relleno" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "relleno" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "Rellenar antes que los perímetros" @@ -6389,6 +6170,11 @@ msgstr "Altura de la capa inicial" msgid "Inner brim only" msgstr "Sólo el borde interior" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "El valor introducido está fuera de rango" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6398,11 +6184,6 @@ msgstr "" "El valor introducido está fuera de rango\n" "¿Está seguro de que %s es un valor correcto y que deseas continuar?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "El valor introducido está fuera de rango" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6476,10 +6257,6 @@ msgstr "Separación de patrón de interfaz" msgid "Interface shells" msgstr "Carcasas de interfaz" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "error interno" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6490,6 +6267,10 @@ msgstr "Error interno: %1%" msgid "Internal infill" msgstr "Relleno interno" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "Penetración inválida de la cabeza" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "Datos inválidos" @@ -6499,18 +6280,6 @@ msgstr "Datos inválidos" msgid "Invalid file format." msgstr "Formato inválido de archivo." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "nombre de archivo inválido" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "Penetración inválida de la cabeza" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "encabezado inválido o archivo está dañado" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6526,14 +6295,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "Entrada numérica no válida." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "parámetro inválido" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "Diámetro de la cabeza del pin inválido" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Alisado" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6549,32 +6323,14 @@ msgstr "" "levantado. Lee más en la documentación. (Requiere el modo avanzado o " "experto). " -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Alisado" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Tipo de alisado" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "está basado en Slic3r de Alessandro Ranellucci y la comunidad RepRap." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "¿Es seguro?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "está licenciado bajo el/los" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Iso" @@ -6633,15 +6389,6 @@ msgstr "Jitter" msgid "Jump to height" msgstr "Salta a la altura" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"Salta a la altura %s\n" -"o Fija el modo regla" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6653,6 +6400,15 @@ msgstr "" "Fija el modo regla\n" "o Fija la secuencia del extrusor para toda la impresión" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"Salta a la altura %s\n" +"o Fija el modo regla" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "Saltar al movimiento" @@ -6695,9 +6451,25 @@ msgstr "Atajos de teclado" msgid "Keyboard shortcuts" msgstr "Atajos de teclado" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "CANDADO CERRADO" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"El icono de CANDADO BLOQUEADO indica que los ajustes son los mismos que los " +"valores del sistema (por defecto) para el grupo de opciones actual" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"El icono de CANDADO BLOQUEADO indica que el valor es el mismo que el del " +"sistema (por defecto)" #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6751,23 +6523,11 @@ msgstr "Límites de altura de la capa" msgid "Layer range Settings to modify" msgstr "Ajustes del Rango de capas a modificar" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "capas" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Capas" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Capas y perímetros" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6781,15 +6541,9 @@ msgstr "Capas y perímetros" msgid "Layers and Perimeters" msgstr "Capas y Perímetros" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Inferior" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Superior" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Capas y perímetros" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6804,6 +6558,14 @@ msgstr "Dejar \"%1%\" activado" msgid "Left" msgstr "Izquierda" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Valor del Ajuste Izquierdo" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Vista izquierda" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6820,14 +6582,6 @@ msgstr "Botón izquierdo del ratón" msgid "Left mouse button:" msgstr "Botón izquierdo del ratón:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Valor del Ajuste Izquierdo" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Vista izquierda" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Leyenda/Tiempo de impresión estimado" @@ -6855,6 +6609,10 @@ msgstr "" "Los acuerdos de licencia de todos los programas (bibliotecas) siguientes " "forman parte del acuerdo de licencia de la aplicación" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Levantar Z" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6863,10 +6621,6 @@ msgstr "" "Eleva el objeto por encima de la cama cuando está parcialmente debajo. " "Activado por defecto, usa --no-ensure-on-bed para desactivarlo." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Levantar Z" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6883,18 +6637,42 @@ msgstr "Lineal" msgid "Load" msgstr "Cargar" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Carga Configuración desde ini/amf/3mf/gcode y mezcla" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "Cargar Archivo" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "Cargar Archivos" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "Cargar Modificador" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "Cargar pieza" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "Cargar Proyecto" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "Cargar un modelo" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "Cargar un modelo guardado con unidades imperiales" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "Cargar un archivo SL1 / SL1S" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "Cargar un modelo guardado con unidades imperiales" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6923,10 +6701,6 @@ msgstr "" "mismo modo, puedes utilizar Archivo-Importar-Importar archivo SL1 / SL1S, " "que también te permite reconstruir modelos 3D a partir de los datos de voxel." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "Carga Configuración desde ini/amf/3mf/gcode y mezcla" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "Cargar configuración desde archivo de proyecto" @@ -6943,30 +6717,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "Cargar archivo de configuración exportado" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "Cargar Archivo" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "Cargar Archivos" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "Cargar Modificador" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "Cargar pieza" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "Cargar ajustes de un paquete" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "Cargar Proyecto" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "Cargar forma desde STL..." @@ -6975,10 +6729,6 @@ msgstr "Cargar forma desde STL..." msgid "Load..." msgstr "Cargar..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "cargado" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "Carga" @@ -7042,26 +6792,6 @@ msgstr "Coordenadas locales" msgid "Lock supports under new islands" msgstr "Bloquear soportes bajo nuevas islas" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "CANDADO CERRADO" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"El icono de CANDADO BLOQUEADO indica que los ajustes son los mismos que los " -"valores del sistema (por defecto) para el grupo de opciones actual" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"El icono de CANDADO BLOQUEADO indica que el valor es el mismo que el del " -"sistema (por defecto)" - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Nivel de registro" @@ -7095,13 +6825,6 @@ msgstr "" "Los límites de la máquina no están establecidos, por lo tanto, el tiempo " "estimado de impresión puede no ser exacto." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"Los límites de la máquina se emitirán al código G y se utilizarán para " -"calcular el tiempo de impresión." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7113,6 +6836,13 @@ msgstr "" "que la impresora puede aplicar un conjunto diferente de límites de la " "máquina." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"Los límites de la máquina se emitirán al código G y se utilizarán para " +"calcular el tiempo de impresión." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7144,10 +6874,6 @@ msgstr "Pestaña Ajustes de Mate&rial" msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Perfil de impresión del material" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7158,6 +6884,10 @@ msgstr "Configuraciones del material" msgid "Material Settings Tab" msgstr "Pestaña Ajustes de Material" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Perfil de impresión del material" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Max" @@ -7186,10 +6916,6 @@ msgstr "Máxima altura de impresión" msgid "Max print speed" msgstr "Velocidad máxima de impresión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "máxima versión PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Máx. Pendiente volumétrica negativa" @@ -7214,6 +6940,18 @@ msgstr "Distancia máxima entre soportes en las secciones con relleno ligero." msgid "Maximum acceleration E" msgstr "Máxima aceleración E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Máxima aceleración X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Máxima aceleración Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Máxima aceleración Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Aceleración máxima para movimientos de desplazamiento" @@ -7262,18 +7000,6 @@ msgstr "Aceleración máxima al retraer" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Aceleración máxima al retraer (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Máxima aceleración X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Máxima aceleración Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Máxima aceleración Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Aceleraciones máximas" @@ -7305,6 +7031,18 @@ msgstr "Tiempo de exposición máximo" msgid "Maximum feedrate E" msgstr "Máximo avance E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Máxima velocidad en X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Máxima velocidad en Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Máximo avance en Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Máximo avance del eje E" @@ -7321,18 +7059,6 @@ msgstr "Máximo avance del eje Y" msgid "Maximum feedrate of the Z axis" msgstr "Máximo avance del eje Z" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Máxima velocidad en X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Máxima velocidad en Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Máximo avance en Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Avance máximo" @@ -7345,6 +7071,18 @@ msgstr "Tiempo de exposición inicial máximo" msgid "Maximum jerk E" msgstr "Máximo jerk E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Máximo jerk X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Máximo jerk Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Máximo jerk Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Maximo jerk del eje E" @@ -7361,18 +7099,6 @@ msgstr "Maximo jerk del eje Y" msgid "Maximum jerk of the Z axis" msgstr "Maximo jerk del eje Z" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Máximo jerk X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Máximo jerk Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Máximo jerk Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Máxima longitud del relleno del anclaje" @@ -7466,10 +7192,6 @@ msgstr "Min" msgid "Min print speed" msgstr "Velocidad de impresión mínima" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "mínima versión PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Distancia mínima de los puntos de apoyo" @@ -7532,6 +7254,10 @@ msgstr "Avances míninos" msgid "Minimum initial exposure time" msgstr "Tiempo de exposición inicial mínimo" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Espesor mínimo de pared" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7545,10 +7271,6 @@ msgstr "" "característica es especialmente útil cuando se utiliza la función de altura " "de capa variable." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Espesor mínimo de pared" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Espesor mínimo de una carcasa superior / inferior" @@ -7585,6 +7307,10 @@ msgstr "" "Ancho mínimo característico para mantener al realizar la compensación de pie " "de elefante." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Reflejar" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7595,18 +7321,14 @@ msgstr "" "Did you know that you can mirror the selected model to create a reversed " "version of it? Right-click the model, select Mirror and pick the mirror axis." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Reflejar" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Reflejar objeto" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Reflejar horizontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Reflejar objeto" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Duplicar el objeto seleccionado" @@ -7637,133 +7359,10 @@ msgstr "Tipo de host de impresión no coincidente: %s" msgid "Mixed" msgstr "Mezclado" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (cero para deshabilitar)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm o %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm or % (cero para deshabilitar)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s o %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "&Modo" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "modelo" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Modelo" @@ -7776,19 +7375,10 @@ msgstr "Reparación del modelo cancelada" msgid "Model repair finished" msgstr "Reparación del modelo terminada" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "Avanzado" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Se guardarán las modificaciones al perfil actual." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "modificado" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Modificador" @@ -7797,14 +7387,6 @@ msgstr "Modificador" msgid "Modifiers" msgstr "Modificadores" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "dinero/botella" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "dinero/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotónico" @@ -7836,6 +7418,10 @@ msgstr "Rueda del ratón:" msgid "Move" msgstr "Mover" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "Mover Objeto" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "Mover el pulgar activo hacia Abajo" @@ -7860,10 +7446,6 @@ msgstr "Mover plano de recorte" msgid "Move drainage hole" msgstr "Mover orificio de drenaje" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "Mover Objeto" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "Mover punto" @@ -7958,6 +7540,14 @@ msgstr "Multiplicar las copias por este factor." msgid "N/A" msgstr "N/A" +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "NO EMPUJAR EN ABSOLUTO" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "NOTA:" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -7991,6 +7581,10 @@ msgstr "Nombres de ajustes relacionados con la impresora física" msgid "Nearest" msgstr "Más cercano" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Volumen negativo" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -8005,14 +7599,18 @@ msgstr "" "fácilmente redimensionables directamente en PrusaSlicer. Lee más en la " "documentación. (Requiere el modo Avanzado o Experto)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Volumen negativo" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "Búsqueda en la red" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Nuevo proyecto" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Nuevo Valor" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "" @@ -8027,10 +7625,6 @@ msgstr "La nueva versión prelanzamiento %1% está disponible." msgid "New printer preset selected" msgstr "Se ha seleccionado un nuevo ajuste de la impresora" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Nuevo proyecto" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Nuevo proyecto, limpiar plataforma" @@ -8040,10 +7634,6 @@ msgstr "Nuevo proyecto, limpiar plataforma" msgid "New release version %1% is available." msgstr "La nueva versión %1% está disponible." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Nuevo Valor" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8096,10 +7686,6 @@ msgstr "" msgid "No previously sliced file." msgstr "Ningún archivo previamente laminado." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "NO EMPUJAR EN ABSOLUTO" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sin capas dispersas (EXPERIMENTAL)" @@ -8124,18 +7710,10 @@ msgstr "Ninguno" msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "modo normal" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Modo normal" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "no es un archivo ZIP" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "No encontrado:" @@ -8167,10 +7745,6 @@ msgstr[1] "" "Ten en cuenta que estas impresoras se eliminarán después de borrar el ajuste " "seleccionado." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "NOTA:" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8214,14 +7788,14 @@ msgstr "Nota: Se necesita al menos la versión 1.1.0 de OctoPrint." msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Nota: Se requiere la versión 0.90.0 de Repetier como mínimo." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 -msgid "Note: some shortcuts work in (non)editing mode only." -msgstr "Nota: algunos accesos directos funcionan solo en modo de (no)edición." - #: src/slic3r/GUI/SavePresetDialog.cpp:137 msgid "Note: This preset will be replaced after saving" msgstr "Nota: Este ajuste se reemplazará tras guardar" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 +msgid "Note: some shortcuts work in (non)editing mode only." +msgstr "Nota: algunos accesos directos funcionan solo en modo de (no)edición." + #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8240,14 +7814,14 @@ msgstr "Date cuenta" msgid "Notify about new releases" msgstr "Notificar sobre nuevos lanzamientos" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "boquilla" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Boquilla" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "Diámetro de la boquilla:" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Temperaturas de la Base y la Boquilla" @@ -8257,10 +7831,6 @@ msgstr "Temperaturas de la Base y la Boquilla" msgid "Nozzle diameter" msgstr "Diámetro de la boquilla" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "Diámetro de la boquilla:" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Temperatura de la boquilla" @@ -8355,11 +7925,9 @@ msgstr "" msgid "Number of tool changes" msgstr "Número de cambios de herramienta" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "objeto" -msgstr[1] "objetos" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "Configuraciones de objetos para modificar" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8386,10 +7954,6 @@ msgstr "Objeto o instancia" msgid "Object reordered" msgstr "Objetos reordenados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "Configuraciones de objetos para modificar" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8420,10 +7984,6 @@ msgstr "" "torre de limpieza y disminuir el tiempo de impresión. Los colores de los " "objetos se mezclarán como resultado." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "objetos" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Lista de Objetos" @@ -8436,15 +7996,6 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Versión de OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "del Objeto actual" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Tamaño" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Desplazamiento" @@ -8457,14 +8008,14 @@ msgstr "" "Desplazamiento del borde respecto al objeto impreso. El desplazamiento se " "aplica después de la compensación de la pie de elefante." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Diseño regular antiguo con la barra de pestañas" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Valor Antiguo" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Diseño regular antiguo con la barra de pestañas" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8548,14 +8099,6 @@ msgstr "Solo levantar Z menor que" msgid "Only retract when crossing perimeters" msgstr "Solo retraer al cruzar perímetros" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"Sólo las siguientes impresoras instaladas son compatibles con los filamentos " -"seleccionados" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8564,6 +8107,14 @@ msgstr "" "Sólo las siguientes impresoras instaladas son compatibles con los materiales " "SLA seleccionados" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"Sólo las siguientes impresoras instaladas son compatibles con los filamentos " +"seleccionados" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Prevención de goteo" @@ -8578,6 +8129,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Abrir &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Abrir archivo de certificado CA" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Abrir la documentación en el navegador web." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Abrir carpeta." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Abrir archivo código G:" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "Abrir visor código G" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Abrir Nueva Instancia" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Abrir Preferencias." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "Abrir PrusaSlicer" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Abrir un archivo código G" @@ -8595,35 +8178,15 @@ msgstr "Abrir un archivo de proyecto" msgid "Open as project" msgstr "Abrir como proyecto" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Abrir archivo de certificado CA" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "Abrir la página del registro de cambios" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Abrir la documentación en el navegador web." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Abrir página de descarga" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Abrir carpeta." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Abrir archivo código G:" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "Abrir visor código G" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "¿Abrir el hipervínculo en el navegador por defecto?" @@ -8636,36 +8199,24 @@ msgstr "Abrir visor código G nuevo" msgid "Open new instance" msgstr "Abrir instancia nueva" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Abrir Nueva Instancia" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Abrir Preferencias." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Abrir proyecto STL/OBJ/AMF/3MF con configuración, limpiar plataforma" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "Abrir PrusaSlicer" - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "Abrir el sitio web de %s en su navegador" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "Abre el diálogo para modificar la galería de formas" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "" "Abrir la página de descarga de los controladores Prusa3D en su navegador" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "Abre el diálogo para modificar la galería de formas" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Abre la página de lanzamientos de software en tu navegador" @@ -8690,6 +8241,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Operación ya cancelada. Por favor, espere unos segundos." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Optimizar Rotación" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "" @@ -8711,10 +8266,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Optimizar la orientación" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Optimizar Rotación" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8739,10 +8290,6 @@ msgstr "Opciones de material de soporte y balsa" msgid "Options:" msgstr "Opciones:" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "o presiona la tecla \"+\"" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "Ordenar los volúmenes de objetos por tipos" @@ -8763,14 +8310,14 @@ msgstr "Origen" msgid "Other" msgstr "Otro" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Otras capas" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Otras Marcas" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Otras capas" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "Borde interior y exterior" @@ -8779,22 +8326,22 @@ msgstr "Borde interior y exterior" msgid "Outer brim only" msgstr "Sólo el borde exterior" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "Archivo de salida" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "Archivo de salida" +#: src/libslic3r/PrintConfig.cpp:4305 +msgid "Output Model Info" +msgstr "Información del modelo de salida" + +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "Archivo de salida" + #: src/libslic3r/PrintConfig.cpp:1902 msgid "Output filename format" msgstr "Formato de nombre de salida" -#: src/libslic3r/PrintConfig.cpp:4305 -msgid "Output Model Info" -msgstr "Información del modelo de salida" - #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Opciones de salida" @@ -8907,6 +8454,10 @@ msgstr "" "alrededor del eje Z en el sentido de las agujas del reloj o en sentido " "contrario pulsando Re Pag o Av Pag respectivamente?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Pintado de costuras" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8919,9 +8470,10 @@ msgstr "" "colocar el punto de inicio/fin de cada bucle perimetral? Prueba la " "funciónPintado de costuras. (Requiere el modo Avanzado o Experto)." -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Pintado de costuras" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Soportes pintables" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -8935,11 +8487,6 @@ msgstr "" "en las que deben reforzarse o bloquearse los soportes? Prueba la función " "Soportes pintables. (Requiere el modo Avanzado o Experto)." -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Soportes pintables" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -8974,10 +8521,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Pinta sólo una faceta." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "nombre del parámetro" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Validación de parámetros" @@ -8998,14 +8541,14 @@ msgstr "" msgid "Part" msgstr "Pieza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Manipulación de piezas" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "Configuraciones de piezas para modificar" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Manipulación de piezas" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "Contraseña" @@ -9014,6 +8557,10 @@ msgstr "Contraseña" msgid "Paste" msgstr "Pegar" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Pegar Desde Portapapeles" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Pegar portapapeles" @@ -9022,10 +8569,6 @@ msgstr "Pegar portapapeles" msgid "Paste from clipboard" msgstr "Pegar desde el portapapeles" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Pegar Desde Portapapeles" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Patrón" @@ -9056,16 +8599,16 @@ msgstr "Patrón utilizado para generar material de soporte." msgid "Pause" msgstr "Pausa" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Pausar impresión (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "Pausar Código G de Impresión" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Pausar impresión (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "" @@ -9100,6 +8643,11 @@ msgstr "" "Rendimiento vs precisión de cálculo. Los valores más bajos pueden producir " "artefactos no deseados." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "" +"Falló la integración del escritorio - No se pudo encontrar el ejecutable." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9117,11 +8665,6 @@ msgstr "" "escritorio de Gcodeviewer. El archivo de escritorio de PrusaSlicer se creó " "probablemente con éxito." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "" -"Falló la integración del escritorio - No se pudo encontrar el ejecutable." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9139,10 +8682,6 @@ msgstr "Perímetro" msgid "Perimeter extruder" msgstr "Extrusor para perímetros" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "perímetros" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9220,6 +8759,10 @@ msgstr "Ancho de la cabeza" msgid "Place bearings in slots and resume printing" msgstr "Coloca los rodamientos en las ranuras y sigue imprimiendo" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Colocar en la cara" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9232,10 +8775,6 @@ msgstr "" "se sitúe en la cama de impresión? Selecciona la función Colocar en la " "cara o pulse la tecla F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Colocar en la cara" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9279,10 +8818,6 @@ msgstr "Posición" msgid "Position (for multi-extruder printers)" msgstr "Posición (para impresoras con múltiples extrusores )" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Posición de los puntos de inicio del perímetro." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "Posición X" @@ -9291,6 +8826,10 @@ msgstr "Posición X" msgid "Position Y" msgstr "Posición Y" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Posición de los puntos de inicio del perímetro." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "" @@ -9394,11 +8933,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "Ya existe un preset con el nombre \"%1%\"." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Copiar" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9461,10 +8995,6 @@ msgstr "Archivo anterior laminado (" msgid "Prime all printing extruders" msgstr "Cebar todos los extrusores de impresión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "imprimir" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Imprimir" @@ -9473,14 +9003,6 @@ msgstr "Imprimir" msgid "Print &Host Upload Queue" msgstr "Cola de subida al &host de impresión" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Imprimir perímetros de contorno desde el más externo hasta el más interno en " -"lugar del orden inverso predeterminado." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Diámetros de impresión" @@ -9489,6 +9011,23 @@ msgstr "Diámetros de impresión" msgid "Print Host upload" msgstr "Subida al host de impresión" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Configuración de Impresión" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Pestaña Ajustes Impresión" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Imprimir perímetros de contorno desde el más externo hasta el más interno en " +"lugar del orden inverso predeterminado." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9502,20 +9041,11 @@ msgstr "Modo de impresión" msgid "Print pauses" msgstr "Pausas de impresión" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Configuración de Impresión" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Configuración de impresión" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Pestaña Ajustes Impresión" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "Velocidad de impresión" @@ -9550,9 +9080,14 @@ msgstr "" msgid "Printer" msgstr "Impresora" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "impresora" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Configuración de la Impresora" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Pestaña Ajustes Impresora" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9562,10 +9097,6 @@ msgstr "Corrección absoluta de la impresora" msgid "Printer gamma correction" msgstr "Corrección gamma de la impresora" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "modelo de impresora" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Notas de la impresora" @@ -9574,6 +9105,18 @@ msgstr "Notas de la impresora" msgid "Printer preset names" msgstr "Nombres de ajustes de la impresora" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Corrección del escalado de la impresora en el eje X" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Corrección del escalado de la impresora en el eje Y" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Corrección del escalado de la impresora en el eje Z" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9591,27 +9134,6 @@ msgstr "Corrección del escalado de la impresora en el eje Y" msgid "Printer scaling correction in Z axis" msgstr "Corrección del escalado de la impresora en el eje Z" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Corrección del escalado de la impresora en el eje X" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Corrección del escalado de la impresora en el eje Y" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Corrección del escalado de la impresora en el eje Z" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Configuración de la Impresora" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Pestaña Ajustes Impresora" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Tecnología de la impresora" @@ -9703,6 +9225,10 @@ msgstr "Impresoras Prusa de tecnología FFF" msgid "Prusa MSLA Technology Printers" msgstr "Impresoras Prusa de tecnología MSLA" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "Hubo un error al abrir el GUI de PrusaSlicer" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9737,10 +9263,6 @@ msgstr "" msgid "PrusaSlicer error" msgstr "Error de PrusaSlicer" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "Hubo un error al abrir el GUI de PrusaSlicer" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10086,6 +9608,16 @@ msgstr "Habitual" msgid "Regular expression" msgstr "Expresión regular" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"El direccionamiento relativo del extrusor requiere restablecer la posición " +"del extrusor en cada capa para evitar la pérdida de la precisión del punto " +"flotante. Añadie \"G92 E0\" a layer_gcode." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Solo lanzamiento" @@ -10094,6 +9626,11 @@ msgstr "Solo lanzamiento" msgid "Reload all from disk" msgstr "Recargar todo desde el disco" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Recargar desde el disco" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10107,11 +9644,6 @@ msgstr "" "ratón en el modelo en la vista 3D y elige Recargar desde el disco. Lee más " "en la documentación." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Recargar desde el disco" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Recargar desde:" @@ -10149,15 +9681,19 @@ msgstr "Recordar mi elección" msgid "Remember output directory" msgstr "Recordar el directorio de salida" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "eliminar" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "Eliminar" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "Retirar instancia del objeto seleccionado" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "Eliminar el pintado Multi Material" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "Elimina todos los huecos" @@ -10183,18 +9719,10 @@ msgstr "Retirar extrusor de la secuencia" msgid "Remove instance" msgstr "Retirar una copia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "Retirar instancia del objeto seleccionado" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "Retirar rango de capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "Eliminar el pintado Multi Material" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "Eliminar una instancia del objeto seleccionado" @@ -10327,11 +9855,11 @@ msgid "Repairing was canceled" msgstr "La reparación fue cancelada" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" +msgid "Repeat Last Quick Slice" msgstr "Repetir el último laminado rápido" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat Last Quick Slice" +msgid "Repeat last quick slice" msgstr "Repetir el último laminado rápido" #: src/slic3r/GUI/Plater.cpp:3432 @@ -10367,21 +9895,6 @@ msgstr "Informar de un &problema" msgid "Report an issue on %s" msgstr "Reportar un problema a %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "requiere max. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "requiere min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "requiere un min. %s y un max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Rescanear" @@ -10390,6 +9903,14 @@ msgstr "Rescanear" msgid "Reset" msgstr "Reset" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Reiniciar Proyecto" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Reiniciar rotación" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Restablecer plano de recorte" @@ -10402,18 +9923,10 @@ msgstr "Restablecer plano de recorte" msgid "Reset direction" msgstr "Restablecer dirección" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Reiniciar Proyecto" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Reiniciar rotación" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Reiniciar rotación" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10425,14 +9938,14 @@ msgstr "Reiniciar escala" msgid "Reset selection" msgstr "Reiniciar selección" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Reiniciar a la base" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Reiniciar Filament Color" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Reiniciar a la base" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Reiniciar aplicación" @@ -10454,13 +9967,6 @@ msgstr "Retraer en el cambio de capa" msgid "Retraction" msgstr "Retracción" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"La retracción no se activa cuando los movimientos de desplazamiento son más " -"cortos que esta longitud." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "Longitud de retracción" @@ -10473,6 +9979,13 @@ msgstr "Longitud de retracción (cambio de herramienta)" msgid "Retraction Speed" msgstr "Velocidad de retracción" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"La retracción no se activa cuando los movimientos de desplazamiento son más " +"cortos que esta longitud." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10509,6 +10022,14 @@ msgstr "Revisalas sustituciones y ajústalas si es necesario." msgid "Right" msgstr "Derecha" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Valor del Ajuste Derecho" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Vista derecha" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10538,14 +10059,6 @@ msgstr "Botón derecho del ratón" msgid "Right mouse button:" msgstr "Botón derecho del ratón:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Valor del Ajuste Derecho" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Vista derecha" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10613,16 +10126,6 @@ msgstr "Ejecutar %s" msgid "Running post-processing scripts" msgstr "Ejecutando scripts de post-procesamiento" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "$" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "&Enviar código G" @@ -10631,6 +10134,60 @@ msgstr "&Enviar código G" msgid "S&end to print" msgstr "E&nviar para imprimir" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "Selección Perfiles de Material SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "Materiales SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "Puntos de soporte SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "Impresoras de tecnología SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "Herramienta de atajos de teclado SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "Material SLA" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "Tipo Material SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "Materiales SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "Impresión SLA" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "Notas del material de impresión de SLA" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "Ajustes de impresión SLA" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "Se detectaron soportes SLA fuera del área de impresión." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10651,6 +10208,23 @@ msgstr "Guardar %s como:" msgid "Save %s file as:" msgstr "Guardar archivo %s como:" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Guardar archivo Código G como:" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "" +"Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "Guardar Proyecto &como" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "Guardar archivo SL1 / SL1S como:" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Guardar archivo de configuración" @@ -10681,15 +10255,6 @@ msgstr "Guardar archivo de proyecto actual como" msgid "Save file as:" msgstr "Guardar archivo como:" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Guardar archivo Código G como:" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "" -"Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10703,10 +10268,6 @@ msgstr "Guarde el conjunto de ajustes iniciales como:" msgid "Save project" msgstr "Guardar proyecto" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "Guardar Proyecto &como" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Guardar proyecto (3mf)" @@ -10715,10 +10276,6 @@ msgstr "Guardar proyecto (3mf)" msgid "Save project as (3mf)" msgstr "Guarda el proyecto como (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "Guardar archivo SL1 / SL1S como:" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "¿Guardar puntos de apoyo?" @@ -10750,6 +10307,10 @@ msgstr "Error al guardar la malla en el contenedor 3MF." msgid "Scale" msgstr "Escalar" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Escalar para Adaptarse" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Factores de escala" @@ -10763,10 +10324,6 @@ msgstr "" msgid "Scale to Fit" msgstr "Escalar para Adaptarse" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Escalar para Adaptarse" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "Escalar para ajustarse al volumen dado." @@ -10855,13 +10412,39 @@ msgstr "Segundo color" msgid "See Download page." msgstr "Ver página de Descargas." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Consultar página de lanzamientos." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Ver más." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Consultar página de lanzamientos." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Seleccionar pestaña de configuración de filamento" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Seleccionar pestaña de la Base de impresión" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Seleccione la pestaña Configuración de impresión" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Selecciona pestaña de ajustes de impresora" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Escoge SI si deseas borrar todos los cambios de herramienta,\n" +"NO si deseas que los cambios de herramienta sean cambios de color,\n" +"o CANCELAR para no hacer cambios." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10900,26 +10483,10 @@ msgid "Select coordinate space, in which the transformation will be performed." msgstr "" "Escoge el espacio de coordenadas en el que se realizará la transformación." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Seleccionar pestaña de configuración de filamento" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Seleccionar pestaña de la Base de impresión" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Selecciona los ajustes para comparar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Seleccione la pestaña Configuración de impresión" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Selecciona pestaña de ajustes de impresora" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Seleccionar la forma en la galería" @@ -10928,6 +10495,10 @@ msgstr "Seleccionar la forma en la galería" msgid "Select showing settings" msgstr "Seleccionar los ajustes mostrados" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Seleccione el archivo STL para reparar:" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "Seleccione el idioma" @@ -10945,10 +10516,6 @@ msgstr "" msgid "Select the printers this profile is compatible with." msgstr "Seleccione las impresoras con las que este perfil es compatible." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Seleccione el archivo STL para reparar:" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "" @@ -10967,16 +10534,6 @@ msgstr "Selecciona que tipo de pad necesitas" msgid "Select what kind of support do you need" msgstr "Selecciona qué clase de soporte necesitas" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Escoge SI si deseas borrar todos los cambios de herramienta,\n" -"NO si deseas que los cambios de herramienta sean cambios de color,\n" -"o CANCELAR para no hacer cambios." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "Selección-Añadir" @@ -10985,14 +10542,6 @@ msgstr "Selección-Añadir" msgid "Selection-Add All" msgstr "Selección-Añadir todos" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "Selección-Añadir de la lista" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "Selección-Añadir del rectángulo" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "Selección-Añadir Instancia" @@ -11001,6 +10550,14 @@ msgstr "Selección-Añadir Instancia" msgid "Selection-Add Object" msgstr "Selección-Añadir Objeto" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "Selección-Añadir de la lista" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "Selección-Añadir del rectángulo" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "Selección-Retirar" @@ -11009,14 +10566,6 @@ msgstr "Selección-Retirar" msgid "Selection-Remove All" msgstr "Selección-Retirar todo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "Selección-Retirar de la lista" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "Selección-Retirar del rectángulo" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "Selección-Retirar Instancia" @@ -11025,18 +10574,26 @@ msgstr "Selección-Retirar Instancia" msgid "Selection-Remove Object" msgstr "Selección-Retirar Objeto" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "Selección-Retirar de la lista" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "Selección-Retirar del rectángulo" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Seleccionar todos los objetos" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "Enviar código G" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "Enviar el código G al host de impresión" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "Enviar código G" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -11086,6 +10643,46 @@ msgstr "Nombre del servicio" msgid "Set" msgstr "Ajuste" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Establecer Reflejo" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "Establecer Orientación" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Establecer Posición" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Establecer Imprimible" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Establecer Instancia imprimible" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Establecer Grupo imprimible" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Establecer Escala" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Establecer No imprimible" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Establecer Instancia No Imprimible" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Establecer Grupo No imprimible" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "Establecer como Objeto Separado" @@ -11134,9 +10731,9 @@ msgstr "Establecer el pulgar izquierdo como activo" msgid "Set lower thumb as active" msgstr "Establecer el pulgar inferior como activo" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Establecer Reflejo" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Establecer número de instancias" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11148,35 +10745,11 @@ msgstr "" "¿Sabías que puedes hacer clic con el botón derecho en un modelo y establecer " "un número exacto de instancias en lugar de copiar y pegar varias veces?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Establecer número de instancias" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Establecer el número de copias a %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "Establecer Orientación" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Establecer Posición" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Establecer Imprimible" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Establecer Grupo imprimible" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Establecer Instancia imprimible" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Establecer el pulgar derecho como activo" @@ -11185,10 +10758,6 @@ msgstr "Establecer el pulgar derecho como activo" msgid "Set ruler mode" msgstr "Establecer modo de regla" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Establecer Escala" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Establecer los elementos seleccionados como Imprimibles/No imprimibles" @@ -11356,18 +10925,6 @@ msgstr "" "profundidad máxima que el extrusor puede asomar antes de colisionar con " "otros objetos impresos." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Establecer No imprimible" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Establecer Grupo No imprimible" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Establecer Instancia No Imprimible" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Establecer el pulgar superior como activo" @@ -11391,6 +10948,10 @@ msgstr "Ajustes" msgid "Settings for height range" msgstr "Ajustes para rango de alturas" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Configuración en ventana no modal" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11404,10 +10965,6 @@ msgstr "" "la Vista previa del código G en la otra. Ves a Preferencias y " "selecciona Configuración en la ventana no modal." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Configuración en ventana no modal" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "¿Debo ajustar esa configuración para los soportes?" @@ -11489,6 +11046,10 @@ msgstr "Mostrar carpeta &Configuración" msgid "Show &Labels" msgstr "Mostrar &Etiquetas" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Mostrar Consejo del día" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "Mostrar Acerca de" @@ -11577,16 +11138,16 @@ msgstr "Muestra la vista 3D preliminar del laminado" msgid "Show the filament settings" msgstr "Mostrar los ajustes de filamento" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "" -"Muestra la lista completa de opciones de configuración de impresión/G-code." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "" "Muestra la lista completa de opciones de configuración de impresión SLA." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "" +"Muestra la lista completa de opciones de configuración de impresión/G-code." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Mostrar la lista de los atajos de teclado" @@ -11607,10 +11168,6 @@ msgstr "Mostrar la configuración de la impresora" msgid "Show this help." msgstr "Mostrar esta ayuda." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Mostrar Consejo del día" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Mostrar carpeta de configuración de usuario (datadir)" @@ -11650,14 +11207,14 @@ msgstr "Muestra/Oculta etiquetas de pieza/repetición" msgid "Simple" msgstr "Sencillo" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Modo Simple" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "Modo de visualización sencillo" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Modo Simple" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "" @@ -11690,10 +11247,6 @@ msgstr "" msgid "Simplify model" msgstr "Simplificar el modelo" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Ajuste para MM con un solo extrusor" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "Extrusor único Multi Material" @@ -11710,6 +11263,10 @@ msgstr "" "¿Deseas cambiar el diámetro de todos los extrusores al valor del diámetro " "del nozzle del primer extrusor?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Ajuste para MM con un solo extrusor" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Parámetros multimaterial para un sólo extrusor" @@ -11740,6 +11297,10 @@ msgstr "Tamaño en X e Y de la placa rectangular." msgid "Skirt" msgstr "Falda" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "Vueltas de la falda" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11750,65 +11311,11 @@ msgstr "Falda y balsa" msgid "Skirt height" msgstr "Altura de la falda" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "Vueltas de la falda" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Falda/Balsa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "Herramienta de atajos de teclado SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "Material SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "Selección Perfiles de Material SLA" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "Tipo Material SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "Materiales SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "Materiales SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "Impresión SLA" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "Notas del material de impresión de SLA" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "Ajustes de impresión SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "Puntos de soporte SLA" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "Se detectaron soportes SLA fuera del área de impresión." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "Impresoras de tecnología SLA" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Losa" @@ -11902,7 +11409,15 @@ msgstr "El objeto laminado \"%1%\" parece un logotipo o un cartel" #: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 #: src/slic3r/GUI/Tab.cpp:4662 msgid "Slicing" -msgstr "Laminando" +msgstr "Laminado" + +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "¡Laminado realizado!" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Modo de laminado" #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 @@ -11913,10 +11428,6 @@ msgstr "Laminado terminado" msgid "Slicing done" msgstr "Laminado terminado" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "¡Laminado realizado!" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "Laminado finalizado." @@ -11928,10 +11439,6 @@ msgstr "" "El laminado se ha tenido que parar debido a un error interno: Ãndice de " "laminado inconsistente." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Modo de laminado" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "Laminando modelo" @@ -11991,10 +11498,6 @@ msgstr "Ajustado" msgid "Software &Releases" msgstr "Lanzamientos de Softwa&re" -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "relleno sólido" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -12009,6 +11512,10 @@ msgstr "Relleno sólido cada" msgid "Solid infill extruder" msgstr "Extrusor para el relleno sólido" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Ãrea del umbral de relleno sólido" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -12021,10 +11528,6 @@ msgstr "" "transversal pequeña se rellenen con relleno sólido automáticamente? Ajusta " "el Ãrea umbral de relleno sólido. (Sólo en modo Experto.)" -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Ãrea del umbral de relleno sólido" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Capas sólidas" @@ -12037,17 +11540,6 @@ msgstr "Material soluble" msgid "Soluble material is most likely used for a soluble support." msgstr "El material soluble se usa muy probablemente para un soporte soluble." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"Algunos campos son demasiado largos para caber. El clic derecho del mouse " -"muestra el texto completo." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "Se han desinstalado algunos filamentos." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -12060,6 +11552,25 @@ msgstr "" "impresora para obtener una salida compatible. El tipo \"Sin extrusión\" " "evita que PrusaSlicer exporte ningún valor de extrusión." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "Se han desinstalado algunas impresoras." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "Se han desinstalado algunos materiales SLA." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"Algunos campos son demasiado largos para caber. El clic derecho del mouse " +"muestra el texto completo." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "Se han desinstalado algunos filamentos." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "Algunos objetos no son visibles durante la edición." @@ -12111,14 +11622,6 @@ msgstr "" "Algunas impresoras o configuraciones de impresora pueden tener dificultades " "para imprimir con una altura de capa variable. Habilitado por defecto." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "Se han desinstalado algunas impresoras." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "Se han desinstalado algunos materiales SLA." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "Separación" @@ -12284,14 +11787,14 @@ msgstr "Velocidad:" msgid "Sphere" msgstr "Esfera" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Modo vaso" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Modo Vaso Espiral" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Modo vaso" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12315,22 +11818,22 @@ msgstr "Dividir el objeto seleccionado en objetos individuales" msgid "Split the selected object into individual parts" msgstr "Divide el objeto seleccionado en partes individuales" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "Partir en varias piezas" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "Partir en Varias Piezas" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "Separar en piezas" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "Separar en Piezas" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "Partir en varias piezas" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "Separar en piezas" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12358,6 +11861,12 @@ msgstr "Estándar" msgid "Stars" msgstr "Estrellas" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "Código G inicial" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "Empezar un nuevo proyecto" @@ -12366,12 +11875,6 @@ msgstr "Empezar un nuevo proyecto" msgid "Start at height" msgstr "Comenzar en altura" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "Código G inicial" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Comenzar un nuevo proceso de laminado" @@ -12428,10 +11931,6 @@ msgstr "Estado:" msgid "Stealth" msgstr "Silencio" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "modo silencioso" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Modo silencioso" @@ -12471,22 +11970,6 @@ msgstr "" "Desmontado con éxito. El dispositivo %s (%s) ahora se puede retirar de forma " "segura del ordenador." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "soporte" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "Diámetro de la base del soporte" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Altura de la base del soporte" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "Distancia de seguridad de la base de soportes" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Bloqueo de soporte" @@ -12503,14 +11986,22 @@ msgstr "Forzado de Soporte" msgid "Support Generator" msgstr "Generador de Soportes" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "Diámetro de la base del soporte" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Altura de la base del soporte" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "Distancia de seguridad de la base de soportes" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "Cabeza del soporte" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "interfaz de soporte" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12596,10 +12087,6 @@ msgstr "Edición de puntos de soporte" msgid "Supports" msgstr "Soportes" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "soportes y pad" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "Compatible con tiempos restantes" @@ -12634,10 +12121,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "Suprimir para abrir hipervínculo en el navegador" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "Alternar ejes Y/Z" @@ -12659,10 +12142,6 @@ msgstr "Código para cambiar de color (%1%) para:" msgid "Switch to 3D" msgstr "Cambiar a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "Cambiar al modo edición" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "Cambiar a Previsualización" @@ -12671,6 +12150,10 @@ msgstr "Cambiar a Previsualización" msgid "Switch to Settings" msgstr "Cambiar a Ajustes" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "Cambiar al modo edición" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12711,10 +12194,6 @@ msgstr "" "\n" "¿Quiere continuar?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "nombre perfil simbólico" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12732,14 +12211,14 @@ msgstr "Sincronizar con las capas del objeto" msgid "System &Info" msgstr "&Información del Sistema" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Info del sistema enviada con éxito. Gracias." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Información del sistema" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Info del sistema enviada con éxito. Gracias." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12825,6 +12304,146 @@ msgstr "" "Si el dispositivo está conectado, presione el botón Reset al lado del " "conector USB ..." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"El archivo SLA no contiene ningún ajuste. Por favor, activa primero algún " +"preajuste de la impresora SLA antes de importar ese archivo SLA." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"El modo Vaso Espiral necesita:\n" +"-un perímetro\n" +"-cero capas de tapa superior\n" +"-0% densidad de relleno\n" +"-sin soportes\n" +"-Comprueba que está activado el espesor de pared vertical\n" +"-Desactiva la detección de paredes finas" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "" +"La opción Vaso en espiral solo puede ser usada al imprimir objetos de un " +"solo material." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"La Torre de Limpieza actualmente no es compatible con E volumétrico " +"(use_volumetric_e=0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"La Torre de Limpieza actualmente admite los soportes no solubles solo si " +"están impresos con el extrusor actual sin activar un cambio de " +"herramienta. \n" +"(tanto support_material_extruder como support_material_interface_extruder " +"deben configurarse en 0)." + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"La Torre de Limpieza actualmente admite los soportes no solubles solo si " +"están impresos con el extrusor actual sin activar un cambio de herramienta. " +"(Tanto support_material_extruder como support_material_interface_extruder " +"deben configurarse en 0)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"La Torre de Limpieza no se permite ahora para impresiones secuenciales " +"multimaterial." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"La Torre de Limpieza solo es compatible con las variantes de código G usadas " +"por Marlin, RepRap/Sprinter, RepRapFirmware y Repetier." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"En la actualidad, Wipe Tower solo es compatible con el direccionamiento " +"relativo del extrusor (use_relative_e_distances=1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"La torre de limpieza sólo se permite para varios objetos si se imprimen " +"sobre un número igual de capas de balsa" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"La torre de limpieza sólo es compatible con varios objetos si se imprimen " +"con la misma support_material_contact_distance" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"La torre de limpieza sólo es compatible con varios objetos si se cortan por " +"igual." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"La torre de limpieza sólo es compatible con varios objetos si tienen alturas " +"de capas iguales" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"La opción Limpiar no está disponible cuando se usa el modo Retracción de " +"firmware. ¿Lo inhabilito para habilitar la Retracción de firmware?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"La Torre de Limpieza solo es compatible si todos los objetos tienen la misma " +"altura de capa variable" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -12983,20 +12602,21 @@ msgstr "" "compensar el aplatamiento de la 1ª capa, también conocido como efecto Pie de " "Elefante." -#: src/slic3r/GUI/Plater.cpp:5717 -msgid "The following characters are not allowed by a FAT file system:" -msgstr "" -"Los siguientes caracteres no están permitidos por un sistema de archivos FAT:" - -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "los siguientes caracteres no están permitidos:" - #: src/slic3r/GUI/ConfigWizard.cpp:2459 msgid "The following FFF printer models have no filament selected:" msgstr "" "Los siguientes modelos de impresoras FFF no tienen filamento seleccionado:" +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "" +"Los siguientes modelos de impresoras SLA no tienen filamento seleccionado:" + +#: src/slic3r/GUI/Plater.cpp:5717 +msgid "The following characters are not allowed by a FAT file system:" +msgstr "" +"Los siguientes caracteres no están permitidos por un sistema de archivos FAT:" + #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -13052,15 +12672,6 @@ msgid "" msgstr "" "Los siguientes atajos son aplicables cuando el gizmo especificado está activo" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "" -"Los siguientes modelos de impresoras SLA no tienen filamento seleccionado:" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "el siguiente sufijo no está permitido:" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "Se sustituyeron los siguientes valores:" @@ -13388,6 +12999,15 @@ msgstr "" "El proyecto seleccionado no está disponible.\n" "¿Desea eliminarlo de la lista de proyectos recientes?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"La impresión secuencial está activada.\n" +"Es imposible aplicar cualquier código G personalizado para los objetos que " +"se imprimen secuencialmente." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13400,15 +13020,6 @@ msgstr "" "secuencialmente.\n" "Este código no se procesará durante la generación del G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"La impresión secuencial está activada.\n" -"Es imposible aplicar cualquier código G personalizado para los objetos que " -"se imprimen secuencialmente." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "El tamaño del objeto puede ser especificado en pulgadas" @@ -13417,14 +13028,6 @@ msgstr "El tamaño del objeto puede ser especificado en pulgadas" msgid "The size of the object is zero" msgstr "El tamaño del objeto es cero" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"El archivo SLA no contiene ningún ajuste. Por favor, activa primero algún " -"preajuste de la impresora SLA antes de importar ese archivo SLA." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13448,32 +13051,6 @@ msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "" "La velocidad para las retracciones (solo se aplica al motor del extrusor)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"El modo Vaso Espiral necesita:\n" -"-un perímetro\n" -"-cero capas de tapa superior\n" -"-0% densidad de relleno\n" -"-sin soportes\n" -"-Comprueba que está activado el espesor de pared vertical\n" -"-Desactiva la detección de paredes finas" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "" -"La opción Vaso en espiral solo puede ser usada al imprimir objetos de un " -"solo material." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "El nombre proporcionado está vacío. No se puede guardar." @@ -13527,104 +13104,6 @@ msgstr "" "support_material_contact_distance se utilizará para las distancias Z de " "contacto superior e inferior." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"La opción Limpiar no está disponible cuando se usa el modo Retracción de " -"firmware. ¿Lo inhabilito para habilitar la Retracción de firmware?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"La Torre de Limpieza actualmente no es compatible con E volumétrico " -"(use_volumetric_e=0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"La Torre de Limpieza actualmente admite los soportes no solubles solo si " -"están impresos con el extrusor actual sin activar un cambio de " -"herramienta. \n" -"(tanto support_material_extruder como support_material_interface_extruder " -"deben configurarse en 0)." - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"La Torre de Limpieza actualmente admite los soportes no solubles solo si " -"están impresos con el extrusor actual sin activar un cambio de herramienta. " -"(Tanto support_material_extruder como support_material_interface_extruder " -"deben configurarse en 0)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"La Torre de Limpieza no se permite ahora para impresiones secuenciales " -"multimaterial." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"La Torre de Limpieza solo es compatible con las variantes de código G usadas " -"por Marlin, RepRap/Sprinter, RepRapFirmware y Repetier." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"En la actualidad, Wipe Tower solo es compatible con el direccionamiento " -"relativo del extrusor (use_relative_e_distances=1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"La torre de limpieza sólo se permite para varios objetos si se imprimen " -"sobre un número igual de capas de balsa" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"La torre de limpieza sólo es compatible con varios objetos si se imprimen " -"con la misma support_material_contact_distance" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"La torre de limpieza sólo es compatible con varios objetos si se cortan por " -"igual." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"La torre de limpieza sólo es compatible con varios objetos si tienen alturas " -"de capas iguales" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13633,14 +13112,6 @@ msgstr "" "La torre de limpieza solo es compatible si todos los extrusores tienen el " "mismo diámetro del nozzle y usan filamento del mismo diámetro." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"La Torre de Limpieza solo es compatible si todos los objetos tienen la misma " -"altura de capa variable" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "Hay avisos activos respecto a los modelos laminados:" @@ -13692,6 +13163,18 @@ msgstr "Puentes gruesos" msgid "This %s version: %s" msgstr "Esta %s versión: %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Este código G se utilizará como código para el cambio de color" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Este código G se utilizará como código para la pausa de impresión" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Este código G se utilizará como código personalizado" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -13963,18 +13446,6 @@ msgstr "" "Esta bandera moverá la boquilla mientras se retrae para minimizar la posible " "mancha en los extrusores con fugas." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Este código G se utilizará como código para el cambio de color" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Este código G se utilizará como código para la pausa de impresión" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Este código G se utilizará como código personalizado" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "Este es un ajuste por defecto." @@ -14409,10 +13880,6 @@ msgstr "" "para conseguir cambios de herramienta fiables con materiales flexibles que " "pueden necesitar más tiempo para encogerse a su tamaño original." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "a" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes." @@ -14448,10 +13915,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "Activar reflejo del eje %c" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "demasiados archivos" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "Demasiados agujeros superpuestos." @@ -14506,6 +13969,10 @@ msgstr "" "Sugerencia de grosor de la carcasa superior / inferior: no disponible debido " "a una altura de capa inválida." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Vista superior" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "Distancia Z de contacto superior" @@ -14528,10 +13995,6 @@ msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "" "La tapa superior es de %1% mm de espesor con una altura de capa de %2% mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "relleno sólido superior" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14542,10 +14005,6 @@ msgstr "Relleno sólido superior" msgid "Top solid layers" msgstr "Capas solidas superiores" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Vista superior" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Solo en la superficie superior" @@ -14627,6 +14086,34 @@ msgstr "Tipo de impresora." msgid "Type:" msgstr "Tipo:" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "CANDADO ABIERTO" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas " +"configuraciones y no son iguales a los valores del sistema (o " +"predeterminados) para el grupo de opciones actual.\n" +"Haz clic para restablecer todas las configuraciones para el grupo de " +"opciones actual a los valores del sistema (o predeterminados)." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas " +"configuraciones y no son iguales a los valores del sistema (o " +"predeterminados).\n" +"Haz clic para reiniciar el valor actual a los del sistema (o predeterminados)" + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "No se puede perforar la configuración actual de agujeros en el modelo." @@ -14670,10 +14157,6 @@ msgstr "Grupo sin definir" msgid "Undefined" msgstr "Indefinido" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "error no definido" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "Subflujo" @@ -14695,6 +14178,10 @@ msgstr[1] "Deshacer %1$d Acciones" msgid "Undo / Redo is processing" msgstr "Deshacer / Rehacer se está procesando" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Deshacer Historia" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "Deshacer la integración en el escritorio ha fallado." @@ -14703,10 +14190,6 @@ msgstr "Deshacer la integración en el escritorio ha fallado." msgid "Undo desktop integration was successful." msgstr "Deshacer la integración en el escritorio ha sido un éxito." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Deshacer Historia" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14718,10 +14201,6 @@ msgstr "" "dedeshacer/rehacer para ver el historial de cambios y deshacer o " "rehacer varias acciones a la vez?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "tamaño de descompresión inesperado" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14738,10 +14217,6 @@ msgstr "Ha ocurrido un error desconocido" msgid "Unknown error occured during exporting G-code." msgstr "Se produjo un error desconocido durante la exportación del código G." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "descargado" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "Velocidad de descarga" @@ -14750,34 +14225,6 @@ msgstr "Velocidad de descarga" msgid "Unloading speed at the start" msgstr "Velocidad de descarga al inicio" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "CANDADO ABIERTO" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas " -"configuraciones y no son iguales a los valores del sistema (o " -"predeterminados) para el grupo de opciones actual.\n" -"Haz clic para restablecer todas las configuraciones para el grupo de " -"opciones actual a los valores del sistema (o predeterminados)." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas " -"configuraciones y no son iguales a los valores del sistema (o " -"predeterminados).\n" -"Haz clic para reiniciar el valor actual a los del sistema (o predeterminados)" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Cambios No guardados" @@ -14786,26 +14233,6 @@ msgstr "Cambios No guardados" msgid "Unselect gizmo or clear selection" msgstr "Deseleccionar gizmo o borrar selección" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "tamaño del directorio central no compatible" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "encriptación no compatible" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "característica no compatible" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "método no compatible" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "archivo multidisk no compatible" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "Versión de OpenGL no soportada" @@ -14819,10 +14246,6 @@ msgstr "Selección no soportada" msgid "Untitled" msgstr "Sin título" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "hasta" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "Actualización disponible" @@ -14892,6 +14315,10 @@ msgstr "" "Utiliza \"Incluso-extraño\" para los modelos de avión de 3DLabPrint. Utiliza " "\"Cerrar agujeros\" para cerrar todos los agujeros del modelo." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Usa la resolución de Retina para la escena 3D" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Usar otro extrusor" @@ -14946,10 +14373,6 @@ msgstr "Usar cámara en perspectiva" msgid "Use relative E distances" msgstr "Usar las distancias relativas en E" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Usa la resolución de Retina para la escena 3D" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "Utilizar el menú del sistema para la aplicación" @@ -14974,15 +14397,6 @@ msgstr "" msgid "Use volumetric E" msgstr "Usar E volumétrico" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "usado" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Filamento usado" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Filamento Usado (g)" @@ -15011,6 +14425,11 @@ msgstr "Material usado (ml)" msgid "Used Material (unit)" msgstr "Material usado (unidades)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Filamento usado" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Usuario" @@ -15021,10 +14440,6 @@ msgstr "Usuario" msgid "User presets" msgstr "Ajustes de usuario" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "validación fallida" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "El valor es el mismo que el del sistema" @@ -15045,6 +14460,11 @@ msgstr "Los valores en esta columna son para el modo Normal" msgid "Values in this column are for Stealth mode" msgstr "Los valores en esta columna son para el modo Silencioso" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Altura de capa variable" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -15058,11 +14478,6 @@ msgstr "" "herramientaAltura de capa variable. (No disponible para impresoras " "SLA.)" -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Altura de capa variable" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Altura de capa variable - Adaptativa" @@ -15079,14 +14494,6 @@ msgstr "Altura de capa variable - Reiniciar" msgid "Variable layer height - Smooth all" msgstr "Altura de capa variable - Suavizar todo" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "variantes" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "fabricante" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Vendedor:" @@ -15100,18 +14507,14 @@ msgstr "Código G detallado" msgid "Version" msgstr "Versión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "versión" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Control Deslizante Vertical" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "Carcasas verticales" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Control Deslizante Vertical" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15189,6 +14592,37 @@ msgstr "Tasa de flujo volumétrico (mm³/seg)" msgid "Volumetric speed" msgstr "Velocidad volumétrica" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "AVISO:" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "VIÑETA BLANCA" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "El icono de VIÑETA BLANCA un ajuste no del sistema (o no por defecto)" + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"El símbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de " +"la última vez que salvaste los ajustes para el grupo de opciones actual." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"El símbolo de VIÑETA BLANCA indica que los valores son los mismos que los de " +"los ajustes guardados la última vez." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Espesor de pared" @@ -15201,13 +14635,6 @@ msgstr "Espesor de pared" msgid "Warning" msgstr "Peligro" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "AVISO:" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15266,10 +14693,6 @@ msgstr "" "proyecto en la aplicación, muestra un cuadro de diálogo que solicita " "seleccionar la acción a realizar en el archivo a cargar." -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "al imprimir" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15362,30 +14785,6 @@ msgstr "" "Cuando la retracción se compensa después de un movimiento, el extrusor " "necesitará introducir más filamento. Este ajuste raramente se necesita." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "VIÑETA BLANCA" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "El icono de VIÑETA BLANCA un ajuste no del sistema (o no por defecto)" - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"El símbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de " -"la última vez que salvaste los ajustes para el grupo de opciones actual." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"El símbolo de VIÑETA BLANCA indica que los valores son los mismos que los de " -"los ajustes guardados la última vez." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "Palabra completa" @@ -15430,6 +14829,11 @@ msgstr "" msgid "Wipe" msgstr "Limpiar" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "Torre de limpieza" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "Limpiar en el objeto" @@ -15448,15 +14852,6 @@ msgstr "Opciones de limpieza" msgid "Wipe tower" msgstr "Torre de limpieza" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "torre de limpieza" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "Torre de limpieza" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "Torre de limpieza - Ajuste del volumen de purga" @@ -15481,10 +14876,6 @@ msgstr "Ãngulo de rotación de la torre de limpieza con respecto al eje X." msgid "Wipe while retracting" msgstr "Limpiar mientras se retrae" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "con una tasa volumétrica" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15534,10 +14925,6 @@ msgstr "" "problema con la nueva versión.\n" "Updated configuration bundles:" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "fallo write calledback" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "Escribir información sobre el modelo en la consola." @@ -15550,6 +14937,10 @@ msgstr "Contraseña incorrecta" msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordenada X de la esquina frontal izquierda de la torre de limpieza" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "Compensación de tamaño XY" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "Separación XY entre un objeto y su soporte" @@ -15562,10 +14953,6 @@ msgstr "" "Separación XY entre un objeto y su soporte. Si se expresa como porcentaje " "(por ejemplo 50%), se calculará sobre el ancho del perímetro externo." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "Compensación de tamaño XY" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordenada Y de la esquina delantera izquierda de la torre de limpieza" @@ -15629,6 +15016,10 @@ msgstr "" "Puede poner sus notas personales aquí. Este texto se añadirá al código G " "como comentarios." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "Puede poner tus notas sobre el material de impresión de SLA aquí." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "Puede poner sus notas con respecto al filamento aquí." @@ -15637,10 +15028,6 @@ msgstr "Puede poner sus notas con respecto al filamento aquí." msgid "You can put your notes regarding the printer here." msgstr "Puede poner sus notas con respecto a la impresora aquí." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "Puede poner tus notas sobre el material de impresión de SLA aquí." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -15872,6 +15259,622 @@ msgstr "" "Zoom a objetos seleccionados\n" "o a todos los objetos en escena, si no se seleccionó ninguno" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "sobre" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "activo" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "asignación fallida" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "segundos aproximadamente" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "el archivo es demasiado grande" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "basado en Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "buffer demasiado pequeño" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "por el máximo perfil de impresión" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "compresión fallida" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "continuar" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "descompresión fallida o archivo está dañado" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "por defecto" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "perfil de material de SLA por defecto" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "perfil de impresión de SLA por defecto" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "color predeterminado" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "perfil de filamento por defecto" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "perfil de impresión por defecto" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "valor por defecto" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "borra" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "difiere del archivo original" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "no contiene gcode válido." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "a excepción de las %1% primeras capas." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "a excepción de la primera capa." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "perímetros externos" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "búsqueda de directorio central fallida" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "filamento" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "filamentos" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "cierre del archivo fallido" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "creación del archivo fallida" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "archivo no encontrado" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "apertura de archivo fallida" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "lectura del archivo fallida" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "búsqueda de archivo fallida" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "estadística de archivos fallida" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "archivo demasiado grande" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "escritura del archivo fallida" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "se maximiza el flujo de material" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"para el botón izquierdo: indica un ajuste que no es del sistema (o no " +"predeterminado),\n" +"para el botón derecho: indica que la configuración no se ha modificado." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "desde" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "nombre completo perfil" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "avisos generados" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "en" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"indica que se modificaron algunas configuraciones y no son iguales a los " +"valores del sistema (o predeterminados) para el grupo de opciones actual.\n" +"Haz clic en el icono CANDADO DESBLOQUEADO para restablecer todos los ajustes " +"del grupo de opciones actual a los valores del sistema (o predeterminados)." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"indica que los ajustes son los mismos que los valores del sistema (o por " +"defecto) para el grupo de opciones actual" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"indica que los ajustes cambiaron y no son iguales que los ajustes grabados " +"la última vez para el grupo de opciones actual.\n" +"Haz clic en el símbolo de FLECHA ATRÃS para resetear todos los ajustes del " +"grupo de opciones actual a los grabados la vez anterior." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "relleno" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "error interno" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "nombre de archivo inválido" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "encabezado inválido o archivo está dañado" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "parámetro inválido" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "está basado en Slic3r de Alessandro Ranellucci y la comunidad RepRap." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "está licenciado bajo el/los" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "capas" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "cargado" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "máxima versión PrusaSlicer" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "mínima versión PrusaSlicer" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (cero para deshabilitar)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm o %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm or % (cero para deshabilitar)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s o %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "modelo" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "modificado" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "dinero/botella" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "dinero/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "modo normal" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "no es un archivo ZIP" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "boquilla" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "objeto" +msgstr[1] "objetos" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "objetos" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "del Objeto actual" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "o presiona la tecla \"+\"" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "nombre del parámetro" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "perímetros" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "imprimir" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "impresora" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "modelo de impresora" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "eliminar" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "requiere max. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "requiere min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "requiere un min. %s y un max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "$" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "relleno sólido" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "modo silencioso" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "soporte" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "interfaz de soporte" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "soportes y pad" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "nombre perfil simbólico" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "los siguientes caracteres no están permitidos:" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "el siguiente sufijo no está permitido:" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "a" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "demasiados archivos" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "relleno sólido superior" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "error no definido" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "tamaño de descompresión inesperado" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "descargado" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "tamaño del directorio central no compatible" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "encriptación no compatible" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "característica no compatible" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "método no compatible" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "archivo multidisk no compatible" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "hasta" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "usado" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "validación fallida" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "variantes" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "fabricante" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "versión" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "al imprimir" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "torre de limpieza" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "con una tasa volumétrica" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "fallo write calledback" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -17028,6 +17031,10 @@ msgstr "Se llamó a AddToPropertyCollection sin añadidor válido" msgid "Adding book %s" msgstr "Añadiendo libro %s" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "Avanzado" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Después de un párrafo:" @@ -17295,6 +17302,10 @@ msgstr "Borde" msgid "Borders" msgstr "Bordes" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Inferior" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Margen inferior (mm):" @@ -18105,6 +18116,10 @@ msgstr "Copiado en el portapapeles:\"%s\"" msgid "Copies:" msgstr "Copias:" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Copiar" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Copiar selección" diff --git a/resources/localization/fr/PrusaSlicer.mo b/resources/localization/fr/PrusaSlicer.mo index d2d280e030..960ded3665 100644 Binary files a/resources/localization/fr/PrusaSlicer.mo and b/resources/localization/fr/PrusaSlicer.mo differ diff --git a/resources/localization/fr/PrusaSlicer_fr.po b/resources/localization/fr/PrusaSlicer_fr.po index 0e32aa2609..f6298879b7 100644 --- a/resources/localization/fr/PrusaSlicer_fr.po +++ b/resources/localization/fr/PrusaSlicer_fr.po @@ -1,11 +1,11 @@ msgid "" msgstr "" -"Language: fr_FR\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -16,6 +16,22 @@ msgstr "" "\"%1%\" est désactivé car \"%2%\" est activé dans la catégorie \"%3%\".\n" "Pour activer \"%1%\", veuillez désactiver \"%2%\"" +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"\"G92 E0\" a été trouvé dans before_layer_gcode, ce qui est incompatible " +"avec l'adressage absolu de l'extrudeur." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"\"G92 E0\" a été trouvé dans layer_gcode, ce qui est incompatible avec " +"l'adressage absolu de l'extrudeur." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -108,6 +124,12 @@ msgid_plural "%1% (%2$d shells)" msgstr[0] "%1% (%2$d coque)" msgstr[1] "%1% (%2$d coques)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% Préréglage" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -117,12 +139,6 @@ msgstr "" "Les %1% marqués d'une * ne sont pas compatibles avec certaines " "imprimantes installées." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% Préréglage" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -184,6 +200,16 @@ msgstr "%s - MODIFICATION IMPACTANTE" msgid "%s - Drop project file" msgstr "%s - Déposer le fichier de projet" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "Famille %s" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "Mode de Vue de %s" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -199,11 +225,6 @@ msgstr "%s ne supporte pas un pourcentage" msgid "%s error" msgstr "Erreur %s" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "Famille %s" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -214,6 +235,17 @@ msgstr "%s a un avertissement" msgid "%s has encountered an error" msgstr "%s a rencontré une erreur" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de " +"mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela " +"peut également être un bug et nous aimerions que vous le signaliez." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -229,17 +261,6 @@ msgstr "" "\n" "L'application va maintenant fermer." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de " -"mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela " -"peut également être un bug et nous aimerions que vous le signaliez." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -288,11 +309,6 @@ msgstr "" "Veuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages " "et éventuellement accepter les mises à jour de réglage automatiques." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "Mode de Vue de %s" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -447,22 +463,14 @@ msgstr "Fenê&tre" msgid "(All)" msgstr "(Tout)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(bobine incluse)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(minimum)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "(Re)Découper Main&tenant" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Re)découper" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "(Re)Découper Main&tenant" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(Certaines lignes ne sont pas représentées)" @@ -471,6 +479,14 @@ msgstr "(Certaines lignes ne sont pas représentées)" msgid "(Unknown)" msgstr "(Inconnu)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(bobine incluse)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(minimum)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") non trouvé." @@ -531,10 +547,6 @@ msgstr "3 (important)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "Vue d'éditeur 3D" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "Nid d'abeille 3D" @@ -543,6 +555,10 @@ msgstr "Nid d'abeille 3D" msgid "3D Mouse disconnected." msgstr "Souris 3D déconnectée." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "Vue d'éditeur 3D" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "Paramètres 3Dconnexion" @@ -583,10 +599,6 @@ msgstr "" "Une copie du préréglage système actuel sera créé, et il sera détaché du " "préréglage système." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Un nouveau filament a été installé et il sera activé." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "Une nouvelle imprimante a été installée et elle sera activée." @@ -595,6 +607,10 @@ msgstr "Une nouvelle imprimante a été installée et elle sera activée." msgid "A new SLA material was installed and it will be activated." msgstr "Un nouveau matériel SLA a été installé et il sera activé." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Un nouveau filament a été installé et il sera activé." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -633,6 +649,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "Un parcours d'outil en dehors de la zone d'impression a été détecté." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "Clé API / Mot de Passe" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "Clé API" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "Annuler" @@ -642,10 +666,6 @@ msgstr "Annuler" msgid "About %s" msgstr "Au sujet de %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "au-dessus" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Au-delà de Z" @@ -678,10 +698,6 @@ msgstr "Activer" msgid "Active" msgstr "Actif" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "actif" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adaptatif" @@ -712,6 +728,60 @@ msgid "Add \"%1%\" as a next preset for the the physical printer \"%2%\"" msgstr "" "Ajouter \"%1%\" comme préréglage suivant pour l'imprimante physique \"%2%\"" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "Ajouter un Sous-objet Générique" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "Ajouter une Zone de Hauteur" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "Ajouter une Instance à l'objet sélectionné" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "Ajouter des couches" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "Ajouter une Combinaison de Réglages pour la zone de Hauteur" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "Ajouter une Combinaison de Réglages pour l'Objet" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "Ajouter une Combinaison de Réglages pour le Sous-objet" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "Ajouter des Réglages pour les Couches" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "Ajouter des Réglages pour un Objet" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "Ajouter des Réglages pour un Sous-objet" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "Ajouter une Forme" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "Ajouter une Forme depuis la Galerie" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "Ajouter des formes à partir de la Galerie" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Ajouter une base sous le modèle supporté" @@ -782,33 +852,15 @@ msgstr "Ajouter un changement d'extrudeur - Clic gauche" msgid "Add extruder to sequence" msgstr "Ajouter l'extrudeur à la séquence" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "Ajouter un Sous-objet Générique" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "Ajouter une Zone de Hauteur" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "Ajouter l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "Ajouter une Instance à l'objet sélectionné" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "Ajouter une zone de couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "Ajouter des couches" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "Ajouter un modificateur" @@ -868,42 +920,6 @@ msgstr "Ajouter la ou les formes sélectionnées au plateau" msgid "Add settings" msgstr "Ajouter des réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "Ajouter une Combinaison de Réglages pour la zone de Hauteur" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "Ajouter une Combinaison de Réglages pour l'Objet" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "Ajouter une Combinaison de Réglages pour le Sous-objet" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "Ajouter des Réglages pour les Couches" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "Ajouter des Réglages pour un Objet" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "Ajouter des Réglages pour un Sous-objet" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "Ajouter une Forme" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "Ajouter une Forme depuis la Galerie" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "Ajouter des formes à partir de la Galerie" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -959,14 +975,14 @@ msgstr "Ajouter/Supprimer des préréglages" msgid "Add/Remove printers" msgstr "Ajouter/Supprimer des imprimantes" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Informations complémentaires :" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Réglages Additionnels" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Informations complémentaires :" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -979,26 +995,19 @@ msgstr "" msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" msgstr "Avancé" -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "Mode avancé" - #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "Vue en Mode Avancé" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "Mode avancé" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "Avancé : journal de Sortie" @@ -1023,14 +1032,14 @@ msgstr "" msgid "After layer change G-code" msgstr "G-Code après changement de couche" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Aligner le modèle sur le point défini." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Aligner XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Aligner le modèle sur le point défini." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Aligné" @@ -1097,10 +1106,6 @@ msgstr "Tous les préréglages utilisateur seront supprimés." msgid "All walls" msgstr "Toutes les parois" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "échec de l'allocation" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "N'autoriser qu'une seule instance de PrusaSlicer" @@ -1199,6 +1204,10 @@ msgstr "" "Un objet a des générateurs de supports personnalisés qui ne seront pas " "utilisés car les supports sont désactivés." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "Un objet en dehors de la zone d'impression a été détecté." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1207,10 +1216,6 @@ msgstr "" "Un objet en dehors de la zone d'impression a été détecté.\n" "Résolvez le problème actuel pour continuer le découpage." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "Un objet en dehors de la zone d'impression a été détecté." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "Une erreur inattendue s'est produite" @@ -1231,14 +1236,6 @@ msgstr "" "Toute modification doit être enregistrée comme un nouveau préréglage hérité " "de celui-ci." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "Clé API" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "Clé API / Mot de Passe" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Préférences de l'application" @@ -1261,18 +1258,10 @@ msgstr "Appliquer le changement de couleur automatiquement" msgid "Apply to all the remaining small objects being loaded." msgstr "Appliquer à tous les petits objets restants en cours de chargement." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "secondes approximatives" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Accords archimédiens" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "l'archive est trop volumineuse" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1304,6 +1293,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "Voulez-vous vraiment supprimer l'imprimante \"%1%\" ?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "Voulez-vous vraiment supprimer toutes les substitutions ?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "Êtes-vous certain de vouloir le faire ?" @@ -1560,14 +1553,22 @@ msgstr "Purger les valeurs de configuration inconnues" msgid "Balanced" msgstr "Équilibré" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "basé sur Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Plateau" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "Forme du plateau" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "Forme du Plateau et Taille" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Température du Plateau :" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "Modèle personnalisé de lit" @@ -1584,18 +1585,10 @@ msgstr "Remplissage du plateau annulé." msgid "Bed filling done." msgstr "Remplissage du plateau terminé." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "Forme du plateau" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "Forme du plateau" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "Forme du Plateau et Taille" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Température du plateau" @@ -1609,10 +1602,6 @@ msgstr "" "zéro pour désactiver les commandes de contrôle de température du plateau " "dans la sortie." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Température du Plateau :" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1622,14 +1611,14 @@ msgstr "G-Code avant changement de couche" msgid "Before roll back" msgstr "Avant le retour en arrière" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Sous l'objet" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "En-deçà de Z" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Sous l'objet" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "Meilleure qualité de surface" @@ -1668,13 +1657,14 @@ msgstr "Volume de la bouteille" msgid "Bottle weight" msgstr "Poids de la bouteille" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" -msgstr "Dessous" +msgstr "Du bas" + +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Vue du Dessous" #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" @@ -1703,10 +1693,6 @@ msgstr "" msgid "Bottom solid layers" msgstr "Couches solides inférieures" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Vue du Dessous" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1805,10 +1791,6 @@ msgstr "Taille du pinceau" msgid "Bucket fill" msgstr "Pot de peinture" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "buffer trop petit" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1834,18 +1816,30 @@ msgstr "" "Remarque : ce nom peut être modifié ultérieurement dans les réglages des " "imprimantes physiques" -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "par le maximum du profil de l'imprimante" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "ANNULÉ" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "TERMINÉ" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "Échec du test CRC-32" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"L'initialisation de CURL a échoué. PrusaSlicer ne pourra pas établir de " +"connexions réseau. Voir les journaux pour plus de détails." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Caméra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Vue caméra" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1856,6 +1850,10 @@ msgstr "" "Saviez-vous que vous pouvez utiliser les touches numériques 0-6 pour " "basculer rapidement entre les angles de caméra prédéfinis ?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Vue caméra" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "Ne peut pas s'appliquer lors du processus de prévisualisation." @@ -1878,10 +1876,6 @@ msgstr "Annuler la sélection" msgid "Cancel upload" msgstr "Annuler le téléchargement" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "ANNULÉ" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "Annulé" @@ -1985,30 +1979,10 @@ msgstr "" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "Changer \"%1%\" par \"%2%\" pour cette imprimante physique \"%3%\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "Changer le type d'appareil photo (perspective, orthographique)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "Changer le diamètre du trou de drainage" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "Changer l'extrudeur" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "Changer d'Extrudeur" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "Changer l'extrudeur (N/A)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "Changer la couleur de l'extrudeur" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "Changer les Extrudeurs" @@ -2022,6 +1996,26 @@ msgstr "Modifier l'Option %s" msgid "Change Part Type" msgstr "Changer le Type de Partie" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "Changer le type d'appareil photo (perspective, orthographique)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "Changer le diamètre du trou de drainage" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "Changer l'extrudeur" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "Changer l'extrudeur (N/A)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "Changer la couleur de l'extrudeur" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "Changer le diamètre de la tête de la pointe" @@ -2059,6 +2053,10 @@ msgstr "" "l'application.\n" "Vous perdrez le contenu du plateau." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Vérifier les mises à jour de configuration" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Vérifier les mises à jour de l'application" @@ -2067,9 +2065,9 @@ msgstr "Vérifier les mises à jour de l'application" msgid "Check for configuration updates" msgstr "Vérifier les mises à jour de configuration" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Vérifier les mises à jour de configuration" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "Choisir l'archive SLA :" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2089,6 +2087,10 @@ msgid "Choose an STL file to import bed shape from:" msgstr "" "Choisissez un fichier STL à partir duquel importer la forme du plateau :" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Choisissez un fichier PNG :" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Choisir un fichier (3MF/AMF) :" @@ -2105,14 +2107,6 @@ msgstr "Choisissez un ou plusieurs fichiers (STL, OBJ) :" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Choisir un ou plusieurs fichiers (STL/OBJ/AMF/3MF/PRUSA) :" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Choisissez un fichier PNG :" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "Choisir l'archive SLA :" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Choisissez le type de firmware utilisé par votre imprimante." @@ -2127,10 +2121,6 @@ msgstr "Cercle" msgid "Circular" msgstr "Circulaire" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Tout effacer" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Vider la pile Annuler / Rétablir sur un nouveau projet" @@ -2142,6 +2132,10 @@ msgstr "" "Vider la pile Annuler / Rétablir sur un nouveau projet ou lorsqu'un projet " "existant est chargé." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Tout effacer" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "" @@ -2195,11 +2189,6 @@ msgstr "Fermer" msgid "Close holes" msgstr "Fermer les trous" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Intervalle d'espacement" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "Fermeture de PrusaSlicer lorsque certains préréglages sont modifiés." @@ -2208,6 +2197,11 @@ msgstr "Fermeture de PrusaSlicer lorsque certains préréglages sont modifiés." msgid "Closing PrusaSlicer. Current project is modified." msgstr "Fermeture de PrusaSlicer. Le projet en cours est modifié." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Intervalle d'espacement" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "Rayon de fermeture" @@ -2224,6 +2218,15 @@ msgstr "Réduire/développer la barre latérale" msgid "Color" msgstr "Couleur" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "G-code de changement de couleur" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Couleur d'Impression" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "Changement de couleur" @@ -2238,10 +2241,6 @@ msgstr "Changement de couleur (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Changement de couleur (\"%1%\") pour l'extrudeur %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "G-code de changement de couleur" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "G-code de changement de couleur" @@ -2250,11 +2249,6 @@ msgstr "G-code de changement de couleur" msgid "Color changes" msgstr "Changements de couleur" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Couleur d'Impression" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Hauteur du Colorprint" @@ -2289,15 +2283,15 @@ msgstr "Commandes" msgid "Comment:" msgstr "Commentaire :" -#: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" -msgstr "Comparer les Préréglages" - #: src/slic3r/GUI/MainFrame.cpp:1417 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 msgid "Compare Presets" msgstr "Comparer les préréglages" +#: src/slic3r/GUI/MainFrame.cpp:1417 +msgid "Compare presets" +msgstr "Comparer les Préréglages" + #: src/slic3r/GUI/Tab.cpp:216 msgid "Compare this preset with some another" msgstr "Comparez ce préréglage avec un autre" @@ -2330,14 +2324,6 @@ msgstr "Compléter les objets individuels" msgid "Completed" msgstr "Terminé" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "TERMINÉ" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "échec de la compression" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2355,6 +2341,24 @@ msgstr "Assistant de Co&nfiguration" msgid "Configuration Assistant" msgstr "Assistant de Configuration" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Instantanés de Configuration capturés" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"Les mises à jour de configuration entraînent une perte de modification des " +"préréglages.\n" +"Vérifiez donc les modifications non enregistrées et enregistrez-les si " +"nécessaire." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Assistant de Configuration" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2397,10 +2401,6 @@ msgstr "" "d'avant en arrière entre les instantanés à l'aide du menu Configuration - " "Instantanés de configuration." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Instantanés de Configuration capturés" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Mise à jour de la configuration" @@ -2417,20 +2417,6 @@ msgstr "Une mise à jour de la configuration est disponible." msgid "Configuration updates" msgstr "Mises à jour de la configuration" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"Les mises à jour de configuration entraînent une perte de modification des " -"préréglages.\n" -"Vérifiez donc les modifications non enregistrées et enregistrez-les si " -"nécessaire." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Assistant de Configuration" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Confirmation" @@ -2501,11 +2487,6 @@ msgstr "" msgid "Connection to OctoPrint works correctly." msgstr "La connexion avec OctoPrint fonctionne correctement." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "" -"La connexion aux imprimantes connectées via l'hôte d'impression a échoué." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "La connexion à à la Prusa SL1 / SL1S fonctionne correctement." @@ -2518,9 +2499,10 @@ msgstr "La connexion à PrusaLink fonctionne correctement." msgid "Connection to Repetier works correctly." msgstr "La connexion à Repetier fonctionne correctement." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "continuer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "" +"La connexion aux imprimantes connectées via l'hôte d'impression a échoué." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2609,25 +2591,26 @@ msgstr "Position du tube de refroidissement" msgid "Copies of the selected object" msgstr "Copies de l'objet sélectionné" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" -msgstr "Copier" +msgstr "Copie" + +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Copier les Infos de Version" #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Copier la sélection dans le presse-papier" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papier" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Copier dans le Presse-Papier" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Copier les Infos de Version" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papier" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2782,10 +2765,6 @@ msgstr "" "fermeture de l'espacement peut réduire la résolution de l'impression finale, " "aussi est-il conseillé de conserver une valeur relativement basse." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "Échec du test CRC-32" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "Créer un socle autour de l'objet et ignorer l'élévation du support" @@ -2825,14 +2804,6 @@ msgstr "Ctrl + molette de la souris" msgid "Cubic" msgstr "Cubique" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"L'initialisation de CURL a échoué. PrusaSlicer ne pourra pas établir de " -"connexions réseau. Voir les journaux pour plus de détails." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2950,10 +2921,6 @@ msgstr "Zone morte :" msgid "Decimate ratio" msgstr "Rapport de décimation" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "la décompression a échoué ou l'archive est corrompue" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Diminuer les Instances" @@ -2964,16 +2931,9 @@ msgstr "Diminuer les Instances" msgid "Default" msgstr "Défaut" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "défaut" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "Profil par défaut du matériau SLA" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2989,18 +2949,10 @@ msgstr "" msgid "Default color" msgstr "Couleur par défaut" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "couleur par défaut" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "Largeur d'extrusion par défaut" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "profil du filament par défaut" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "Profil de filament par défaut" @@ -3015,10 +2967,6 @@ msgstr "" "sélectionnant le profil d'imprimante courant, ce profil de filament sera " "activé." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "profil d'impression par défaut" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "Profil de filament par défaut" @@ -3034,22 +2982,6 @@ msgstr "" "sélectionnant le profil d'imprimante courant, ce profil de filament sera " "activé." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "profil par défaut du matériau SLA" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "Profil par défaut du matériau SLA" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "profil d'impression SLA par défaut" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "valeur par défaut" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "Définissez un profil d'imprimante personnalisée" @@ -3070,10 +3002,6 @@ msgstr "" msgid "Delay after unloading" msgstr "Délai après le déchargement" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "supprimer" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3084,11 +3012,6 @@ msgstr "Supprimer" msgid "Delete &All" msgstr "Tout &Supprimer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "Tout Supprimer" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "Supprimer Toutes les Instances depuis l'Objet" @@ -3097,22 +3020,6 @@ msgstr "Supprimer Toutes les Instances depuis l'Objet" msgid "Delete All Objects" msgstr "Supprimer tous les objets" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "Supprimer le changement de couleur" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "Retirer le repère de changement de couleur pour la couche en cours" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "Supprimer le G-code personnalisé" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "Supprimer le trou de drainage" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "Supprimer la Zone de Hauteur" @@ -3125,33 +3032,15 @@ msgstr "Supprimer l'Instance" msgid "Delete Object" msgstr "Supprimer l'Objet" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"Supprimez une ou plusieurs formes personnalisées. Vous ne pouvez pas " -"supprimer les formes système" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "Supprimer l'Option %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "Supprimer la pause d'impression" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "Supprimer l'imprimante physique" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "Supprimer l'imprimante physique" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "Supprimer la sélection" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "Supprimer la Sélection" @@ -3172,6 +3061,45 @@ msgstr "Supprimer les Réglages" msgid "Delete Subobject" msgstr "Supprimer le sous-objet" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "Tout Supprimer" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "Supprimer le changement de couleur" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "Retirer le repère de changement de couleur pour la couche en cours" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "Supprimer le G-code personnalisé" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "Supprimer le trou de drainage" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"Supprimez une ou plusieurs formes personnalisées. Vous ne pouvez pas " +"supprimer les formes système" + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "Supprimer la pause d'impression" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "Supprimer l'imprimante physique" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "Supprimer la sélection" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "Supprimer un point de support" @@ -3249,10 +3177,6 @@ msgstr "Désélectionner tous les objets" msgid "Desktop Integration" msgstr "Intégration au bureau" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "L'intégration au bureau a échoué." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3263,6 +3187,10 @@ msgstr "" "\n" "Appuyez sur \"Exécuter\" pour continuer." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "L'intégration au bureau a échoué." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "L'intégration au bureau a réussi." @@ -3357,10 +3285,6 @@ msgstr "" "dans la vue 3D, choisissez Couches et Périmètres et ajustez les valeurs dans " "le panneau de droite. Lire la suite dans la documentation." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "diffère du fichier d'origine" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "Direction" @@ -3541,21 +3465,17 @@ msgstr "Voulez-vous enregistrer les modifications dans \"%1%\" ?" msgid "Do you want to save your manually edited support points?" msgstr "Voulez-vous sauvegarder vos points de support édités manuellement ?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "" -"Voulez-vous sélectionner les filaments par défaut pour ces modèles " -"d'imprimantes FFF ?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "" "Voulez-vous sélectionner les matériaux SLA par défaut pour ces modèles " "d'imprimantes ?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "ne contient pas de gcode valide." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "" +"Voulez-vous sélectionner les filaments par défaut pour ces modèles " +"d'imprimantes FFF ?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3651,10 +3571,38 @@ msgstr "Dynamique" msgid "E&xport" msgstr "E&xporter" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "ERREUR" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "ERREUR :" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"ERREUR : Veuillez d'abord fermer tous les manipulateurs disponibles dans la " +"barre d'outils de gauche" + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "" +"ERREUR : il n'y a pas assez de ressources pour exécuter une nouvelle tâche." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Éditer" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Éditer la Zone de Hauteur" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Éditer la couleur" @@ -3669,10 +3617,6 @@ msgstr "" msgid "Edit custom G-code" msgstr "Éditer un G-code personnalisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Éditer la Zone de Hauteur" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Modifier le message de pause d'impression" @@ -3705,10 +3649,6 @@ msgstr "Vectorisation d'Eigen prise en charge :" msgid "Ejec&t SD Card / Flash Drive" msgstr "Éje&cter la carte SD / la clé USB" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "Éjecter le lecteur" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "Éjecter la carte SD / la clef USB" @@ -3718,6 +3658,10 @@ msgid "Eject SD card / Flash drive after the G-code was exported to it." msgstr "" "Éjecter la carte SD / la clef USB une fois que la G-code y a été exporté." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "Éjecter le lecteur" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -4027,9 +3971,9 @@ msgstr "" msgid "Error" msgstr "Erreur" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "ERREUR" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Message d'erreur" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -4048,10 +3992,6 @@ msgstr "Erreur lors du remplacement" msgid "Error loading shaders" msgstr "Erreur lors du chargement des shaders" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Message d'erreur" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4091,31 +4031,11 @@ msgstr "Erreur!" msgid "Error! Invalid model" msgstr "Erreur ! Modèle invalide" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "ERREUR :" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Erreur : %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "" -"ERREUR : il n'y a pas assez de ressources pour exécuter une nouvelle tâche." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"ERREUR : Veuillez d'abord fermer tous les manipulateurs disponibles dans la " -"barre d'outils de gauche" - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4137,15 +4057,6 @@ msgstr "Événement" msgid "Everywhere" msgstr "Partout" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "sauf pour les %1% première couches." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "sauf pour la première couche." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4193,14 +4104,14 @@ msgstr "" msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Mode expert" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Mode de Vue Expert" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Mode expert" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Exporter" @@ -4221,6 +4132,63 @@ msgstr "Exporter les &Parcours d'outils en OBJ" msgid "Export 3MF" msgstr "Exporter 3MF" +#: src/libslic3r/PrintConfig.cpp:4261 +msgid "Export AMF" +msgstr "Exporter AMF" + +#: src/slic3r/GUI/Plater.cpp:2853 +msgid "Export AMF file:" +msgstr "Exporter le fichier AMF :" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export Config &Bundle" +msgstr "Exporter le &Lot de Configuration" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export Config Bundle With Physical Printers" +msgstr "Exporter le Lot de Configurations Avec les Imprimantes Physiques" + +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "Exporter le G-code." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Exporter le G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "Exporter le G-code vers la carte SD / la clé USB" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Exporter OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Exporter le fichier OBJ :" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Exporter le plateau en &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Exporter la plateau en STL &avec les Supports" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Exporter SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Exporter STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Exporter le fichier STL :" + #: src/slic3r/GUI/MainFrame.cpp:1260 msgid "Export all presets including physical printers to file" msgstr "" @@ -4231,14 +4199,6 @@ msgstr "" msgid "Export all presets to file" msgstr "Exporter tous les préréglage vers un fichier" -#: src/libslic3r/PrintConfig.cpp:4261 -msgid "Export AMF" -msgstr "Exporter AMF" - -#: src/slic3r/GUI/Plater.cpp:2853 -msgid "Export AMF file:" -msgstr "Exporter le fichier AMF :" - #: src/slic3r/GUI/GUI_Factories.cpp:715 msgid "Export as STL" msgstr "Exporter en tant que STL" @@ -4247,14 +4207,6 @@ msgstr "Exporter en tant que STL" msgid "Export config" msgstr "Exporter la configuration" -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export Config &Bundle" -msgstr "Exporter le &Lot de Configuration" - -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export Config Bundle With Physical Printers" -msgstr "Exporter le Lot de Configurations Avec les Imprimantes Physiques" - #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Exporter la configuration actuelle vers un fichier" @@ -4283,55 +4235,14 @@ msgstr "" "Exportez les chemins d'accès complets des modèles et des sources de pièces " "dans des fichiers 3mf et amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Exporter le G-code" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "Exporter le G-code vers la carte SD / la clé USB" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "Exporter le G-code." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Exporter OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Exporter le fichier OBJ :" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "Exporter un fichier temporaire 3mf qui a échoué" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Exporter le plateau en &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Exporter la plateau en STL &avec les Supports" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Exporter SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exporter les noms de chemins complets des sources vers 3mf et amf" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Exporter STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Exporter le fichier STL :" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Exporter le(s) modèle(s) en tant que 3MF." @@ -4360,6 +4271,10 @@ msgstr "Exporter le parcours en tant que OBJ" msgid "Export." msgstr "Exporter." +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Exportation du G-code" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Exportation du lot de configuration" @@ -4368,10 +4283,6 @@ msgstr "Exportation du lot de configuration" msgid "Exporting finished." msgstr "Exportation terminée." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Exportation du G-code" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4398,10 +4309,6 @@ msgstr "Temps d'exposition" msgid "External perimeter" msgstr "Périmètre externe" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "périmètres externes" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "Périmètres externes" @@ -4447,6 +4354,10 @@ msgstr "Extrudeur %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "L'extrudeur (outil) est remplacée par l'extrudeur \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Couleur de l'extrudeur" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "Extrudeur changé à" @@ -4455,10 +4366,6 @@ msgstr "Extrudeur changé à" msgid "Extruder clearance" msgstr "Dégagement de l'extrudeur" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Couleur de l'extrudeur" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Décalage de l'extrudeur" @@ -4480,22 +4387,10 @@ msgstr "Nombre d'extrudeurs" msgid "Extrusion" msgstr "Extrusion" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "Axe d'extrusion" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "Multiplicateur d'extrusion" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Température d'Extrusion :" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Largeur d'extrusion" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4504,6 +4399,22 @@ msgstr "Largeur d'extrusion" msgid "Extrusion Width" msgstr "Largeur d'Extrusion" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "Axe d'extrusion" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "Multiplicateur d'extrusion" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Largeur d'extrusion" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "Imprimantes Technologie FFF" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Faces" @@ -4512,10 +4423,6 @@ msgstr "Faces" msgid "Faded layers" msgstr "Couches estompées" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "impossible de trouver le répertoire central" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4539,6 +4446,10 @@ msgstr "L'activation de l'instantané de configuration a échoué." msgid "Failed to drill some holes into the model" msgstr "Échec du perçage de certains trous dans le modèle" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "Vitesse du ventilateur (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Réglages du ventilateur" @@ -4547,10 +4458,6 @@ msgstr "Réglages du ventilateur" msgid "Fan speed" msgstr "Vitesse du ventilateur" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "Vitesse du ventilateur (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4608,19 +4515,41 @@ msgstr "Type de fonctionnalité" msgid "Feature types" msgstr "Types de fonctionnalité" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "Imprimantes Technologie FFF" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "filament" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "Diamètre du Filament :" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "G-code de fin du filament" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "Réglages dérogatoires du Filament" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "Sélection des Profils de Filament" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Réglages du filament" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Onglet de réglages du filament" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "G-code de début du filament" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4631,14 +4560,6 @@ msgstr "Diamètres du Filament et de la Buse" msgid "Filament at extruder %1%" msgstr "Filament de l'extrudeur %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "Diamètre du Filament :" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "G-code de fin du filament" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4655,36 +4576,14 @@ msgstr "Temps de chargement du filament" msgid "Filament notes" msgstr "Notes du filament" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "Réglages dérogatoires du Filament" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Position d'attente du filament" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "Sélection des Profils de Filament" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "Propriétés du filament" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Réglages du filament" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Onglet de réglages du filament" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "G-code de début du filament" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Type de filament" @@ -4693,58 +4592,18 @@ msgstr "Type de filament" msgid "Filament unload time" msgstr "Temps de déchargement du filament" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "filaments" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filaments" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "échec de la fermeture du fichier" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "échec de création du fichier" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "Le fichier à remplacer n'a pas été sélectionné" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "Fichier non trouvé" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "fichier non trouvé" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "échec de l'ouverture du fichier" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "échec de lecture du fichier" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "impossible de trouver le fichier" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "impossible d'établir des statistiques pour ce fichier" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "fichier trop volumineux" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "échec d'écriture du fichier" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "Le fichier à remplacer n'a pas été sélectionné" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4826,14 +4685,6 @@ msgstr "Terminé" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Outil de flash du firmware" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Image du firmware :" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Rétraction du Firmware" @@ -4842,6 +4693,14 @@ msgstr "Rétraction du Firmware" msgid "Firmware Type" msgstr "Type de Firmware" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Outil de flash du firmware" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Image du firmware :" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "Première couleur" @@ -4955,10 +4814,6 @@ msgstr "Flux" msgid "Flow rate" msgstr "Débit" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "le débit est maximisé" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -5027,16 +4882,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Seulement pour les générateur de supports" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"pour le bouton gauche : indique un préréglage non-système (ou non par " -"défaut),\n" -"pour le bouton droit : indique que le réglage n'a pas été modifié." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5093,10 +4938,6 @@ msgstr "Mots-clés réservés trouvés dans" msgid "From" msgstr "De" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "de" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "" @@ -5115,10 +4956,6 @@ msgstr "Vue Avant" msgid "Full fan speed at layer" msgstr "Ventilateur à pleine vitesse pour la couche" -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "nom de profil complet" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "Plein écran" @@ -5133,6 +4970,12 @@ msgstr "" "Saviez-vous que vous pouvez basculer PrusaSlicer en mode plein écran ? " "Utilisez le raccourci clavier F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "Surface Irrégulière" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5146,12 +4989,6 @@ msgstr "" "irrégulière ? Vous pouvez également utiliser des modificateurs pour " "appliquer une surface irrégulière uniquement à une partie de votre modèle." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "Surface Irrégulière" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "Surface irrégulière (expérimental)" @@ -5168,10 +5005,6 @@ msgstr "Épaisseur de la surface Irrégulière" msgid "Fuzzy skin type." msgstr "Type de surface irrégulière." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "G-code" @@ -5214,13 +5047,13 @@ msgstr "Vignettes G-code" msgid "G-code viewer" msgstr "Visionneuse de G-code" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero Licence Publique Générale, version 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "GUI" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5272,10 +5105,6 @@ msgstr "Générer des supports" msgid "Generate supports for the models" msgstr "Générer des supports pour les modèles" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "avertissements générés" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Génération du G-code" @@ -5320,10 +5149,6 @@ msgstr "Génération du tampon de vertex" msgid "Generic" msgstr "Générique" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "Couper le Gizmo" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM pour la jointure peinte" @@ -5332,14 +5157,6 @@ msgstr "Gizmo FDM pour la jointure peinte" msgid "Gizmo FDM paint-on supports" msgstr "Gizmo FDM pour les supports peints" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Déplacer le Gizmo" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Déplacement du gizmo : appuyez pour des pas de 1 mm" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Gizmo pour la peinture Multi Material" @@ -5348,6 +5165,26 @@ msgstr "Gizmo pour la peinture Multi Material" msgid "Gizmo Place face on bed" msgstr "Emplacement du Gizmo face au lit" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA évidé" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Points de support SLA du Gizmo" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "Couper le Gizmo" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Déplacer le Gizmo" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Déplacement du gizmo : appuyez pour des pas de 1 mm" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Pivoter le Gizmo" @@ -5384,14 +5221,6 @@ msgstr "" "Redimensionnement du gizmo : redimensionner la sélection pour remplir le " "volume d'impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Gizmo SLA évidé" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Points de support SLA du Gizmo" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5414,10 +5243,6 @@ msgstr "Gizmo-Échelle" msgid "Gizmos" msgstr "Gizmos" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero Licence Publique Générale, version 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5438,14 +5263,36 @@ msgstr "Grouper" msgid "Group manipulation" msgstr "Manipulation d'un groupe" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "GUI" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Gyroïde" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"Statut HTTP : %1%\n" +"Corps du message : \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "HTTPS CA Fichier" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"Le fichier HTTPS CA est optionnel. Il est uniquement requis si vous utilisez " +"le HTTPS avec un certificat auto-signé." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "Diamètre de la tête" @@ -5623,14 +5470,14 @@ msgstr "Modification des paramètres d'évidement" msgid "Honeycomb" msgstr "Nid d'abeille" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "Coques horizontales" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Barre de Défilement Horizontale" +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "Coques horizontales" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5697,40 +5544,14 @@ msgstr "Comment appliquer des limites" msgid "How to apply the Machine Limits" msgstr "Comment appliquer les limites de la machine" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"Statut HTTP : %1%\n" -"Corps du message : \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "HTTPS CA Fichier" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"Le fichier HTTPS CA est optionnel. Il est uniquement requis si vous utilisez " -"le HTTPS avec un certificat auto-signé." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Taille de l'icône par rapport à la taille par défaut" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5769,6 +5590,42 @@ msgstr "" "temporaire séparé. Lorsqu'une nouvelle version de préréglages est " "disponible, elle est proposée au démarrage de l'application." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "Si activé, PrusaSlicer sera ouvert à la position où il a été fermé" + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "" +"Si activé, PrusaSlicer n'ouvrira pas les hyperliens dans votre navigateur." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"Si activé, les onglets de réglage seront placés comme des éléments du menu. " +"Si désactivé, l'ancienne interface utilisateur sera utilisée." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Si activé, Slic3r télécharge les mises à jours des préréglages système " +"intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un " +"répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est " +"disponible, elle est proposée au démarrage de l'application." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"Si activé, l'interface utilisateur utilisera les couleurs du mode Sombre. Si " +"désactivé, l'ancienne interface utilisateur sera utilisée." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "" @@ -5782,6 +5639,14 @@ msgstr "" "Si ceci est activé, tous les extrudeurs qui impriment seront positionnés sur " "la bordure avant du lit d'impression au début de l'impression." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Si activé, permet à la commande Recharger à partir du disque de rechercher " +"et de charger automatiquement les fichiers lorsqu'elle est invoquée." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5795,14 +5660,6 @@ msgstr "" "sélectionner chaque fichier à l'aide d'une boîte de dialogue d'ouverture de " "fichier." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"Si activé, permet à la commande Recharger à partir du disque de rechercher " -"et de charger automatiquement les fichiers lorsqu'elle est invoquée." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5835,15 +5692,6 @@ msgstr "" "désactivé, les modifications effectuées à l'aide du curseur séquentiel, dans " "l'aperçu, s'appliquent à l'ensemble du gcode." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "Si activé, PrusaSlicer sera ouvert à la position où il a été fermé" - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "" -"Si activé, PrusaSlicer n'ouvrira pas les hyperliens dans votre navigateur." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5857,6 +5705,14 @@ msgstr "Si activé, rend l'objet à l'aide de la carte d'environnement." msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "Si activé, inverse la direction du zoom avec la molette de la souris" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"Si activé, définit la Visualisation de G-code de PrusaSlicer comme " +"application par défaut pour ouvrir les fichiers .gcode." + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5869,34 +5725,6 @@ msgstr "" "Si activé, définit PrusaSlicer comme l'application par défaut pour ouvrir " "les fichiers .stl." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"Si activé, définit la Visualisation de G-code de PrusaSlicer comme " -"application par défaut pour ouvrir les fichiers .gcode." - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"Si activé, les onglets de réglage seront placés comme des éléments du menu. " -"Si désactivé, l'ancienne interface utilisateur sera utilisée." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Si activé, Slic3r télécharge les mises à jours des préréglages système " -"intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un " -"répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est " -"disponible, elle est proposée au démarrage de l'application." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5955,13 +5783,6 @@ msgstr "" "C'est à l'utilisateur de s'assurer qu'il n'y a pas de collision avec " "l'impression." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"Si activé, l'interface utilisateur utilisera les couleurs du mode Sombre. Si " -"désactivé, l'ancienne interface utilisateur sera utilisée." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -6071,14 +5892,6 @@ msgstr "" "secondes, la vitesse des déplacements d'impression sera réduite afin " "d'atteindre cette valeur." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Si ceci est activé, le ventilateur ne sera jamais désactivé et sera maintenu " -"au moins à sa vitesse minimum. Utile pour le PLA, mais risqué pour l'ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6103,6 +5916,14 @@ msgstr "" "Si ceci est activé, Slic3r affichera le dernier répertoire de sortie au lieu " "de celui contenant les fichiers d'entrée." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Si ceci est activé, le ventilateur ne sera jamais désactivé et sera maintenu " +"au moins à sa vitesse minimum. Utile pour le PLA, mais risqué pour l'ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6241,26 +6062,6 @@ msgstr "Importer la Configuration à partir du &Projet" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importer une Configuration depuis ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Importer la configuration uniquement" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Importer le fichier" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Importer la géométrie uniquement" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Importer le modèle et le profil" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Importer le modèle uniquement" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Importer l'Objet" @@ -6269,14 +6070,6 @@ msgstr "Importer l'Objet" msgid "Import Objects" msgstr "Importer les Objets" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "Échec de l'import du fichier 3mf réparé" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Importer le profil uniquement" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Importer l'archive SL1 / SL1S" @@ -6297,6 +6090,38 @@ msgstr "Importer STL/OBJ/AM&F/3MF" msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importer un STL/OBJ/AMF/3MF sans configuration, conserver le plateau" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Importer la configuration uniquement" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Importer le fichier" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Importer la géométrie uniquement" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Importer le modèle et le profil" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Importer le modèle uniquement" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "Échec de l'import du fichier 3mf réparé" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Importer le profil uniquement" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importation de l'archive SLA" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Importation annulée." @@ -6305,18 +6130,6 @@ msgstr "Importation annulée." msgid "Importing done." msgstr "Importation terminée." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importation de l'archive SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "in" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "Dans le G-code personnalisé ont été trouvés des mots-clés réservés :" @@ -6351,41 +6164,6 @@ msgstr "Augmenter les Instances" msgid "Increase/decrease edit area" msgstr "Augmenter/diminuer la zone d'édition" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"indique que certains paramètres ont été modifiés et ne sont pas égaux aux " -"valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" -"Cliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le " -"groupe d'options actuel sur les valeurs du système (ou par défaut)." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"indique que les paramètres sont les mêmes que les valeurs système (ou par " -"défaut) pour le groupe d'options en cours" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"indique que les paramètres ont été changés et qu'ils ne sont pas identiques " -"au dernier préréglage enregistré du groupe d'options en cours.\n" -"Cliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du " -"groupe d'options en cours avec les valeurs du dernier préréglage enregistré." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6399,10 +6177,6 @@ msgstr "" msgid "Infill" msgstr "Remplissage" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "remplissage" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "Remplissage avant les périmètres" @@ -6450,6 +6224,11 @@ msgstr "Hauteur de couche initiale" msgid "Inner brim only" msgstr "Bordure intérieure uniquement" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "La valeur entrée est hors plage" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6460,11 +6239,6 @@ msgstr "" "Êtes-vous certain que %s est une valeur correcte et que vous voulez " "continuer ?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "La valeur entrée est hors plage" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6539,10 +6313,6 @@ msgstr "Espacement du motif d'interface" msgid "Interface shells" msgstr "Coques d'interface" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "erreur interne" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6553,6 +6323,10 @@ msgstr "Erreur interne : %1%" msgid "Internal infill" msgstr "Remplissage interne" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "Pénétration de Tête invalide" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "Donnée non valide" @@ -6562,18 +6336,6 @@ msgstr "Donnée non valide" msgid "Invalid file format." msgstr "Format de fichier non valide." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "nom de fichier non valide" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "Pénétration de Tête invalide" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "entête non valide ou archive corrompue" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6589,14 +6351,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "Entrée numérique non valide." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "paramètre non valide" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "Diamètre de tête d'épingle non valide" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Lissage" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6612,32 +6379,14 @@ msgstr "" "tout plastique soulevé. Lire la suite dans la documentation. (Nécessite le " "mode Avancé ou Expert.)" -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Lissage" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Type de lissage" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "est basé sur Slic3r par Alessandro Ranellucci et la communauté RepRap." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "Is it safe?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "est sous licence" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Isométrique" @@ -6699,15 +6448,6 @@ msgstr "Gigue" msgid "Jump to height" msgstr "Sauter à la hauteur" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"Sauter à la hauteur %s\n" -"ou Définir le mode règle" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6719,6 +6459,15 @@ msgstr "" "Définir le mode règle\n" "ou Définir la séquence d'extrusion pour toute l'impression" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"Sauter à la hauteur %s\n" +"ou Définir le mode règle" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "Sauter pour bouger" @@ -6761,9 +6510,25 @@ msgstr "Raccourcis Clavier" msgid "Keyboard shortcuts" msgstr "Raccourcis clavier" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "CADENAS FERMÉ" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"L'icône CADENAS FERMÉ indique que les réglages sont les mêmes que les " +"valeurs système (ou par défaut) pour le groupe d'options actuel" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"L'icône CADENAS FERMÉ indique que la valeur est la même que la valeur " +"système (ou par défaut)." #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6818,23 +6583,11 @@ msgstr "Limites de hauteur de couche" msgid "Layer range Settings to modify" msgstr "Réglages de zone de Couche à modifier" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "couches" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Couches" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Couches et périmètres" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6848,15 +6601,9 @@ msgstr "Couches et périmètres" msgid "Layers and Perimeters" msgstr "Couches et Périmètres" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Du bas" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Du haut" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Couches et périmètres" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6871,6 +6618,14 @@ msgstr "Conserver \"%1%\" activé" msgid "Left" msgstr "Gauche" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Valeur du Préréglage gauche" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Vue Gauche" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6887,14 +6642,6 @@ msgstr "Bouton gauche de la souris" msgid "Left mouse button:" msgstr "Bouton gauche de souris :" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Valeur du Préréglage gauche" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Vue Gauche" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Légende/Temps d'impression estimé" @@ -6922,6 +6669,10 @@ msgstr "" "Les contrats de licence de tous les programmes suivants (bibliothèques) font " "partie de la mise en oeuvre du contrat de licence" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Levage de l'axe Z" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6930,10 +6681,6 @@ msgstr "" "Soulevez l'objet au-dessus du plateau lorsqu'il est partiellement en " "dessous. Activé par défaut, utilisez --no-ensure-on-bed pour désactiver." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Levage de l'axe Z" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6950,18 +6697,42 @@ msgstr "Ligne" msgid "Load" msgstr "Charger" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Charger une configuration à partir d'un ini/amf/3mf/gcode et fusionner" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "Charger le Fichier" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "Charger les Fichiers" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "Charger le Modificateur" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "Charger une Partie" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "Charger le Projet" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "Charger un modèle" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "Charger un modèle enregistré avec des unités impériales" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "Charger une archive SL1 / SL1S" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "Charger un modèle enregistré avec des unités impériales" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6991,10 +6762,6 @@ msgstr "" "Importer-Importer archive SL1 / SL1S, qui vous permet également de " "reconstruire des modèles 3D à partir des données voxel." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "Charger une configuration à partir d'un ini/amf/3mf/gcode et fusionner" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "Charger la configuration depuis le fichier du projet" @@ -7011,30 +6778,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "Charger le fichier de configuration exporté" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "Charger le Fichier" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "Charger les Fichiers" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "Charger le Modificateur" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "Charger une Partie" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "Charger les préréglages à partir d'un lot" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "Charger le Projet" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "Charger une forme depuis un STL..." @@ -7043,10 +6790,6 @@ msgstr "Charger une forme depuis un STL..." msgid "Load..." msgstr "Charger..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "chargé" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "Chargement" @@ -7111,26 +6854,6 @@ msgstr "Coordonnées locaux" msgid "Lock supports under new islands" msgstr "Verrouiller les supports sous de nouveaux îlots" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "CADENAS FERMÉ" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"L'icône CADENAS FERMÉ indique que les réglages sont les mêmes que les " -"valeurs système (ou par défaut) pour le groupe d'options actuel" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"L'icône CADENAS FERMÉ indique que la valeur est la même que la valeur " -"système (ou par défaut)." - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Niveau d'enregistrement" @@ -7164,13 +6887,6 @@ msgstr "" "Les limites de la machine ne sont pas définies, par conséquent l'estimation " "du temps d'impression peut ne pas être précise." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"Les limites de la machine seront émises dans le G-code et utilisées pour " -"estimer le temps d'impression." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7182,6 +6898,13 @@ msgstr "" "être précis car l'imprimante peut appliquer un ensemble différent de limites " "de la machine." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"Les limites de la machine seront émises dans le G-code et utilisées pour " +"estimer le temps d'impression." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7213,10 +6936,6 @@ msgstr "Onglet Réglage&s Matériau" msgid "Material" msgstr "Matériau" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Profil d'impression du matériau" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7227,6 +6946,10 @@ msgstr "Réglages Matériau" msgid "Material Settings Tab" msgstr "Onglet de réglages du matériau" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Profil d'impression du matériau" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Maximum" @@ -7255,10 +6978,6 @@ msgstr "Hauteur maximale d'impression" msgid "Max print speed" msgstr "Vitesse d'impression maximale" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "Version maximum de PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Pente volumétrique négative maximum" @@ -7284,6 +7003,18 @@ msgstr "" msgid "Maximum acceleration E" msgstr "Accélérations maximum E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Accélérations maximum X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Accélérations maximum Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Accélérations maximum Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Accélération maximale pour les déplacements" @@ -7332,18 +7063,6 @@ msgstr "Accélération maximum lors de la rétraction" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Accélération maximale lors de la rétraction (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Accélérations maximum X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Accélérations maximum Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Accélérations maximum Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Accélérations maximum" @@ -7375,6 +7094,18 @@ msgstr "Temps d'exposition maximum" msgid "Maximum feedrate E" msgstr "Vitesse d'avance maximum en E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Vitesse d'avance maximum en X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Vitesse d'avance maximum en Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Vitesse d'avance maximum en Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Vitesse d'avance maximum de l'axe E" @@ -7391,18 +7122,6 @@ msgstr "Vitesse d'avance maximum de l'axe Y" msgid "Maximum feedrate of the Z axis" msgstr "Vitesse d'avance maximum de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Vitesse d'avance maximum en X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Vitesse d'avance maximum en Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Vitesse d'avance maximum en Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Vitesses d'avance maximum" @@ -7415,6 +7134,18 @@ msgstr "Temps d'exposition initiale Maximum" msgid "Maximum jerk E" msgstr "Mouvement brusque maximum E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Mouvement brusque maximum X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Mouvement brusque maximum Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Mouvement brusque maximum Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Mouvement brusque maximum de l'axe E" @@ -7431,18 +7162,6 @@ msgstr "Mouvement brusque maximum de l'axe Y" msgid "Maximum jerk of the Z axis" msgstr "Mouvement brusque maximum de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Mouvement brusque maximum X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Mouvement brusque maximum Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Mouvement brusque maximum Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Longueur maximum de l'ancre de remplissage" @@ -7538,10 +7257,6 @@ msgstr "Minimum" msgid "Min print speed" msgstr "Vitesse d'impression minimale" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "Version minimum de PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Distance minimale des points de support" @@ -7604,6 +7319,10 @@ msgstr "Vitesses d'avance minimum" msgid "Minimum initial exposure time" msgstr "Temps d'exposition initiale minimum" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Épaisseur de coque minimale" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7617,10 +7336,6 @@ msgstr "" "Cette fonctionnalité est particulièrement utile lorsque vous utilisez la " "fonction de hauteur de couche variable." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Épaisseur de coque minimale" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Épaisseur minimale d'une coque supérieure/inférieure" @@ -7657,6 +7372,10 @@ msgstr "" "Largeur minimum des caractéristiques à maintenir lorsque vous pratiquez une " "compensation de pied d'éléphant." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Symétrie" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7668,18 +7387,14 @@ msgstr "" "créer une version inversée ? Cliquez avec le bouton droit sur le modèle, " "sélectionnez Miroir et choisissez l'axe du miroir." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Symétrie" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Symétriser l'Objet" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Symétriser horizontalement" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Symétriser l'Objet" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Symétriser l'objet sélectionné" @@ -7710,133 +7425,10 @@ msgstr "Mauvais appariement de l'hôte d'impression : %s" msgid "Mixed" msgstr "Mélangé" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (zéro pour désactiver)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm ou %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm ou % (zéro pour désactiver)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s ou %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "&Mode" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "modèle" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Modèle" @@ -7849,19 +7441,10 @@ msgstr "Réparation du modèle annulée" msgid "Model repair finished" msgstr "Réparation du modèle terminée" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "Avancé" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Les modifications du profil actuel vont être sauvegardées." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "modifié" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Modificateur" @@ -7870,14 +7453,6 @@ msgstr "Modificateur" msgid "Modifiers" msgstr "Modificateurs" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "prix/bouteille" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "argent/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotone" @@ -7909,6 +7484,10 @@ msgstr "Roulette de la souris:" msgid "Move" msgstr "Déplacer" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "Déplacer l'Objet" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "Déplacer le curseur actif vers le Bas" @@ -7933,10 +7512,6 @@ msgstr "Déplacer le plan de coupe" msgid "Move drainage hole" msgstr "Déplacer le trou de drainage" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "Déplacer l'Objet" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "Déplacer le point" @@ -8027,6 +7602,14 @@ msgstr "Multiplier les copies par ce facteur." msgid "N/A" msgstr "N/A" +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "PAS D'EXPULSION DU TOUT" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "REMARQUE :" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -8060,6 +7643,10 @@ msgstr "Noms des préréglages liés à l'imprimante physique" msgid "Nearest" msgstr "Le plus proche" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Volume Négatif" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -8074,14 +7661,18 @@ msgstr "" "créer des trous facilement redimensionnables directement dans PrusaSlicer. " "Lire la suite dans la documentation. (Nécessite le mode Avancé ou Expert.)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Volume Négatif" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "Recherche réseau" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Nouveau Projet" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Nouvelle Valeur" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "" @@ -8096,10 +7687,6 @@ msgstr "La nouvelle version préliminaire %1% est disponible." msgid "New printer preset selected" msgstr "Nouveau préréglage d'imprimante sélectionné" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Nouveau Projet" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Nouveau projet, libérer le plateau" @@ -8109,10 +7696,6 @@ msgstr "Nouveau projet, libérer le plateau" msgid "New release version %1% is available." msgstr "La nouvelle version %1% est disponible." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Nouvelle Valeur" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8165,10 +7748,6 @@ msgstr "" msgid "No previously sliced file." msgstr "Aucun fichier précédemment découpé." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "PAS D'EXPULSION DU TOUT" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sans couches dispersées (EXPERIMENTAL)" @@ -8193,18 +7772,10 @@ msgstr "Aucun" msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "mode normal" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Mode normal" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "n'est pas une archive ZIP" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "Introuvable:" @@ -8236,10 +7807,6 @@ msgstr[1] "" "Notez que ces imprimantes seront supprimées après la suppression du " "préréglage sélectionné." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "REMARQUE :" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8284,15 +7851,15 @@ msgstr "" msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Remarque : la version Repetier 0.90.0 est requise au minimum." +#: src/slic3r/GUI/SavePresetDialog.cpp:137 +msgid "Note: This preset will be replaced after saving" +msgstr "Remarque : ce préréglage sera remplacé après l'enregistrement" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "" "Remarque: certains raccourcis ne fonctionnent qu'en mode de (non-)édition." -#: src/slic3r/GUI/SavePresetDialog.cpp:137 -msgid "Note: This preset will be replaced after saving" -msgstr "Remarque : ce préréglage sera remplacé après l'enregistrement" - #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8311,14 +7878,14 @@ msgstr "Remarque" msgid "Notify about new releases" msgstr "Avertir des nouvelles versions" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "buse" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Buse" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "Diamètre de la Buse :" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Températures de la buse et du plateau" @@ -8328,10 +7895,6 @@ msgstr "Températures de la buse et du plateau" msgid "Nozzle diameter" msgstr "Diamètre de la buse" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "Diamètre de la Buse :" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Température de la buse" @@ -8427,11 +7990,9 @@ msgstr "" msgid "Number of tool changes" msgstr "Nombre de changements d'outil" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "objet" -msgstr[1] "objets" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "Réglages de l'Objet à modifier" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8458,10 +8019,6 @@ msgstr "Objet ou Instance" msgid "Object reordered" msgstr "Objet réorganisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "Réglages de l'Objet à modifier" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8492,10 +8049,6 @@ msgstr "" "raccourcirait le temps d'impression. Par conséquent, les couleurs de l'objet " "seront mélangées." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "objets" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Liste d'objets" @@ -8508,15 +8061,6 @@ msgstr "Spirale Octagramme" msgid "OctoPrint version" msgstr "Version d'OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "d'un Objet en cours" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Taille" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Décalage" @@ -8529,14 +8073,14 @@ msgstr "" "Décalage de la bordure de l'objet imprimé. Le décalage est appliqué après la " "compensation de l'effet patte d'éléphant." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Ancienne disposition avec la barre d'onglets" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Ancienne valeur" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Ancienne disposition avec la barre d'onglets" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8622,14 +8166,6 @@ msgstr "Lever Z seulement en-dessous de" msgid "Only retract when crossing perimeters" msgstr "Rétracter uniquement lors du franchissement de périmètres" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"Seules les imprimantes installées suivantes sont compatibles avec les " -"filaments sélectionnés" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8638,6 +8174,14 @@ msgstr "" "Seules les imprimantes installées suivantes sont compatibles avec les " "matériaux SLA sélectionnés" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"Seules les imprimantes installées suivantes sont compatibles avec les " +"filaments sélectionnés" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Prévention des coulures" @@ -8652,6 +8196,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Ouvrir &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Ouvrir le fichier de certificat CA" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Ouvrir la Documentation dans le navigateur web." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Ouvrir un répertoire." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Ouvrir un fichier G-code :" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "Ouvrir la visionneuse de G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Ouvrir une Nouvelle Instance" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Ouvrir les Préférences." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "Ouvrir PrusaSlicer" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Ouvrir un fichier G-code" @@ -8669,35 +8245,15 @@ msgstr "Ouvrir un fichier de projet" msgid "Open as project" msgstr "Ouvrir en tant que projet" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Ouvrir le fichier de certificat CA" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "Ouvrir la page du journal des modifications" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Ouvrir la Documentation dans le navigateur web." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Ouvrir la page de téléchargement" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Ouvrir un répertoire." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Ouvrir un fichier G-code :" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "Ouvrir la visionneuse de G-code" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "Ouvrir le lien hypertexte dans le navigateur par défaut ?" @@ -8710,37 +8266,25 @@ msgstr "Ouvrir une nouvelle visionneuse de G-code" msgid "Open new instance" msgstr "Ouvrir une nouvelle instance" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Ouvrir une Nouvelle Instance" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Ouvrir les Préférences." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "" "Ouvrir un projet STL/OBJ/AMF/3MF avec configuration, libérer le plateau" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "Ouvrir PrusaSlicer" - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "Ouvrir le site web de %s dans votre navigateur" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "Ouvrir la boîte de dialogue pour modifier la galerie de formes" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "" "Ouvrir la page de téléchargement des drivers Prusa3D dans votre navigateur" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "Ouvrir la boîte de dialogue pour modifier la galerie de formes" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Ouvrir la page des publications du logiciel dans votre navigateur" @@ -8767,6 +8311,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Opération déjà annulée. Veuillez patienter quelques secondes." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Optimiser la Rotation" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "Optimise la rotation des objets pour une meilleure qualité de surface." @@ -8787,10 +8335,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Optimiser l'orientation" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Optimiser la Rotation" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8815,10 +8359,6 @@ msgstr "Options pour le matériau de support et le radeau" msgid "Options:" msgstr "Options :" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "ou appuyez sur la touche \"+\"" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "Trier les volumes d'objets par types" @@ -8839,14 +8379,14 @@ msgstr "Origine" msgid "Other" msgstr "Autre" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Autres couches" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Autres Fabriquants" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Autres couches" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "Bordure extérieure et intérieure" @@ -8855,22 +8395,22 @@ msgstr "Bordure extérieure et intérieure" msgid "Outer brim only" msgstr "Bordure extérieur uniquement" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "Fichier de sortie" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "Fichier de Sortie" -#: src/libslic3r/PrintConfig.cpp:1902 -msgid "Output filename format" -msgstr "Format du nom de fichier de sortie" - #: src/libslic3r/PrintConfig.cpp:4305 msgid "Output Model Info" msgstr "Information du Modèle de Sortie" +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "Fichier de sortie" + +#: src/libslic3r/PrintConfig.cpp:1902 +msgid "Output filename format" +msgstr "Format du nom de fichier de sortie" + #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Options de sortie" @@ -8983,6 +8523,10 @@ msgstr "" "antihoraire en appuyant respectivement sur Page Précédente ou Page " "Suivante ?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Jointure peinte" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8996,9 +8540,10 @@ msgstr "" "Essayez la fonction de Jointure peinte. (Nécessite le mode Avancé ou " "Expert.)" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Jointure peinte" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Supports peints" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -9012,11 +8557,6 @@ msgstr "" "les zones où les supports doivent être appliqués ou bloqués ? Essayez la " "fonction de supports peints. (Nécessite le mode Avancé ou Expert.)" -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Supports peints" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -9051,10 +8591,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Ne peint qu'une facette." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "nom du paramètre" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Validation du paramètre" @@ -9075,14 +8611,14 @@ msgstr "" msgid "Part" msgstr "Pièce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Manipulation d'une pièce" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "Réglages de la pièce à modifier" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Manipulation d'une pièce" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "Mot de passe" @@ -9091,6 +8627,10 @@ msgstr "Mot de passe" msgid "Paste" msgstr "Coller" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Coller Depuis le Presse-Papier" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Coller le presse-papier" @@ -9099,10 +8639,6 @@ msgstr "Coller le presse-papier" msgid "Paste from clipboard" msgstr "Coller depuis le presse-papier" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Coller Depuis le Presse-Papier" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Motif" @@ -9133,16 +8669,16 @@ msgstr "Motif utilisé pour générer les supports." msgid "Pause" msgstr "Pause" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Mettre en pause l'impression (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "G-code de pause de l'impression" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Mettre en pause l'impression (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "" @@ -9177,6 +8713,10 @@ msgstr "" "Performance vs précision du calcul. Des valeurs plus faibles peuvent " "produire des artefacts indésirables." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "L'intégration au bureau a échoué - Impossible de trouver l'exécutable." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9194,10 +8734,6 @@ msgstr "" "Gcodeviewer. Le fichier PrusaSlicer sur le bureau a probablement été créé " "avec succès." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "L'intégration au bureau a échoué - Impossible de trouver l'exécutable." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9215,10 +8751,6 @@ msgstr "Périmètre" msgid "Perimeter extruder" msgstr "Extrudeur pour les périmètres" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "périmètres" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9297,6 +8829,10 @@ msgstr "Largeur de la tête d'épingle" msgid "Place bearings in slots and resume printing" msgstr "Placer les roulements dans les fentes et reprendre l'impression" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Positionner sur la surface" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9309,10 +8845,6 @@ msgstr "" "faces repose sur le plateau d'impression ? Sélectionnez la fonction " "Placer sur une face ou appuyez sur la touche F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Positionner sur la surface" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9355,10 +8887,6 @@ msgstr "Position" msgid "Position (for multi-extruder printers)" msgstr "Position (pour les imprimantes multi-extrudeurs)" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Position des points de départ des périmètres." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "Position X" @@ -9367,6 +8895,10 @@ msgstr "Position X" msgid "Position Y" msgstr "Position Y" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Position des points de départ des périmètres." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "" @@ -9470,11 +9002,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "Un préréglage avec le nom \"%1%\" existe déjà." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Copie" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9538,10 +9065,6 @@ msgstr "Fichier précédemment découpé (" msgid "Prime all printing extruders" msgstr "Préparer tous les extrudeurs d'impression" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "imprimer" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Imprimer" @@ -9550,14 +9073,6 @@ msgstr "Imprimer" msgid "Print &Host Upload Queue" msgstr "File d'Attente de Téléchargement de l'&Hôte d'Impression" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Imprimer les périmètres de l'extérieur vers l'intérieur au lieu de l'ordre " -"par défaut qui est inversé." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Diamètres d'Impression" @@ -9566,6 +9081,23 @@ msgstr "Diamètres d'Impression" msgid "Print Host upload" msgstr "Téléchargement de l'Hôte d'Impression" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Réglages d'Impression" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Onglet Réglages d'impression" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Imprimer les périmètres de l'extérieur vers l'intérieur au lieu de l'ordre " +"par défaut qui est inversé." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9579,20 +9111,11 @@ msgstr "Mode d'impression" msgid "Print pauses" msgstr "Pauses d'impression" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Réglages d'Impression" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Réglages d'impression" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Onglet Réglages d'impression" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "Vitesse d'impression" @@ -9627,9 +9150,14 @@ msgstr "" msgid "Printer" msgstr "Imprimante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "imprimer" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Réglages de l'Imprimante" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Onglet Réglages de l'imprimante" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9639,10 +9167,6 @@ msgstr "Correction absolue de l'imprimante" msgid "Printer gamma correction" msgstr "Correction gamma de l'imprimante" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "modèle de l'imprimante" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Notes de l'imprimante" @@ -9651,6 +9175,18 @@ msgstr "Notes de l'imprimante" msgid "Printer preset names" msgstr "Noms des préréglages de l'imprimante" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe X" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Y" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Z" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9668,27 +9204,6 @@ msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Y" msgid "Printer scaling correction in Z axis" msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Z" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe X" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Y" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Correction de la mise à l'échelle de l'imprimante sur l'axe Z" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Réglages de l'Imprimante" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Onglet Réglages de l'imprimante" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Technologie de l'imprimante" @@ -9780,6 +9295,10 @@ msgstr "Imprimantes à Technologie FFF Prusa" msgid "Prusa MSLA Technology Printers" msgstr "Imprimantes à Technologie MSLA Prusa" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "L'initialisation de la GUI de PrusaSlicer a échoué" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9813,10 +9332,6 @@ msgstr "" msgid "PrusaSlicer error" msgstr "Erreur de PrusaSlicer" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "L'initialisation de la GUI de PrusaSlicer a échoué" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10163,6 +9678,16 @@ msgstr "Ordinaire" msgid "Regular expression" msgstr "Expression régulière" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"L'adressage relatif de l'extrudeur nécessite de réinitialiser la position de " +"l'extrudeur à chaque couche pour éviter la perte de précision en virgule " +"flottante. Ajoutez \"G92 E0\" à layer_gcode." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Version officielle uniquement" @@ -10171,6 +9696,11 @@ msgstr "Version officielle uniquement" msgid "Reload all from disk" msgstr "Tout recharger à partir du disque" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Recharger à partir du disque" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10184,11 +9714,6 @@ msgstr "" "bouton droit sur le modèle dans la vue 3D et choisissez Recharger depuis le " "disque. Lire la suite dans la documentation." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Recharger à partir du disque" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Recharger depuis :" @@ -10226,15 +9751,19 @@ msgstr "Se souvenir de mon choix" msgid "Remember output directory" msgstr "Se souvenir du répertoire de sortie" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "retirer" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "Retirer" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "Supprimer l'instance de l'objet sélectionné" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "Supprimer la peinture multi-matériaux" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "Supprimer tous les trous" @@ -10260,18 +9789,10 @@ msgstr "Supprimer l'extrudeur de la séquence" msgid "Remove instance" msgstr "Supprimer l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "Supprimer l'instance de l'objet sélectionné" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "Supprimer la zone de couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "Supprimer la peinture multi-matériaux" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "Supprime une instance de l'objet sélectionné" @@ -10404,14 +9925,14 @@ msgstr "Réparation d'un modèle par le service Netfabb" msgid "Repairing was canceled" msgstr "La réparation a été annulée" -#: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" -msgstr "Répéter le dernier découpage rapide" - #: src/slic3r/GUI/MainFrame.cpp:1285 msgid "Repeat Last Quick Slice" msgstr "Répéter le Dernier Découpage Rapide" +#: src/slic3r/GUI/MainFrame.cpp:1285 +msgid "Repeat last quick slice" +msgstr "Répéter le dernier découpage rapide" + #: src/slic3r/GUI/Plater.cpp:3432 msgid "Replace from:" msgstr "Remplacer par :" @@ -10445,21 +9966,6 @@ msgstr "S&ignaler un Problème" msgid "Report an issue on %s" msgstr "Signaler un problème sur %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "nécessite max. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "nécessite min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "nécessite min. %s et max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Scanner à nouveau" @@ -10468,6 +9974,14 @@ msgstr "Scanner à nouveau" msgid "Reset" msgstr "Réinitialiser" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Réinitialiser le Projet" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Réinitialiser la Rotation" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Réinitialiser le plan de coupe" @@ -10480,18 +9994,10 @@ msgstr "Réinitialiser le plan de coupe" msgid "Reset direction" msgstr "Réinitialiser la direction" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Réinitialiser le Projet" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Réinitialiser la rotation" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Réinitialiser la Rotation" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10503,14 +10009,14 @@ msgstr "Réinitialiser l'échelle" msgid "Reset selection" msgstr "Réinitialiser la sélection" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Réinitialiser à la base" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Réinitialiser la Couleur du Filament" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Réinitialiser à la base" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Redémarrer l'application" @@ -10532,13 +10038,6 @@ msgstr "Rétracter lors des changements de couche" msgid "Retraction" msgstr "Rétraction" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"La rétraction n'est pas déclenchée lorsque les déplacements sont plus courts " -"que cette distance." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "Longueur de Rétractation" @@ -10551,6 +10050,13 @@ msgstr "Longueur de Rétractation (changement d'outil)" msgid "Retraction Speed" msgstr "Vitesse de Rétractation" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"La rétraction n'est pas déclenchée lorsque les déplacements sont plus courts " +"que cette distance." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10587,6 +10093,14 @@ msgstr "Passez en revue les substitutions et ajustez-les si nécessaire." msgid "Right" msgstr "Droite" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Valeur du Préréglage droit" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Vue Droite" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10614,14 +10128,6 @@ msgstr "Bouton droit de la souris" msgid "Right mouse button:" msgstr "Clic droit souris :" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Valeur du Préréglage droit" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Vue Droite" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10693,16 +10199,6 @@ msgstr "Run %s" msgid "Running post-processing scripts" msgstr "Exécuter des scripts de post-traitement" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "s" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "&Envoyer le G-code" @@ -10711,6 +10207,60 @@ msgstr "&Envoyer le G-code" msgid "S&end to print" msgstr "Envoyer pour imprimer" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "Sélection des Profils Matériaux SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "Matériaux SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "Points de Support SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "Imprimantes Technologie SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "Raccourcis clavier pour le gizmo SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "Matériau SLA" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "Type de matériau SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "Matériaux SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "Impression SLA" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "Notes concernant le matériau d'impression SLA" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "Réglages d'impression SLA" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "Des supports SLA en dehors de la zone d'impression ont été détectés." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10731,6 +10281,24 @@ msgstr "Enregistrer %s sous :" msgid "Save %s file as:" msgstr "Enregistrer le fichier %s sous :" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Sauvegarder le fichier G-code en tant que :" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "" +"Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le " +"STL) sous :" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "Enregistrer le Projet &sous" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "Enregistrer le fichier SL1 / SL1S sous :" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Sauvegarder le fichier de configuration" @@ -10761,16 +10329,6 @@ msgstr "Sauvegarder le fichier du projet en cours sous" msgid "Save file as:" msgstr "Enregistrer le fichier sous :" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Sauvegarder le fichier G-code en tant que :" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "" -"Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le " -"STL) sous :" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10784,10 +10342,6 @@ msgstr "Enregistrer le lot de préréglages sous :" msgid "Save project" msgstr "Enregistrer le projet" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "Enregistrer le Projet &sous" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Sauvegarder le projet (3mf)" @@ -10796,10 +10350,6 @@ msgstr "Sauvegarder le projet (3mf)" msgid "Save project as (3mf)" msgstr "Sauvegarder le projet en tant que (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "Enregistrer le fichier SL1 / SL1S sous :" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "Enregistrer les points de support ?" @@ -10831,6 +10381,10 @@ msgstr "Échec de la sauvegarde du maillage dans le contenant 3MF." msgid "Scale" msgstr "Redimensionner" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Redimensionner pour Ajuster" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Échelle" @@ -10844,10 +10398,6 @@ msgstr "" msgid "Scale to Fit" msgstr "Redimensionner pour Ajuster" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Redimensionner pour Ajuster" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "Redimensionner pour ajuster à un volume donné." @@ -10936,13 +10486,41 @@ msgstr "Deuxième couleur" msgid "See Download page." msgstr "Voir la page de téléchargement." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Voir la page des versions." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Voir plus." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Voir la page des versions." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Sélectionner l'Onglet des Réglages du Filament" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Sélectionner l'Onglet du Plateau" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Sélectionner l'Onglet des Réglages d'Impression" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Sélectionner l'Onglet des Réglages de l'Imprimante" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Sélectionnez OUI si vous souhaitez supprimer tous les changements d'outil " +"enregistrées, \n" +"NON si vous souhaitez que tous les changements d'outil soient remplacés par " +"des modifications de couleur, \n" +"ou ANNULER pour ne pas les modifier." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10982,26 +10560,10 @@ msgstr "" "Sélectionnez un espace de coordonnées dans lequel la transformation sera " "effectuée." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Sélectionner l'Onglet des Réglages du Filament" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Sélectionner l'Onglet du Plateau" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Sélectionner les préréglages à comparer" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Sélectionner l'Onglet des Réglages d'Impression" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Sélectionner l'Onglet des Réglages de l'Imprimante" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Sélectionner la forme dans la galerie" @@ -11010,6 +10572,10 @@ msgstr "Sélectionner la forme dans la galerie" msgid "Select showing settings" msgstr "Sélectionner les réglages d'affichage" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Sélectionner le fichier STL à réparer :" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "Sélectionner la langue" @@ -11027,10 +10593,6 @@ msgstr "" msgid "Select the printers this profile is compatible with." msgstr "Sélectionner les imprimantes avec lesquelles ce profil est compatible." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Sélectionner le fichier STL à réparer :" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "" @@ -11049,18 +10611,6 @@ msgstr "Choisissez le type de socle dont vous avez besoin" msgid "Select what kind of support do you need" msgstr "Choisissez le type de support dont vous avez besoin" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Sélectionnez OUI si vous souhaitez supprimer tous les changements d'outil " -"enregistrées, \n" -"NON si vous souhaitez que tous les changements d'outil soient remplacés par " -"des modifications de couleur, \n" -"ou ANNULER pour ne pas les modifier." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "Sélection-Ajouter" @@ -11069,14 +10619,6 @@ msgstr "Sélection-Ajouter" msgid "Selection-Add All" msgstr "Sélection-Ajouter Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "Sélection-Ajouter depuis la liste" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "Sélection-Ajouter depuis le rectangle" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "Sélection-Ajouter Instance" @@ -11085,6 +10627,14 @@ msgstr "Sélection-Ajouter Instance" msgid "Selection-Add Object" msgstr "Sélection-Ajouter Objet" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "Sélection-Ajouter depuis la liste" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "Sélection-Ajouter depuis le rectangle" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "Sélection-Retirer" @@ -11093,14 +10643,6 @@ msgstr "Sélection-Retirer" msgid "Selection-Remove All" msgstr "Sélection-Retirer Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "Sélection-Retirer de la liste" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "Sélection-Retirer du rectangle" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "Sélection-Supprimer l'Instance" @@ -11109,18 +10651,26 @@ msgstr "Sélection-Supprimer l'Instance" msgid "Selection-Remove Object" msgstr "Sélection-Supprimer l'Objet" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "Sélection-Retirer de la liste" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "Sélection-Retirer du rectangle" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Sélectionner tous les objets" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "Envoyer le G-code" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "Envoyer le G-Code à l'hôte d'imprimante" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "Envoyer le G-code" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -11171,6 +10721,46 @@ msgstr "Nom du service" msgid "Set" msgstr "Appliquer" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Appliquer la Symétrie" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "Définir l'Orientation" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Définir la Position" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Définir Imprimable" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Définir une Instance Imprimable" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Définir le groupe imprimable" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Définir l'Échelle" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Définir non-Imprimable" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Définir une Instance non-Imprimable" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Définir le groupe Non Imprimable" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "Définir comme Objet Séparé" @@ -11219,9 +10809,9 @@ msgstr "Définir le curseur de gauche comme actif" msgid "Set lower thumb as active" msgstr "Définir le curseur du bas comme actif" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Appliquer la Symétrie" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Définir le nombre d'instances" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11234,35 +10824,11 @@ msgstr "" "définir un nombre exact d'instances au lieu de le copier-coller plusieurs " "fois ?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Définir le nombre d'instances" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Régler le nombre de copies sur %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "Définir l'Orientation" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Définir la Position" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Définir Imprimable" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Définir le groupe imprimable" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Définir une Instance Imprimable" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Définir le curseur de droite comme actif" @@ -11271,10 +10837,6 @@ msgstr "Définir le curseur de droite comme actif" msgid "Set ruler mode" msgstr "Définir le mode règle" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Définir l'Échelle" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Définir les éléments sélectionnés comme Imprimables/Non Imprimables" @@ -11448,18 +11010,6 @@ msgstr "" "elle représente la profondeur maximum à laquelle peut descendre l'extrudeur " "avant d'entrer en collision avec d'autres objets imprimés." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Définir non-Imprimable" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Définir le groupe Non Imprimable" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Définir une Instance non-Imprimable" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Définir le curseur du haut comme actif" @@ -11484,6 +11034,10 @@ msgstr "Réglages" msgid "Settings for height range" msgstr "Réglages pour la zone de hauteur" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Réglages dans une fenêtre non modale" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11497,10 +11051,6 @@ msgstr "" "et l'Aperçu du G-code sur l'autre. Allez dans les Préférences et " "sélectionnez Réglages dans la fenêtre non modale." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Réglages dans une fenêtre non modale" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "Dois-je ajuster ces paramètres pour les supports ?" @@ -11583,6 +11133,10 @@ msgstr "Afficher le Répertoire de &Configuration" msgid "Show &Labels" msgstr "Afficher les &Labels" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Afficher l'Astuce du Jour" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "Afficher la boîte de dialogue à propos" @@ -11671,16 +11225,16 @@ msgstr "Afficher la prévisualisation des tranches 3D" msgid "Show the filament settings" msgstr "Afficher les réglages de filament" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "" -"Afficher la liste complète des options de configuration d'impression/G-code." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "" "Afficher la liste complète des options de configuration d'impression SLA." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "" +"Afficher la liste complète des options de configuration d'impression/G-code." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Afficher la liste des raccourcis clavier" @@ -11701,10 +11255,6 @@ msgstr "Afficher les réglages de l'imprimante" msgid "Show this help." msgstr "Afficher cette aide." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Afficher l'Astuce du Jour" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Afficher le répertoire de configuration utilisateur (datadir)" @@ -11745,14 +11295,14 @@ msgstr "Afficher/Masquer les labels de l'objet/instance" msgid "Simple" msgstr "Simple" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Mode simple" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "Mode de Vue Simple" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Mode simple" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "" @@ -11786,10 +11336,6 @@ msgstr "" msgid "Simplify model" msgstr "Simplifier le modèle" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Réglage MM pour extrudeur unique" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "Multi Material à extrudeur unique" @@ -11806,6 +11352,10 @@ msgstr "" "Voulez-vous modifier le diamètre pour tous les extrudeurs\n" "en utilisant la valeur du diamètre de la buse du premier extrudeur ?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Réglage MM pour extrudeur unique" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Paramètres multimatériaux pour extrudeur unique" @@ -11836,6 +11386,10 @@ msgstr "Taille en X et Y du plateau rectangulaire." msgid "Skirt" msgstr "Jupe" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "Boucles de la Jupe" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11846,65 +11400,11 @@ msgstr "Jupe et bordure" msgid "Skirt height" msgstr "Hauteur de la jupe" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "Boucles de la Jupe" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Jupe/Bordure" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "Raccourcis clavier pour le gizmo SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "Matériau SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "Sélection des Profils Matériaux SLA" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "Type de matériau SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "Matériaux SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "Matériaux SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "Impression SLA" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "Notes concernant le matériau d'impression SLA" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "Réglages d'impression SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "Points de Support SLA" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "Des supports SLA en dehors de la zone d'impression ont été détectés." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "Imprimantes Technologie SLA" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Pavé" @@ -12001,6 +11501,14 @@ msgstr "L'objet découpe \"%1%\" ressemble à un logo ou à un signe" msgid "Slicing" msgstr "Découpe" +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "Découpe Effectuée !" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Mode de Découpage" + #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 msgid "Slicing complete" @@ -12010,10 +11518,6 @@ msgstr "Découpe terminée" msgid "Slicing done" msgstr "Découpe effectuée" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "Découpe Effectuée !" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "Découpage terminé." @@ -12025,10 +11529,6 @@ msgstr "" "La découpe a du être interrompue du fait d'une erreur interne : index de " "découpage inconsistant." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Mode de Découpage" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "Découpe du modèle" @@ -12087,10 +11587,6 @@ msgstr "Ajusté" msgid "Software &Releases" msgstr "Publications du Softwa&re " -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "remplissage solide" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -12105,6 +11601,10 @@ msgstr "Remplissage solide toutes les" msgid "Solid infill extruder" msgstr "Extrudeur pour le remplissage solide" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Surface de seuil pour le remplissage solide" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -12118,10 +11618,6 @@ msgstr "" "Définissez la zone de seuil de remplissage solide. (Mode expert " "uniquement.)" -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Surface de seuil pour le remplissage solide" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Couches solides" @@ -12135,17 +11631,6 @@ msgid "Soluble material is most likely used for a soluble support." msgstr "" "Il est probable qu'un matériau soluble soit utilisé pour un support soluble." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"Certains champs sont trop longs pour s'afficher. Un clic droit de la souris " -"révèle le texte intégral." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "Certains filaments ont été désinstallés." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -12159,6 +11644,25 @@ msgstr "" "\"Pas d'extrusion\" empêche complètement PrusaSlicer d'exporter toute valeur " "d'extrusion." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "Certaines imprimantes ont été désinstallées." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "Certains matériaux SLA ont été désinstallés." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"Certains champs sont trop longs pour s'afficher. Un clic droit de la souris " +"révèle le texte intégral." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "Certains filaments ont été désinstallés." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "Certains objets ne sont pas visibles lors de l'édition." @@ -12212,14 +11716,6 @@ msgstr "" "des difficultés pour imprimer avec une hauteur de couche variable. Activé " "par défaut." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "Certaines imprimantes ont été désinstallées." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "Certains matériaux SLA ont été désinstallés." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "Espacement" @@ -12389,14 +11885,14 @@ msgstr "Vitesse:" msgid "Sphere" msgstr "Sphère" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Mode de vase spirale" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Vase Spirale" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Mode de vase spirale" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12420,22 +11916,22 @@ msgstr "Scinder l'objet sélectionné en objets individuels" msgid "Split the selected object into individual parts" msgstr "Diviser l'objet sélectionné en parties individuelles" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "Diviser en objets individuels" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "Diviser en Objets" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "Scinder en pièces" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "Scinder en Pièces" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "Diviser en objets individuels" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "Scinder en pièces" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12463,6 +11959,12 @@ msgstr "Standard" msgid "Stars" msgstr "Étoiles" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "G-code de début" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "Démarrer un nouveau projet" @@ -12471,12 +11973,6 @@ msgstr "Démarrer un nouveau projet" msgid "Start at height" msgstr "Hauteur de début" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "G-code de début" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Démarrer un nouveau processus de découpe" @@ -12532,10 +12028,6 @@ msgstr "État :" msgid "Stealth" msgstr "Mode silencieux" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "mode silencieux" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Mode furtif" @@ -12576,22 +12068,6 @@ msgstr "" "Démonté avec succès. Le périphérique %s(% s) peut maintenant être retiré en " "toute sécurité de l'ordinateur." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "support" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "Diamètre de la base du support" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Hauteur de la base du support" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "Distance de sécurité de la base du support" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Bloqueur de Support" @@ -12608,14 +12084,22 @@ msgstr "Générateur de Support" msgid "Support Generator" msgstr "Générateur de support" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "Diamètre de la base du support" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Hauteur de la base du support" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "Distance de sécurité de la base du support" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "Tête du support" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "interface du support" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12701,10 +12185,6 @@ msgstr "Éditer les points de support" msgid "Supports" msgstr "Supports" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "supports et socle" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "Temps de support restant" @@ -12739,10 +12219,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "Supprimer pour ouvrir l'hyperlien dans le navigateur" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "Permuter les axes Y/Z" @@ -12764,10 +12240,6 @@ msgstr "Code de changement pour Changer de couleur (%1%) pour :" msgid "Switch to 3D" msgstr "Basculer vers la 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "Basculer vers le mode édition" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "Basculer vers la Prévisualisation" @@ -12776,6 +12248,10 @@ msgstr "Basculer vers la Prévisualisation" msgid "Switch to Settings" msgstr "Basculer dans le Réglages" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "Basculer vers le mode édition" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12816,10 +12292,6 @@ msgstr "" "\n" "Voulez-vous continuer ?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "nom de profil symbolique" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12837,14 +12309,14 @@ msgstr "Synchroniser avec les couches de l'objet" msgid "System &Info" msgstr "&Informations sur le Système" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Informations système envoyées avec succès. Merci." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Informations sur le Système" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Informations système envoyées avec succès. Merci." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12931,6 +12403,149 @@ msgstr "" "Si l'équipement est connecté, veuillez appuyer sur le bouton Reset à côté du " "connecteur USB ..." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"L'archive SLA ne contient aucun préréglage. Veuillez d'abord activer " +"certains préréglages d'imprimante SLA avant d'importer cette archive SLA." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Les prérequis du mode Vase Spiral sont :\n" +"-Un seul périmètre\n" +"-Aucunes couches solides supérieures\n" +"-Une densité de remplissage de 0%\n" +"-Pas de support\n" +"-Vérifier que l'épaisseur de coque verticale est activée\n" +"-La détection de parois fines doit être désactivée" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "" +"L'option Vase Spirale ne peut être utilisé que lors de l'impression d'objets " +"mono-matériau." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"À l'heure actuelle, la Tour de Nettoyage ne prend pas en charge l'E " +"volumétrique (use_volumetric_e-0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"La tour de nettoyage prend actuellement en charge les supports non solubles " +"seulement\n" +"si ils sont imprimés avec l'extrudeur actuel sans déclencher un changement " +"d'outil.\n" +"(support_material_extruder et support_material_interface_extruder doivent " +"être réglés sur 0)." + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"A l'heure actuelle la Tour de Nettoyage ne tolère les supports non-solubles " +"que s'ils sont imprimés avec l'extrudeur en cours d'utilisation sans " +"déclencher un changement d'outil. (support_material_extruder de même que " +"support_material_interface_extruder doivent être réglés sur 0)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"La tour de nettoyage n'est actuellement pas prise en charge pour les " +"impressions séquentielles multimatériaux." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"La tour de nettoyage n'est actuellement prise en charge que pour les " +"versions du G-code Marlin, RepRap / Sprinter, RepRapFirmware et Repetier." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"La tour de nettoyage est actuellement supportée uniquement avec l'adressage " +"relatif de l'extrudeur (use_relative_e_distances=1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"La tour de nettoyage est uniquement supportées pour plusieurs objets s'ils " +"sont imprimés avec un nombre égal de couche de radeau" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " +"sont imprimés avec la même support_material_contact_distance" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " +"découpés de la même façon." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " +"ont une même hauteur de couche" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode " +"Rétractation du Firmware.\n" +"\n" +"Voulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"La tour de Nettoyage n'est prise en charge que si tous les objets ont la " +"même hauteur de couche variable" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -13091,21 +12706,22 @@ msgstr "" "afin de compenser l'écrasement de la première couche également connu sous le " "nom d'effet Pied d'Éléphant." +#: src/slic3r/GUI/ConfigWizard.cpp:2459 +msgid "The following FFF printer models have no filament selected:" +msgstr "" +"Les modèles d'imprimantes FFF suivants n'ont aucun filament sélectionné :" + +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "" +"Les modèles d'imprimantes SLA suivants n'ont aucun matériau sélectionné :" + #: src/slic3r/GUI/Plater.cpp:5717 msgid "The following characters are not allowed by a FAT file system:" msgstr "" "Les caractères suivants ne sont pas autorisés par un système de fichiers " "FAT :" -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "les caractères suivant ne sont pas autorisés :" - -#: src/slic3r/GUI/ConfigWizard.cpp:2459 -msgid "The following FFF printer models have no filament selected:" -msgstr "" -"Les modèles d'imprimantes FFF suivants n'ont aucun filament sélectionné :" - #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -13159,15 +12775,6 @@ msgid "" msgstr "" "Les raccourcis suivants s'appliquent lorsque le gizmo spécifié est actif" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "" -"Les modèles d'imprimantes SLA suivants n'ont aucun matériau sélectionné :" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "le suffixe suivant n'est pas autorisé :" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "Les valeurs suivantes ont été remplacées :" @@ -13495,6 +13102,15 @@ msgstr "" "Le projet sélectionné n'est plus disponible.\n" "Voulez-vous le retirer de la liste des projets récents?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"L'impression séquentielle est activée.\n" +"Il est impossible d'appliquer un G-code personnalisé pour l'impression " +"séquentielle d'objets." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13507,15 +13123,6 @@ msgstr "" "séquentielle d'objets.\n" "Ce code ne sera pas traité lors de la génération du G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"L'impression séquentielle est activée.\n" -"Il est impossible d'appliquer un G-code personnalisé pour l'impression " -"séquentielle d'objets." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "La taille de l'objet peut être spécifiée en pouces" @@ -13524,14 +13131,6 @@ msgstr "La taille de l'objet peut être spécifiée en pouces" msgid "The size of the object is zero" msgstr "La taille de l'objet est nulle" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"L'archive SLA ne contient aucun préréglage. Veuillez d'abord activer " -"certains préréglages d'imprimante SLA avant d'importer cette archive SLA." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13555,32 +13154,6 @@ msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "" "La vitesse des rétractations (ne s'applique qu'au moteur de l'extrudeur)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"Les prérequis du mode Vase Spiral sont :\n" -"-Un seul périmètre\n" -"-Aucunes couches solides supérieures\n" -"-Une densité de remplissage de 0%\n" -"-Pas de support\n" -"-Vérifier que l'épaisseur de coque verticale est activée\n" -"-La détection de parois fines doit être désactivée" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "" -"L'option Vase Spirale ne peut être utilisé que lors de l'impression d'objets " -"mono-matériau." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "Le nom proposé est vide. Sauvegarde impossible." @@ -13634,107 +13207,6 @@ msgstr "" "support_material_contact_distance sera utilisé pour les distances Z de " "contact supérieur et inférieur." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode " -"Rétractation du Firmware.\n" -"\n" -"Voulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"À l'heure actuelle, la Tour de Nettoyage ne prend pas en charge l'E " -"volumétrique (use_volumetric_e-0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"La tour de nettoyage prend actuellement en charge les supports non solubles " -"seulement\n" -"si ils sont imprimés avec l'extrudeur actuel sans déclencher un changement " -"d'outil.\n" -"(support_material_extruder et support_material_interface_extruder doivent " -"être réglés sur 0)." - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"A l'heure actuelle la Tour de Nettoyage ne tolère les supports non-solubles " -"que s'ils sont imprimés avec l'extrudeur en cours d'utilisation sans " -"déclencher un changement d'outil. (support_material_extruder de même que " -"support_material_interface_extruder doivent être réglés sur 0)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"La tour de nettoyage n'est actuellement pas prise en charge pour les " -"impressions séquentielles multimatériaux." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"La tour de nettoyage n'est actuellement prise en charge que pour les " -"versions du G-code Marlin, RepRap / Sprinter, RepRapFirmware et Repetier." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"La tour de nettoyage est actuellement supportée uniquement avec l'adressage " -"relatif de l'extrudeur (use_relative_e_distances=1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"La tour de nettoyage est uniquement supportées pour plusieurs objets s'ils " -"sont imprimés avec un nombre égal de couche de radeau" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " -"sont imprimés avec la même support_material_contact_distance" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " -"découpés de la même façon." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils " -"ont une même hauteur de couche" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13743,14 +13215,6 @@ msgstr "" "La tour de nettoyage n'est supportée que si tous les extrudeurs ont le même " "diamètre de buse et utilisent un filament de même diamètre." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"La tour de Nettoyage n'est prise en charge que si tous les objets ont la " -"même hauteur de couche variable" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "Il existe des avertissements actifs concernant les modèles découpés :" @@ -13803,6 +13267,18 @@ msgstr "Ponts épais" msgid "This %s version: %s" msgstr "Version de ce %s : %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Ce G-code sera utilisé comme code pour le changement de couleur" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Ce G-code sera utilisé comme code pour la pause de l'impression" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Ce G-code sera utilisé comme code personnalisé" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -14077,18 +13553,6 @@ msgstr "" "Cette option déplace la buse lors des rétractations, limitant ainsi " "l'apparition d'amas sur les extrudeurs ayant tendance à couler." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Ce G-code sera utilisé comme code pour le changement de couleur" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Ce G-code sera utilisé comme code pour la pause de l'impression" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Ce G-code sera utilisé comme code personnalisé" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "Ceci est un préréglage par défaut." @@ -14529,10 +13993,6 @@ msgstr "" "aider à obtenir des changements d'outils fiables avec des matériaux flexible " "qui ont besoin de plus de temps pour revenir à leurs dimensions originales." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "à" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "Pour faire cela veuillez spécifier un nouveau nom pour le préréglage." @@ -14568,10 +14028,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "Activer la symétrie sur l'axe %c" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "trop de fichiers" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "Trop de trous qui se chevauchent." @@ -14627,6 +14083,10 @@ msgstr "" "Indice d'épaisseur de coque supérieure / inférieure : non disponible en " "raison de la hauteur de couche non valide." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Vue du Dessus" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "Distance Z du contact supérieur" @@ -14650,10 +14110,6 @@ msgstr "" "La coque supérieure a une épaisseur de %1% mm pour une hauteur de couche %2% " "mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "remplissage solide supérieur" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14664,10 +14120,6 @@ msgstr "Remplissage solide supérieur" msgid "Top solid layers" msgstr "Couches supérieures solides" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Vue du Dessus" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Uniquement la partie supérieure de la surface" @@ -14750,6 +14202,34 @@ msgstr "Type d'imprimante." msgid "Type:" msgstr "Type :" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "CADENAS OUVERT" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et " +"ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe " +"d'options actuel.\n" +"Cliquez pour régler tous les paramètres pour le groupe d'options actuel sur " +"les valeurs du système (ou par défaut)." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas " +"égale à la valeur du système (ou par défaut).\n" +"Cliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou " +"par défaut)." + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "" @@ -14794,10 +14274,6 @@ msgstr "Groupe non défini" msgid "Undefined" msgstr "Non défini" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "erreur non définie" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "Soupassement" @@ -14819,6 +14295,10 @@ msgstr[1] "Annuler %1$d Actions" msgid "Undo / Redo is processing" msgstr "Annuler / Rétablir est en cours de traitement" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Annuler Historique" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "Échec de l'annulation de l'intégration au bureau." @@ -14827,10 +14307,6 @@ msgstr "Échec de l'annulation de l'intégration au bureau." msgid "Undo desktop integration was successful." msgstr "L'annulation de l'intégration au bureau a réussi." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Annuler Historique" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14842,10 +14318,6 @@ msgstr "" "annuler/rétablir pour voir l'historique des modifications et pour " "annuler ou rétablir plusieurs actions à la fois ?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "volume de décompression inattendu" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14862,10 +14334,6 @@ msgstr "Une erreur inconnue s'est produite" msgid "Unknown error occured during exporting G-code." msgstr "Une erreur inconnue s'est produite lors de l'exportation du G-code." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "déchargé" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "Vitesse de déchargement" @@ -14874,34 +14342,6 @@ msgstr "Vitesse de déchargement" msgid "Unloading speed at the start" msgstr "Vitesse de déchargement au démarrage" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "CADENAS OUVERT" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et " -"ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe " -"d'options actuel.\n" -"Cliquez pour régler tous les paramètres pour le groupe d'options actuel sur " -"les valeurs du système (ou par défaut)." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas " -"égale à la valeur du système (ou par défaut).\n" -"Cliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou " -"par défaut)." - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Modifications non enregistrées" @@ -14910,26 +14350,6 @@ msgstr "Modifications non enregistrées" msgid "Unselect gizmo or clear selection" msgstr "Désélectionner le Gizmo ou supprimer la sélection" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "volume du répertoire central non supporté" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "cryptage non supporté" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "fonction non supportée" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "méthode non supportée" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "archive multidisque non supportée" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "Version d'OpenGL non supportée" @@ -14943,10 +14363,6 @@ msgstr "Sélection non supportée" msgid "Untitled" msgstr "Sans titre" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "jusqu'à" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "Mise à jour disponible" @@ -15018,6 +14434,10 @@ msgstr "" "Utiliser \"Pair-impair\" pour les modèles d'avions 3DLabPrint. Utiliser " "\"Fermer les trous\" pour fermer tous les trous du modèle." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Utiliser la résolution Retina pour la scène 3D" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Utiliser un autre extrudeur" @@ -15073,10 +14493,6 @@ msgstr "Utiliser l'appareil photo en perspective" msgid "Use relative E distances" msgstr "Utiliser des valeurs E relatives" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Utiliser la résolution Retina pour la scène 3D" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "Utiliser le menu système pour l'application" @@ -15100,15 +14516,6 @@ msgstr "" msgid "Use volumetric E" msgstr "E Volumétrique" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "utilisé" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Filament utilisé" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Filament Utilisé (g)" @@ -15137,6 +14544,11 @@ msgstr "Matériau Utilisé (ml)" msgid "Used Material (unit)" msgstr "Matériau Utilisé (unité)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Filament utilisé" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Utilisateur" @@ -15147,10 +14559,6 @@ msgstr "Utilisateur" msgid "User presets" msgstr "Préréglages utilisateur" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "échec de la validation" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "La valeur est identique à la valeur du système" @@ -15171,6 +14579,11 @@ msgstr "Les valeurs de cette colonne sont pour le mode Normal" msgid "Values in this column are for Stealth mode" msgstr "Les valeurs de cette colonne sont pour le mode Silencieux" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Hauteur de couche variable" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -15184,11 +14597,6 @@ msgstr "" "elles ? Essayez l'outil de Hauteur de couche variable. (Non " "disponible pour les imprimantes SLA.)" -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Hauteur de couche variable" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Hauteur de couche variable - Adaptatif" @@ -15205,14 +14613,6 @@ msgstr "Hauteur de couche variable - Réinitialisation" msgid "Variable layer height - Smooth all" msgstr "Hauteur de couche variable - Tout lisser" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "variantes" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "fabriquant" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Fournisseur :" @@ -15226,18 +14626,14 @@ msgstr "G-code commenté" msgid "Version" msgstr "Version" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "version" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Barre de Défilement Verticale" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "Parois verticales" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Barre de Défilement Verticale" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15315,6 +14711,39 @@ msgstr "Débit volumétrique (mm³/s)" msgid "Volumetric speed" msgstr "Vitesse volumétrique" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "ATTENTION :" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "PUCE BLANCHE" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "" +"L'icône en forme de PUCE BLANCHE indique un préréglage non-système (ou non " +"par défaut)." + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"L'icône en forme de PUCE BLANCHE indique que les réglages sont identiques au " +"dernier préréglage sauvegardé pour le groupe d'options actuel." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"L'icône PUCE BLANCHE indique que la valeur est la même que pour le dernier " +"préréglage sauvegardé." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Épaisseur de la paroi" @@ -15327,13 +14756,6 @@ msgstr "Épaisseur de la paroi" msgid "Warning" msgstr "Alerte" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "ATTENTION :" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15393,10 +14815,6 @@ msgstr "" "projet de fichier sur l'application, une boite de dialogue apparait pour " "vous demander de sélectionner l'action à accomplir sur le fichier à charger." -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "pendant l'impression des" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15493,32 +14911,6 @@ msgstr "" "exprimera cette quantité de filament en plus. Ce réglage est rarement " "nécessaire." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "PUCE BLANCHE" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "" -"L'icône en forme de PUCE BLANCHE indique un préréglage non-système (ou non " -"par défaut)." - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"L'icône en forme de PUCE BLANCHE indique que les réglages sont identiques au " -"dernier préréglage sauvegardé pour le groupe d'options actuel." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"L'icône PUCE BLANCHE indique que la valeur est la même que pour le dernier " -"préréglage sauvegardé." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "Mot entier" @@ -15564,6 +14956,11 @@ msgstr "" msgid "Wipe" msgstr "Nettoyer" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "Tour de Nettoyage" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "Nettoyer dans cet objet" @@ -15582,15 +14979,6 @@ msgstr "Options de nettoyage" msgid "Wipe tower" msgstr "Tour de nettoyage" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "tour de nettoyage" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "Tour de Nettoyage" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "Tour de nettoyage - Ajustement du volume de purge" @@ -15615,10 +15003,6 @@ msgstr "Angle de rotation de la tour de nettoyage par rapport à l'axe X." msgid "Wipe while retracting" msgstr "Nettoyer lors des rétractions" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "avec un débit volumétrique" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15669,10 +15053,6 @@ msgstr "" "\n" "Ensembles de configuration mis à jour :" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "échec de l'écriture du rappel" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "" @@ -15686,6 +15066,10 @@ msgstr "Mauvais mot de passe" msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordonnée X du coin avant gauche d'une tour de nettoyage" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "Compensation de Taille XY" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "Séparation XY entre un objet et ses supports" @@ -15699,10 +15083,6 @@ msgstr "" "pourcentage (par exemple 50%), elle sera calculée à partir de la largeur du " "périmètre extérieur." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "Compensation de Taille XY" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordonnée Y du coin avant gauche d'une tour de nettoyage" @@ -15766,6 +15146,12 @@ msgstr "" "Vous pouvez inscrire ici vos commentaires personnels. Ce texte sera ajouté " "au commentaire en entête du G-Code." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "" +"Vous pouvez mettre ici vos annotations concernant le matériau d'impression " +"SLA." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "Vous pouvez saisir vos remarques concernant le filament ici." @@ -15774,12 +15160,6 @@ msgstr "Vous pouvez saisir vos remarques concernant le filament ici." msgid "You can put your notes regarding the printer here." msgstr "Vous pouvez saisir ici vos observations concernant l'imprimante." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "" -"Vous pouvez mettre ici vos annotations concernant le matériau d'impression " -"SLA." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -16022,6 +15402,622 @@ msgstr "" "Zoomer sur l'objet sélectionné\n" "ou sur tous les objets sur la scène, si aucun n'est sélectionné" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "au-dessus" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "actif" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "échec de l'allocation" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "secondes approximatives" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "l'archive est trop volumineuse" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "basé sur Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "buffer trop petit" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "par le maximum du profil de l'imprimante" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "échec de la compression" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "continuer" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "la décompression a échoué ou l'archive est corrompue" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "défaut" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "profil par défaut du matériau SLA" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "profil d'impression SLA par défaut" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "couleur par défaut" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "profil du filament par défaut" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "profil d'impression par défaut" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "valeur par défaut" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "supprimer" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "diffère du fichier d'origine" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "ne contient pas de gcode valide." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "sauf pour les %1% première couches." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "sauf pour la première couche." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "périmètres externes" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "impossible de trouver le répertoire central" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "filament" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "filaments" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "échec de la fermeture du fichier" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "échec de création du fichier" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "fichier non trouvé" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "échec de l'ouverture du fichier" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "échec de lecture du fichier" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "impossible de trouver le fichier" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "impossible d'établir des statistiques pour ce fichier" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "fichier trop volumineux" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "échec d'écriture du fichier" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "le débit est maximisé" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"pour le bouton gauche : indique un préréglage non-système (ou non par " +"défaut),\n" +"pour le bouton droit : indique que le réglage n'a pas été modifié." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "de" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "nom de profil complet" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "avertissements générés" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "in" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"indique que certains paramètres ont été modifiés et ne sont pas égaux aux " +"valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" +"Cliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le " +"groupe d'options actuel sur les valeurs du système (ou par défaut)." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"indique que les paramètres sont les mêmes que les valeurs système (ou par " +"défaut) pour le groupe d'options en cours" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"indique que les paramètres ont été changés et qu'ils ne sont pas identiques " +"au dernier préréglage enregistré du groupe d'options en cours.\n" +"Cliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du " +"groupe d'options en cours avec les valeurs du dernier préréglage enregistré." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "remplissage" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "erreur interne" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "nom de fichier non valide" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "entête non valide ou archive corrompue" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "paramètre non valide" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "est basé sur Slic3r par Alessandro Ranellucci et la communauté RepRap." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "est sous licence" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "couches" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "chargé" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "Version maximum de PrusaSlicer" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "Version minimum de PrusaSlicer" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (zéro pour désactiver)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm ou %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm ou % (zéro pour désactiver)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s ou %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "modèle" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "modifié" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "prix/bouteille" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "argent/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "mode normal" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "n'est pas une archive ZIP" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "buse" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "objet" +msgstr[1] "objets" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "objets" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "d'un Objet en cours" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "ou appuyez sur la touche \"+\"" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "nom du paramètre" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "périmètres" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "imprimer" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "imprimer" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "modèle de l'imprimante" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "retirer" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "nécessite max. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "nécessite min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "nécessite min. %s et max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "s" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "remplissage solide" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "mode silencieux" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "support" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "interface du support" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "supports et socle" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "nom de profil symbolique" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "les caractères suivant ne sont pas autorisés :" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "le suffixe suivant n'est pas autorisé :" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "à" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "trop de fichiers" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "remplissage solide supérieur" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "erreur non définie" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "volume de décompression inattendu" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "déchargé" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "volume du répertoire central non supporté" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "cryptage non supporté" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "fonction non supportée" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "méthode non supportée" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "archive multidisque non supportée" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "jusqu'à" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "utilisé" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "échec de la validation" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "variantes" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "fabriquant" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "version" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "pendant l'impression des" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "tour de nettoyage" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "avec un débit volumétrique" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "échec de l'écriture du rappel" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -17178,6 +17174,10 @@ msgstr "AddToPropertyCollection appelé sans additionneur valable" msgid "Adding book %s" msgstr "Ajouter le manuel %s" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "Avancé" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Après un paragraphe:" @@ -17445,6 +17445,10 @@ msgstr "Bord" msgid "Borders" msgstr "Bords" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Bas" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Marge de bas de page (mm) :" @@ -18255,6 +18259,10 @@ msgstr "Copié dans le presse-papiers « %s »" msgid "Copies:" msgstr "Copies :" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Copier" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Copier la sélection" diff --git a/resources/localization/hu/PrusaSlicer_hu.po b/resources/localization/hu/PrusaSlicer_hu.po index a9f8882bd0..09567ee4b1 100644 --- a/resources/localization/hu/PrusaSlicer_hu.po +++ b/resources/localization/hu/PrusaSlicer_hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -602,7 +602,7 @@ msgstr "Aktív" msgid "PrusaSlicer version" msgstr "PrusaSlicer verzió" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "nyomtatás" @@ -610,17 +610,17 @@ msgstr "nyomtatás" msgid "filaments" msgstr "filamentek" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA nyomtatás" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA anyag" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "nyomtató" @@ -679,7 +679,7 @@ msgstr "Standard" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Összes" @@ -770,7 +770,7 @@ msgstr "SLA anyagok" msgid "All installed printers are compatible with the selected %1%." msgstr "Minden telepített nyomtató kompatibilis a kiválasztott %1% -val." -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "filament" @@ -865,7 +865,7 @@ msgstr "" "pillanatfelvétel készül." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Újratöltés lemezrÅ‘l" @@ -1175,7 +1175,7 @@ msgstr "Befejezés" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "Mégse" @@ -1248,7 +1248,7 @@ msgstr "" "létrejött." #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "Asztal integráció" @@ -1741,8 +1741,8 @@ msgid "parameter name" msgstr "paraméter név" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1951,7 +1951,7 @@ msgstr "Hozzáadás a tárgyasztalhoz" msgid "Add selected shape(s) to the bed" msgstr "Kijelölt alakzat(ok) hozzáadása a tárgyasztalhoz" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Hozzáadás" @@ -2156,7 +2156,7 @@ msgid "Wipe" msgstr "Törlés" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Opciók" @@ -2425,7 +2425,7 @@ msgid "Add..." msgstr "Hozzáadás..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Összes törlése" @@ -3354,7 +3354,7 @@ msgstr "Kritikus hiba" msgid "Internal error: %1%" msgstr "BelsÅ‘ hiba: %1%" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3364,7 +3364,7 @@ msgstr "" "Próbálja meg manuálisan törölni a fájlt a hiba elhárításához. A felhasználói " "profilok nem lesznek érintettek." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3372,12 +3372,12 @@ msgstr "" "Hiba a PrusaGCodeViewer konfigurációs fájl elemzése során, valószínűleg " "sérült. Próbálja meg manuálisan törölni a fájlt a hiba elhárításához." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "Ön a %1% %2% verzióját nyitja meg." -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3395,7 +3395,7 @@ msgstr "" "Ha igen, akkor az aktív konfigurációról biztonsági másolat készül az új " "konfiguráció importálása elÅ‘tt." -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3408,19 +3408,19 @@ msgstr "" "\n" "Importáljuk ezt a meglévÅ‘ konfigurációt?" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "Importálás_" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "Ne importálja" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "Folytatás és az újabb konfiguráció importálása?" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3436,7 +3436,7 @@ msgstr "" "https://www.prusa3d.cz/prusaslicer/ oldalról.\n" "Szeretné folytatni?" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3445,46 +3445,46 @@ msgstr "" "%s\n" "Szeretné folytatni?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Emlékezzen a választásomra" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "Konfiguráció betöltése" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "ElérhetÅ‘ a(z) %1% új kiadott verziója." -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "Tekintse meg a Letöltési oldalt." -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "ElérhetÅ‘ a(z) %1% új kiadás elÅ‘tti verziója." -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Tekintse meg a kiadások oldalt." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "A beállítások fül elÅ‘készítése" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "Ablak pozíciójának visszaállítása indításkor" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "A PrusaSlicer összeomlást követÅ‘en indult el" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3510,24 +3510,24 @@ msgstr "" "\n" "Translated with www.DeepL.com/Translator (free version)" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "\"%1%\" letiltása" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "Hagyja engedélyezve a \"%1%\"-ot" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "A következÅ‘ elÅ‘beállítások állnak rendelkezésre a \"Nyomtató feltöltés\" " "mentett beállításaival" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3537,7 +3537,7 @@ msgstr "" "nyomtató beállításaiban. \n" "A beállítások a fizikai nyomtatók beállításaiban lesznek elérhetÅ‘ek." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3547,138 +3547,138 @@ msgstr "" "létrehozásuk során.\n" "Megjegyzés: Ez a név késÅ‘bb módosítható a fizikai nyomtató beállításainál" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "Információ" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Újralétrehozás_" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Az aktuális elÅ‘beállítások betöltése" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Mód nézet betöltése" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Válasszon ki egy fájlt (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Válasszon ki egy vagy több fájlt (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Válasszon ki egy fájlt (GCODE/.GCO/.G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Egy alkalmazás nyelvének megváltoztatása" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Válassza ki a nyelvet" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Nyelv" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "módosított" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "%s Fut_" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "Konfigurációs Pillanatfelvételek" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Konfigurációs pillanatfelvételek megtekintése / aktiválása" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Konfigurációs Pillanatfelvétel Készítése" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Pillanatfelvétel készítése az aktuális konfigurációról" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "Konfigurációs Frissítések Keresése" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Konfigurációs frissítések keresése" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "Beállítások" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Alkalmazás beállítások" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "Egyszerű" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "Egyszerű Megjelenítési Mód" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "Haladó" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "Haladó Megjelenítési Mód" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "SzakértÅ‘" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "SzakértÅ‘ Megjelenítési Mód" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Mód" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s Megjelenítési Mód" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "Nyelv" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "Nyomtató &Firmware Feltöltése" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Firmware feltöltése Arduino alapú nyomtatóra" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "Konfigurációs pillanatkép készítése" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." @@ -3686,32 +3686,32 @@ msgstr "" "Néhány elÅ‘beállítás módosult, és a nem mentett változásokat a konfigurációs " "pillanatkép nem rögzíti." -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Pillanatkép neve" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "Konfigurációs pillanatkép betöltése" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "Folytatja a konfigurációs pillanatkép aktiválását: %1%?" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "Nem sikerült a konfigurációs pillanatkép aktiválása." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "Alkalmazás újraindítása" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Nyelv kiválasztása" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3719,89 +3719,89 @@ msgstr "" "A nyelv megváltoztatása újraindítja az alkalmazást.\n" "Elveszíti a tárgyasztal tartalmát." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Akarja folytatni?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "Konfiguráció" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "Az elÅ‘beállítás módosításai sikeresen elmentésre kerültek" msgstr[1] "Az elÅ‘beállítások módosításai sikeresen elmentésre kerültek" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "Új projekt esetén az összes módosítás visszaállításra kerül" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "Új projekt betöltése az jelenlegi projekt módosítása közben." -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "A projekt betöltÅ‘dik" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "Új projekt megnyitása, miközben néhány elÅ‘beállítás nincs elmentve." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "A feltöltések még mindig folyamatban vannak" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "Megállítja Å‘ket, és akkor is folytatja?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Folyamatban lévÅ‘ feltöltések" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" "SLA technológiával nem lehetséges több részbÅ‘l álló objektum(ok) nyomtatása." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "EllenÅ‘rizze az objektumlistát, elÅ‘beállítás váltás elÅ‘tt." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "Konfiguráció szerkesztése a ConfigWizardból_" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Válasszon egy gcode fájlt:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "Hiperhivatkozás megnyitása az alapértelmezett böngészÅ‘ben?" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "PrusaSlicer: Hiperhivatkozás megnyitása" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "A hiperhivatkozások böngészÅ‘ben való megnyitásának letiltása" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "A PrusaSlicer emlékezni fog a választására." -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" "ErrÅ‘l nem fogjuk újra megkérdezni a hiperhivatkozások lebegtetésével " "kapcsolatban." -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -3810,8 +3810,8 @@ msgstr "" "Látogasson el a \"Beállítások\" menüpontba, és jelölje be a \"%1%\" \n" "lehetÅ‘séget a választása módosításához." -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: Ne kérdezzen rá újra" @@ -3917,7 +3917,7 @@ msgstr "Szoknya és karima" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3927,7 +3927,7 @@ msgid "Advanced" msgstr "Haladó" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3941,8 +3941,8 @@ msgid "Supports" msgstr "Támasztékok" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3952,8 +3952,8 @@ msgstr "Támasztékok" msgid "Pad" msgstr "Párna" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -4056,7 +4056,7 @@ msgstr "Exportálás STL-ként" msgid "Reload the selected volumes from disk" msgstr "A kiválasztott térfogatok újra betöltésé a lemezrÅ‘l" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "Helyettesítés STL-lel" @@ -4083,19 +4083,19 @@ msgid "Scale the selected object to fit the print volume" msgstr "" "Méretezze a kiválasztott objektumot a (maximális) nyomtatási térfogathoz" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Konvertálás angolszász mértékegységrÅ‘l" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Konvertálás visszavonása (angolszász mértékegységrÅ‘l)" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "Konvertálás metrikus mértékegységrÅ‘l" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "Konvertálás visszavonása (metrikus mértékegységrÅ‘l)" @@ -4362,7 +4362,7 @@ msgstr "Módosító Betöltése" msgid "Loading" msgstr "Betöltés" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "Fájl betöltése" @@ -4805,7 +4805,7 @@ msgstr "Paraméter eltávolítása" msgid "Delete Option %s" msgstr "%s Opció Törlése" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "%s Opció Megváltoztatása" @@ -4925,18 +4925,18 @@ msgstr "Szerszám jelölÅ‘" msgid "Legend/Estimated printing time" msgstr "Magyarázat/becsült nyomtatási idÅ‘" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "BÅ‘vebben" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "Beállítások megnyitása." -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "Dokumentáció megnyitása a webböngészÅ‘ben." @@ -5113,13 +5113,13 @@ msgstr "" "Az importált SLA-archívum nem tartalmazott elÅ‘beállításokat. Az aktuális SLA " "elÅ‘beállítások kerülnek felhasználásra." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" "Nem tölthet be olyan SLA projektet, amelyben több részbÅ‘l álló objektum van " "a tárgyasztalon" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Figyelem!" @@ -5162,11 +5162,11 @@ msgstr "" "Konfiguráció betöltése ini/amf/3mf/gcode fájlból, és hozzáadás a meglévÅ‘höz" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "G-kód exportálása" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "G-kód küldése" @@ -5560,7 +5560,7 @@ msgstr "Jelmagyarázat és becsült nyomtatási idÅ‘ megjelenítése/elrejtése" msgid "Show/Hide G-code window" msgstr "G-kód ablak megjelenítése/elrejtése" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "ElÅ‘nézet" @@ -5678,29 +5678,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "A PrusaSlicer bezárása, miközben egyes elÅ‘beállítások módosultak." #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Nyomtatási Beállítások" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Alapanyag Beállítások" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Filament Beállítások" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Nyomtató Beállítások" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "Névtelen" @@ -6214,7 +6214,7 @@ msgid "Open New Instance" msgstr "Új Példány Megnyitása" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "ElÅ‘beállítások Összehasonlítása" @@ -6323,9 +6323,9 @@ msgstr "G-kód" msgid "Save zip file as:" msgstr "Zip fájl mentése másként:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Szeletelés" @@ -6595,7 +6595,7 @@ msgstr "HIBA:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "FIGYELMEZTETÉS:" @@ -6621,8 +6621,8 @@ msgstr "Példányok" msgid "Instance %d" msgstr "Példány %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Rétegek" @@ -6903,12 +6903,12 @@ msgstr "Objektum alatt" msgid "Around object" msgstr "Objektum körül" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Küldés nyomtatóra" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Szeletelés most" @@ -7020,7 +7020,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "A %s(%s) eszköz eltávolítása nem sikerült." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Új Projekt" @@ -7028,7 +7028,7 @@ msgstr "Új Projekt" msgid "Expand sidebar" msgstr "Az oldalsáv kibontása" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -7042,12 +7042,12 @@ msgstr[1] "" "Az alábbi_ elÅ‘beállítások ideiglenesen telepítve lettek a PrusaSlicer aktív " "példányára" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "A \"%1%\" fájl betöltése nem sikerült érvénytelen konfiguráció miatt." -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -7062,11 +7062,11 @@ msgstr[1] "" "A fájlban lévÅ‘ %s objektumuk mérete nullának tűnik.\n" "Ezek az objektumok eltávolításra kerültek a modellbÅ‘l" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "Az objektum mérete zéró" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -7087,15 +7087,15 @@ msgstr[1] "" "A PrusaSlicer belsÅ‘ mértékegysége a milliméter. Szeretné újraszámolni az " "objektumok méreteit?" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "Az objektum túl kicsi" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "Alkalmazza az összes hátralévÅ‘ betöltendÅ‘ kis objektumra." -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -7116,7 +7116,7 @@ msgstr[1] "" "A PrusaSlicer belsÅ‘ mértékegysége a milliméter. Szeretné újraszámolni az " "objektumok méreteit?" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" @@ -7126,22 +7126,22 @@ msgstr "" "Több különálló objektum helyett, egyetlen, több részbÅ‘l álló objektumként " "kell betölteni Å‘ket?" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Több részbÅ‘l álló objektum észlelve" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" "Ez a fájl nem tölthetÅ‘ be egyszerű módban. Szeretne haladó módra váltani?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "Fejlett adatok érzékelve" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -7150,7 +7150,7 @@ msgstr "" "Nem lehet hozzáadni az objektum(ok)at %s-bÅ‘l, mert az egyik vagy néhány " "közülük több részbÅ‘l áll(nak)" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -7160,7 +7160,7 @@ msgstr "" "Több különálló objektum helyett, egyetlen, több részbÅ‘l álló objektumként " "kell betölteni Å‘ket?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7168,39 +7168,39 @@ msgstr "" "Az objektum túl nagynak tűnik, ezért automatikusan le lett méretezve, hogy " "illeszkedjen a tárgyasztalhoz." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Az objektum túl nagy?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "STL fájl exportálása:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "AMF fájl exportálása:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Fájl mentése mint:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "OBJ fájl exportálása:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Objektum Törlése" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "Az Összes Objektum Törlése" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Projekt Újraindítása" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." @@ -7208,15 +7208,15 @@ msgstr "" "A kijelölt objektumot nem lehetett szétválasztani, mert csak egy szilárd " "alkatrészt tartalmaz." -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "Minden nem szilárd alkatrész (módosító) törlésre került" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Objektumokra Osztás" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." @@ -7224,87 +7224,87 @@ msgstr "" "Egy objektumnak vannak olyan egyéni támaszték kényszerítÅ‘i, amelyek nem " "lesznek használva, mivel a támasztékok le vannak tiltva." -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "Támasztékok engedélyezése csak a kényszerítÅ‘kre" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Érvénytelen adat" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Jelenleg egy másik exportálási feladat is fut." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "Helyettesítés innen:" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "Nem lehet egynél több térfogattal helyettesíteni" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "Hiba helyettesítés közben" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "Válassza ki az új fájlt" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "A helyettesítéshez nem volt fájl kiválasztva" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "Válassza ki az újratöltendÅ‘ fájlt" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "A kiválasztott fájl" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "különbözik az eredeti fájltól" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "Szeretné helyettesíteni" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Újratöltés innen:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "Újratöltés sikertelen:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "Hiba újratöltés közben" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Minden újratöltése lemezrÅ‘l" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "Aktív figyelmeztetések vonatkoznak a szeletelt modellekre:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "generált figyelmeztetések" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D szerkesztÅ‘ nézet" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "Visszavonás / Mégis folyamatban" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7315,21 +7315,21 @@ msgstr "" "Néhány %1% elÅ‘beállítás módosult, amelyek a nyomtatási technológia átváltása " "után elvesznek." -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "Új projekt létrehozása a jelenlegi projekt módosítása közben." -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "Új projekt létrehozása néhány elÅ‘beállítás módosítása közben." -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" "Az elÅ‘beállítások módosításait megtarthatja az új projekthez, vagy elvetheti " "Å‘ket" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" @@ -7340,125 +7340,125 @@ msgstr "" "Megjegyzés: ha a módosítások elmentésre kerülnek, akkor az új projekt nem " "tartja meg Å‘ket" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "Új projekt létrehozása" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Projekt Betöltése" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Objektum Importálása" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Objektumok Importálása" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "nem tartalmaz érvényes g-kódot." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "Hiba a .gcode fájl betöltése közben" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - Projekt fájl ejtése" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Megnyitás Projektként" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Csak geometria importálása" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Csak a konfiguráció importálása" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Válassza ki a fájlra alkalmazandó műveletet" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "Művelet" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "Ne mutassa újra" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "Egyszerre csak egy .gcode fájlt nyithat meg." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "Húzza és ejtse a G-kód fájlt" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Fájl Betöltése" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Fájlok Betöltése" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "Minden objektum el lesz távolítva, folytatja?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Kijelölt Objektumok Törlése" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Példányszám Növelése" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Példányszám Csökkentése" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Adja meg a szükséges példányok számát:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "A kijelölt objektum másolatai" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "A másolatok számának beállítása erre: %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Vágás Síkkal" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G-kód fájl mentése másként:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "SL1 / SL1S fájl mentése másként:" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "A megadott fájlnév érvénytelen." -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "A következÅ‘ karaktereket a FAT fájlrendszer nem támogatja:" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" @@ -7466,15 +7466,15 @@ msgstr "" "A tárgyasztal üres.\n" "Szeretné elmenteni a projektet?" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "Projekt mentése" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "Exportálás" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." @@ -7482,14 +7482,14 @@ msgstr "" "Az egyedi támasztékok, varratok és a többanyagú festés eltávolításra került " "háló javítása után." -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Beillesztés Vágólapról" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Ãltalános" @@ -7640,7 +7640,7 @@ msgstr "" "- Új projekt betöltésekor, vagy létrehozásakor" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7659,7 +7659,7 @@ msgstr "" "- Új projekt betöltésekor, miközben egyes elÅ‘beállítások módosultak" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" "Kérdezzen rá az elÅ‘beállítások nem mentett módosításaira új elÅ‘beállítás " @@ -7674,7 +7674,7 @@ msgstr "" "elÅ‘beállítást választ vagy visszaállít egy elÅ‘beállítást" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" "Kérdezzen rá az elÅ‘beállítások nem mentett módosításaira, amikor új " @@ -8246,11 +8246,11 @@ msgstr "G-kód küldése a nyomtató gazdagépének" msgid "Upload to Printer Host with the following filename:" msgstr "Feltöltés a Nyomtató gazdagépére a következÅ‘ fájlnévvel:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Ha szükséges, használjon perjeleket ( / ) könyvtárelválasztóként." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Csoport" @@ -8259,18 +8259,18 @@ msgstr "Csoport" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "A feltöltött fájl neve nem végzÅ‘dik „%sâ€-ra. Szeretné folytatni?" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "Feltöltés" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "Feltöltés és Nyomtatás" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "Feltöltés és Szimuláció" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "Feltöltés" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "Azonosító" @@ -8730,7 +8730,7 @@ msgstr "teljes profil név" msgid "symbolic profile name" msgstr "szimbolikus profil név" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Rétegek és kerületek" @@ -8814,11 +8814,11 @@ msgstr "Ãtfedés" msgid "Flow" msgstr "Ãramlás" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Egyéb" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Kimeneti lehetÅ‘ségek" @@ -8830,11 +8830,11 @@ msgstr "Szekvenciális nyomtatás" msgid "Extruder clearance" msgstr "Extruder körüli szabad tér" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Kimeneti fájl" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Utófeldolgozó szkriptek" @@ -8842,19 +8842,20 @@ msgstr "Utófeldolgozó szkriptek" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Megjegyzések" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "FüggÅ‘ségek" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "ProfilfüggÅ‘ségek" @@ -8936,7 +8937,7 @@ msgid "Ramming settings" msgstr "Tömörítési beállítások" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "Egyéni G-kód" @@ -8983,8 +8984,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Méret és koordináták" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "Képességek" @@ -9052,11 +9053,11 @@ msgstr "Billentés" msgid "Tilt time" msgstr "Billentési idÅ‘" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Korrekciók" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "Expozíció" @@ -9236,42 +9237,46 @@ msgstr "Biztos, hogy a kiválasztott elÅ‘beállítást %1% szeretné?" msgid "%1% Preset" msgstr "%1% ElÅ‘beállítás" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Beállítás" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Keresés" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "Csere erre" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "Reguláris kifejezés" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "Nagy- és kisbetű érzékeny" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Teljes szó" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "Egysoros egyeztetés" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "A gépi korlátok a G-kódba kerülnek, és a nyomtatási idÅ‘ becslésére " "szolgálnak." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9281,7 +9286,7 @@ msgstr "" "felhasználásra kerülnek. A nyomtató más gépi korlátokat alkalmazhat, ezért a " "nyomtatási idÅ‘ becslése pontatlan lehet." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9289,12 +9294,12 @@ msgstr "" "A gépi korlátok nincsenek beállítva, ezért a nyomtatási idÅ‘ becslése " "pontatlan lehet." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "ZÃRT LAKAT" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9302,12 +9307,12 @@ msgstr "" "azt jelzi, hogy a beállítások megegyeznek az aktuális opciócsoport rendszer- " "(vagy alapértelmezett) értékeivel" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "NYITOTT LAKAT" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9319,12 +9324,12 @@ msgstr "" "Kattintson a NYITOTT LAKAT ikonra az aktuális opciócsoport összes " "beállításának visszaállításához a rendszer (vagy az alapértelmezett) értékre." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "SZÜRKE PÖTTY" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9333,12 +9338,12 @@ msgstr "" "értéket jelez,\n" "jobb gomb esetén: azt jelzi, hogy a beállításokat nem módosították." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "VISSZA NYÃL" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9350,7 +9355,7 @@ msgstr "" "Kattintson a VISSZA NYÃL ikonra az aktuális opciócsoport összes " "beállításának visszaállításához az utoljára mentett állapotra." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9358,7 +9363,7 @@ msgstr "" "ZÃRT LAKAT ikon azt jelzi, hogy a beállítások megegyeznek az aktuális " "opciócsoport rendszer- (vagy alapértelmezett) értékeivel" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9371,13 +9376,13 @@ msgstr "" "Kattintson az aktuális opciócsoport összes beállításának visszaállításához a " "rendszer (vagy az alapértelmezett) értékre." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" "A SZÜRKE PÖTTY ikon a rendszeren kívüli (vagy nem alapértelmezett) " "elÅ‘beállítást jelzi." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9385,7 +9390,7 @@ msgstr "" "A SZÜRKE PÖTTY ikon azt jelzi, hogy a beállítások megegyeznek az aktuális " "opciócsoport utoljára mentett elÅ‘beállításával." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9397,7 +9402,7 @@ msgstr "" "Kattintson az aktuális opciócsoport összes beállításának visszaállításához " "az utoljára mentett állapotra." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -9405,7 +9410,7 @@ msgstr "" "ZÃRT LAKAT ikon azt jelzi, hogy az érték megegyezik a rendszer (vagy " "alapértelmezett) értékével." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9416,7 +9421,7 @@ msgstr "" "Kattintson az aktuális érték visszaállításához a rendszer (vagy " "alapértelmezett) értékre." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9424,7 +9429,7 @@ msgstr "" "A SZÜRKE PÖTTY azt jelzi, hogy az érték megegyezik az utoljára mentett " "elÅ‘beállítással." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9435,31 +9440,31 @@ msgstr "" "Kattintson az aktuális érték visszaállításához az utoljára mentett " "beállításra." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Anyag" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "Anyag nyomtatási profil" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Támasztó fej" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Támasztó pillér" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "A tartópálcák és a csomópontok csatlakoztatása" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Automatikus generálás" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9469,62 +9474,62 @@ msgstr "" "kategóriában. \n" "\"%1%\" engedélyezéséhez kapcsolja ki a \"%2%\"-ot." -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Objektum magassága" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Párna az objektum körül" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Nem definált" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "Nem Mentett Változások" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "ElÅ‘beállítások Ãtváltása: Nem Mentett Módosítások" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Régi Érték" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Új Érték" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "Megtartás" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "Ãtvitel" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "Ne mentse" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Elvetés" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Mentés" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" @@ -9532,7 +9537,7 @@ msgstr "" "Az elÅ‘beállítások nem mentett módosításaira legközelebb nem kérdez rá a " "rendszer új projekt létrehozásakor" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" @@ -9540,7 +9545,7 @@ msgstr "" "Az elÅ‘beállítások nem mentett módosításaira legközelebb nem kérdez rá a " "rendszer elÅ‘beállítás váltáskor" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9552,11 +9557,11 @@ msgstr "" "- A PrusaSlicer bezárásakor, miközben egyes elÅ‘beállítások módosultak,\n" "- Új projekt betöltésekor, miközben egyes elÅ‘beállítások módosultak" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "A PrusaSlicer emlékezni fog a műveletére." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9566,59 +9571,60 @@ msgstr "" "lehetÅ‘séget.\n" "hogy újra rákérdezzen a nem mentett módosításokra." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "Néhány mezÅ‘ túl hosszú ahhoz, hogy elférjen. A jobb egérgombbal történÅ‘ " "kattintással a teljes szöveg megjelenik." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "A beállítások módosításai nem kerülnek mentésre" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "Minden beállítási változtatás elvetése." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "A kiválasztott beállítások mentése." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "A kiválasztott beállítások megtartása." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" "A kiválasztott beállítások átvitele az újonnan kijelölt elÅ‘beállításba." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "A kiválasztott beállítások mentése a \"%1%\" elÅ‘beállításba." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" "A kiválasztott beállítások átvitele az újonnan kijelölt \"%1%\" " "elÅ‘beállításba." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "A következÅ‘ elÅ‘beállítás módosult" msgstr[1] "A következÅ‘ elÅ‘beállítások módosultak" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" "A \"%1%\" elÅ‘beállítás a következÅ‘ el nem mentett változásokat tartalmazza:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9627,7 +9633,7 @@ msgstr "" "A \"%1%\" elÅ‘beállítás nem kompatibilis az új nyomtatóprofillal, és a " "következÅ‘ el nem mentett változtatásokat tartalmazza:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9636,42 +9642,42 @@ msgstr "" "A \"%1%\" elÅ‘beállítás nem kompatibilis az új nyomtatási profillal, és a " "következÅ‘ el nem mentett változtatásokat tartalmazza:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "Extruderek száma" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "ElÅ‘beállítások kiválasztása az összehasonlításhoz" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "Minden elÅ‘beállítás megjelenítése (beleértve az inkompatibiliseket is)" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "Bal ElÅ‘beállítás Értéke" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "Jobb ElÅ‘beállítás Értéke" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "Az egyik elÅ‘beállítás nem található" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" "Az összehasonlított elÅ‘beállítások különbözÅ‘ nyomtatási technológiával " "rendelkeznek" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "Az elÅ‘beállítások megyegyeznek" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." @@ -9680,11 +9686,11 @@ msgstr "" "Erre a gombra kattintva ugyanazt az elÅ‘beállítást választhatja ki a jobb és " "a bal elÅ‘beállításhoz." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "Nem definiált kategória" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "Nem definiált csoport" @@ -10557,27 +10563,27 @@ msgstr "validáció sikertelen" msgid "write calledback failed" msgstr "írás calledback sikertelen" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Minden objektum a nyomtatási területen kívülre esik." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "A megadott beállítások üres nyomtatáshoz vezetnek." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "Néhány objektum túl közel van egymáshoz; az extruder ütközni fog velük." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Néhány objektum túl magas, ezért nem nyomtathatók ki az extruder ütközése " "nélkül." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10587,7 +10593,7 @@ msgstr "" "távolítsa el az összes objektumot az utolsó kivételével, vagy engedélyezze a " "szekvenciális módot a „complete_objects†paraméterrel." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -10595,7 +10601,7 @@ msgstr "" "A Spirálváza opció csak egyféle anyagból álló objektum nyomtatásához " "használható." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10603,7 +10609,7 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott, ha minden extruder azonos " "fúvókaátmérÅ‘vel rendelkezik és azonos átmérÅ‘jű filamentet használ." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10611,7 +10617,7 @@ msgstr "" "A törlÅ‘torony jelenleg csak a Marlin, a RepRap/Sprinter, a RepRapFirmware és " "a Repetier G-kód változatokhoz támogatott." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10619,19 +10625,19 @@ msgstr "" "A törlÅ‘torony jelenleg csak relatív extruder címzéssel " "(use_relative_e_distances=1) támogatott." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "A szivárgásmegelÅ‘zés jelenleg nem támogatott, ha a törlÅ‘torony engedélyezve " "van." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "A törlÅ‘torony jelenleg nem támogatja a volumetrikus E-t (use_volumetric_e=0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10639,7 +10645,7 @@ msgstr "" "A törlÅ‘torony jelenleg nem támogatott a több anyagos szekvenciális nyomatok " "esetében." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10647,7 +10653,7 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott több objektum nyomtatásához, ha azok " "azonos rétegmagassággal rendelkeznek" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10655,7 +10661,7 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott több objektum nyomtatása esetén, ha azok " "azonos számú tutaj rétegre vannak nyomtatva" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10663,7 +10669,7 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott több objektum esetében, ha azok azonos " "support_material_contact_distance paraméterbeálltással vannak nyomtatva" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10671,7 +10677,7 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott több objektum esetén, ha azok egyformán " "vannak felszeletelve." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10679,27 +10685,27 @@ msgstr "" "A törlÅ‘torony csak akkor támogatott, ha minden objektumnak ugyanaz a változó " "rétegmagassága" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Egy vagy több objektumhoz olyan extruder lett hozzárendelve, amely nincs a " "nyomtatóban." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" "%1%=%2% mm túl alacsony ahhoz, hogy nyomtatható legyen %3% mm-es " "rétegmagasságnál" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" "%1%=%2% mm túl sok ahhoz, hogy nyomtatható legyen %3% mm fúvókaátmérÅ‘vel" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10711,7 +10717,7 @@ msgstr "" "support_material_interface_extruder == 0), akkor minden fúvókának azonos " "átmérÅ‘jűnek kell lennie." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10719,7 +10725,7 @@ msgstr "" "Ahhoz, hogy a törlÅ‘torony működjön az oldható támasztékokkal, a támasztó " "rétegeket szinkronizálni kell az objektum rétegeivel." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10731,27 +10737,46 @@ msgstr "" "support_material_extruder, mind a support_material_interface_extruder " "értékét 0-ra kell állítani)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "Az elsÅ‘ réteg magassága nem lehet nagyobb, mint a fúvóka átmérÅ‘je" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "A réteg magassága nem lehet nagyobb, mint a fúvóka átmérÅ‘je" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "KitöltÅ‘ rétegek" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "Szoknya és karima generálása" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G-kód exportálása" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G-kód generálása" diff --git a/resources/localization/it/PrusaSlicer.mo b/resources/localization/it/PrusaSlicer.mo index 60bd8dc128..f2b3dc56b8 100644 Binary files a/resources/localization/it/PrusaSlicer.mo and b/resources/localization/it/PrusaSlicer.mo differ diff --git a/resources/localization/it/PrusaSlicer_it.po b/resources/localization/it/PrusaSlicer_it.po index 949027657f..aa0cecb72b 100644 --- a/resources/localization/it/PrusaSlicer_it.po +++ b/resources/localization/it/PrusaSlicer_it.po @@ -5,7 +5,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -16,6 +16,22 @@ msgstr "" "\"%1%\" è disattivato perchè \"%2%\" è nella categoria \"%3%\".\n" "Per attivare \"%1%\", si prega di spegnere \"%2%\"" +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"\"G92 E0\" trovato in before_layer_gcode, che è incompatibile con " +"l'indirizzamento assoluto dell'estrusore." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"\"G92 E0\" trovato in layer_gcode, che è incompatibile con l'indirizzamento " +"assoluto dell'estrusore." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -108,6 +124,12 @@ msgid_plural "%1% (%2$d shells)" msgstr[0] "%1% (%2$d guscio)" msgstr[1] "%1% (%2$d gusci)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% Preset" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -117,12 +139,6 @@ msgstr "" "%1% marcati con * non sono compatibili con alcune stampanti " "installate." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% Preset" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -183,6 +199,16 @@ msgstr "%s - BREAKING CHANGE" msgid "%s - Drop project file" msgstr "%s - Rilascia file progetto" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "Famiglia %s" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "%s Modalità Visualizzazione" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -198,11 +224,6 @@ msgstr "%s non supporta la percentuale" msgid "%s error" msgstr "errore %s" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "Famiglia %s" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -213,6 +234,17 @@ msgstr "%s ha un avviso" msgid "%s has encountered an error" msgstr "%s ha riscontrato un errore" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria " +"piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe " +"essere un bug e te ne saremmo grati se potessi informarci." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -228,17 +260,6 @@ msgstr "" "\n" "L'applicazione verrà chiusa." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria " -"piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe " -"essere un bug e te ne saremmo grati se potessi informarci." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -286,11 +307,6 @@ msgstr "" "Si prega di procedere con il %s che segue per impostare i nuovi preset e " "scegliere se abilitare gli aggiornamenti automatici del preset." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "%s Modalità Visualizzazione" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -445,22 +461,14 @@ msgstr "Fines&tra" msgid "(All)" msgstr "(Tutto)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(bobina inclusa)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(minimo)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "(Re)Sli&ce Ora" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Ri)processa" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "(Re)Sli&ce Ora" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(Alcune linee non mostrate)" @@ -469,6 +477,14 @@ msgstr "(Alcune linee non mostrate)" msgid "(Unknown)" msgstr "(Sconosciuto)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(bobina inclusa)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(minimo)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") non trovato." @@ -529,10 +545,6 @@ msgstr "3 (pesante)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "Vista modifica 3D" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "Nido d'ape 3D" @@ -541,6 +553,10 @@ msgstr "Nido d'ape 3D" msgid "3D Mouse disconnected." msgstr "Mouse 3D disconnesso." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "Vista modifica 3D" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "Impostazioni 3Dconnexion" @@ -581,10 +597,6 @@ msgstr "" "Verrà creata una copia del preset di sistema corrente, e verrà distaccata " "dal preset di sistema." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Un nuovo filamento è stato installato e sarà attivato." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "Una nuova stampante è stata installata e sarà attivata." @@ -593,6 +605,10 @@ msgstr "Una nuova stampante è stata installata e sarà attivata." msgid "A new SLA material was installed and it will be activated." msgstr "Un nuovo materiale SLA è stato installato e sarà attivato." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Un nuovo filamento è stato installato e sarà attivato." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -630,6 +646,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "È stato rilevato un percorso fuori dall'area di stampa." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "Chiave API / Password" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "Chiave API" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "Annulla" @@ -639,10 +663,6 @@ msgstr "Annulla" msgid "About %s" msgstr "Informazioni su %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "sopra" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Z Sopra" @@ -675,10 +695,6 @@ msgstr "Attiva" msgid "Active" msgstr "Attivo" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "attivo" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adattivo" @@ -708,6 +724,60 @@ msgstr "Aggiungi" msgid "Add \"%1%\" as a next preset for the the physical printer \"%2%\"" msgstr "Aggiunge \"%1%\" come prossimo preset per la stampante fisica \"%2%\"" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "Aggiungi sotto-oggetto generico" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "Aggiungi Intervallo Altezza" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "Aggiungi istanza all'oggetto selezionato" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "Aggiungi layer" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "Aggiungi Gruppo impostazioni per intervallo Altezza" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "Aggiungi gruppo di impostazioni per l'oggetto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "Aggiungi Gruppi di Impostazioni per il sotto-progetto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "Aggiungi impostazioni per i layer" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "Aggiungi impostazioni per l'oggetto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "Aggiungi impostazioni per il sotto-oggetto" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "Aggiungi Forma" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "Aggiungi forma da Galleria" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "Aggiungere forme dalla galleria" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Aggiungi un pad sotto il modello supportato" @@ -778,33 +848,15 @@ msgstr "Aggiungi cambio estrusore - Clic sinistro" msgid "Add extruder to sequence" msgstr "Aggiungi estrusore alla sequenza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "Aggiungi sotto-oggetto generico" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "Aggiungi Intervallo Altezza" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "Aggiungi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "Aggiungi istanza all'oggetto selezionato" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "Aggiungi intervallo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "Aggiungi layer" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "Aggiungi modificatore" @@ -864,42 +916,6 @@ msgstr "Aggiungi la forma (le forme) selezionate al piano" msgid "Add settings" msgstr "Aggiungi impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "Aggiungi Gruppo impostazioni per intervallo Altezza" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "Aggiungi gruppo di impostazioni per l'oggetto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "Aggiungi Gruppi di Impostazioni per il sotto-progetto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "Aggiungi impostazioni per i layer" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "Aggiungi impostazioni per l'oggetto" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "Aggiungi impostazioni per il sotto-oggetto" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "Aggiungi Forma" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "Aggiungi forma da Galleria" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "Aggiungere forme dalla galleria" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -954,14 +970,14 @@ msgstr "Aggiungi/Rimuovi preset" msgid "Add/Remove printers" msgstr "Aggiungi/Rimuovi stampanti" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Informazioni aggiuntive:" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Impostazioni Aggiuntive" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Informazioni aggiuntive:" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -974,26 +990,19 @@ msgstr "" msgid "Address" msgstr "Indirizzo" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" -msgstr "Avanzate" - -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "Modalità Avanzata" +msgstr "Avanzata" #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "Modalità Visualizzazione Avanzata" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "Modalità Avanzata" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "Avanzato: Log di output" @@ -1018,14 +1027,14 @@ msgstr "" msgid "After layer change G-code" msgstr "G-code dopo il cambio layer" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Allinea il modello al punto dato." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Allinea XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Allinea il modello al punto dato." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Allineato" @@ -1091,10 +1100,6 @@ msgstr "Tutti i preset dell'utente saranno cancellati." msgid "All walls" msgstr "Tutte le pareti" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "allocazione fallita" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "Permetti una singola istanza di PrusaSlicer" @@ -1187,6 +1192,10 @@ msgstr "" "Un oggetto ha dei rinforzi di supporto personalizzati che non saranno " "utilizzati perché i supporti sono disabilitati." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1195,10 +1204,6 @@ msgstr "" "È stato rilevato un oggetto al di fuori dell'area di stampa.\n" "Risolvere il problema per continuare lo slicing." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "Si è verificato un errore inaspettato" @@ -1219,14 +1224,6 @@ msgstr "" "Qualunque modifica deve essere salvata come un nuovo preset ereditato da " "questo." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "Chiave API" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "Chiave API / Password" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Preferenze applicazione" @@ -1249,18 +1246,10 @@ msgstr "Applica automaticamente il cambio di colore" msgid "Apply to all the remaining small objects being loaded." msgstr "Applicare a tutti i piccoli oggetti rimanenti che vengono caricati." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "secondi approssimativi" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Corde di Archimede" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "l'archivio è troppo grande" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1292,6 +1281,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "Sicuro di voler eliminare la stampante \"%1%\"?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "Sei sicuro di voler cancellare tutte le sostituzioni?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "Sei sicuro di voler procedere?" @@ -1547,14 +1540,22 @@ msgstr "Abbandona su valori di configurazione sconosciuti" msgid "Balanced" msgstr "Bilanciato" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "basato su Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Piano" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "Forma Piano" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "Forma e dimensioni del piano di stampa" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Temperatura piano di stampa:" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "Modello piano personalizzato" @@ -1571,18 +1572,10 @@ msgstr "Riempimento piano annullato." msgid "Bed filling done." msgstr "Riempimento del piano eseguito." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "Forma Piano" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "Forma piano" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "Forma e dimensioni del piano di stampa" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Temperatura piano" @@ -1595,10 +1588,6 @@ msgstr "" "Temperatura per i layer dopo il primo. Imposta a zero per disattivare i " "comandi di controllo della temperatura del piano di stampa in output." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Temperatura piano di stampa:" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1608,14 +1597,14 @@ msgstr "G-code prima del cambio layer" msgid "Before roll back" msgstr "Prima di tornare indietro" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Sotto l'oggetto" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "Z Sotto" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Sotto l'oggetto" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "Migliore qualità superfice" @@ -1654,14 +1643,15 @@ msgstr "Volume bottiglia" msgid "Bottle weight" msgstr "Peso bottiglia" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" msgstr "Inferiore" +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Vista inferiore" + #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" msgstr "Distanza di contatto Z inferiore" @@ -1687,10 +1677,6 @@ msgstr "Il guscio inferiore è spesso %1% mm per l'altezza layer %2% mm." msgid "Bottom solid layers" msgstr "Layer solidi sul fondo" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Vista inferiore" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1789,10 +1775,6 @@ msgstr "Dimensione Pennello" msgid "Bucket fill" msgstr "Riempimento di colore" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "buffer troppo piccolo" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1819,18 +1801,30 @@ msgstr "" "Nota: Questo nome può essere cambiato in seguito dalle impostazioni delle " "stampanti fisiche" -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "secondo il massimo del profilo di stampa" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "ANNULLATO" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "COMPLETATO" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "verifica CRC-32 fallita" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"CURL init non riuscito. PrusaSlicer non sarà in grado di stabilire " +"connessioni di rete. Vedere i log per ulteriori dettagli." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Camera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Vista camera" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1841,6 +1835,10 @@ msgstr "" "Sapevi che puoi usare i tasti numerici 0-6 per passare rapidamente da " "un'angolazione predefinita della visuale a un' altra?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Vista camera" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "Non si può applicare durante la creazione dell'anteprima." @@ -1863,10 +1861,6 @@ msgstr "Cancella selezione" msgid "Cancel upload" msgstr "Annulla il caricamento" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "ANNULLATO" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "Annullato" @@ -1967,30 +1961,10 @@ msgstr "File di certificato (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "Cambia \"%1%\" a \"%2%\" per questa stampante fisica \"%3%\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "Cambia tipo di visuale (prospettica, ortografica)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "Modifica il diametro dei fori di drenaggio" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "Cambia estrusore" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "Cambio estrusore" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "Cambio estrusore (N/A)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "Cambia colore estrusore" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "Cambio Estrusori" @@ -2004,6 +1978,26 @@ msgstr "Modifica Opzione %s" msgid "Change Part Type" msgstr "Modifica il tipo di Parte" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "Cambia tipo di visuale (prospettica, ortografica)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "Modifica il diametro dei fori di drenaggio" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "Cambia estrusore" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "Cambio estrusore (N/A)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "Cambia colore estrusore" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "Modifica diametro punta della testa" @@ -2040,6 +2034,10 @@ msgstr "" "Cambiando alcune opzioni, l'applicazione si riavvia.\n" "Si perde il contenuto del piano." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Controlla aggiornamenti di configurazione" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Verifica la presenza di aggiornamenti" @@ -2048,9 +2046,9 @@ msgstr "Verifica la presenza di aggiornamenti" msgid "Check for configuration updates" msgstr "Controlla aggiornamenti di configurazione" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Controlla aggiornamenti di configurazione" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "Scegliere l'archivio SLA:" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2069,6 +2067,10 @@ msgstr "Scegli un file STL da cui importare il modello del piano:" msgid "Choose an STL file to import bed shape from:" msgstr "Scegli un file STL da cui importare la forma del piano:" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Scegli un file PNG:" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Seleziona un file (3MF/AMF):" @@ -2085,14 +2087,6 @@ msgstr "Scegli uno o più file (STL, OBJ):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Seleziona uno o più file (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Scegli un file PNG:" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "Scegliere l'archivio SLA:" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Indica il firmware usato dalla tua stampante." @@ -2107,10 +2101,6 @@ msgstr "Cerchio" msgid "Circular" msgstr "Circolare" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Pulisci tutto" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Cancella la cronologia Annulla / Ripeti sul nuovo progetto" @@ -2122,6 +2112,10 @@ msgstr "" "Svuota la cronologia Annulla / Ripeti con un nuovo progetto o quando viene " "caricato un progetto esistente." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Pulisci tutto" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "" @@ -2177,11 +2171,6 @@ msgstr "Chiudi" msgid "Close holes" msgstr "Chiudi i fori" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Distanza di chiusura" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "Chiusura di PrusaSlicer mentre alcuni preset vengono modificati." @@ -2190,6 +2179,11 @@ msgstr "Chiusura di PrusaSlicer mentre alcuni preset vengono modificati." msgid "Closing PrusaSlicer. Current project is modified." msgstr "Chiusura di PrusaSlicer. Il progetto corrente è modificato." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Distanza di chiusura" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "Raggio di chiusura" @@ -2206,6 +2200,15 @@ msgstr "Riduci/Espandi barra laterale" msgid "Color" msgstr "Colore" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "G-code cambio colore" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Color Print (Stampa a Colori)" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "Cambio colore" @@ -2220,10 +2223,6 @@ msgstr "Cambio colore (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Cambio colore (\"%1%\") per Estrusore %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "G-code cambio colore" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "G-code cambio colore" @@ -2232,11 +2231,6 @@ msgstr "G-code cambio colore" msgid "Color changes" msgstr "Cambi colore" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Color Print (Stampa a Colori)" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Altezza Colorprint" @@ -2270,15 +2264,15 @@ msgstr "Comandi" msgid "Comment:" msgstr "Commento:" -#: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" -msgstr "Confronta i preset" - #: src/slic3r/GUI/MainFrame.cpp:1417 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 msgid "Compare Presets" msgstr "Confronta Preset" +#: src/slic3r/GUI/MainFrame.cpp:1417 +msgid "Compare presets" +msgstr "Confronta i preset" + #: src/slic3r/GUI/Tab.cpp:216 msgid "Compare this preset with some another" msgstr "Confronta questo preset con un altro" @@ -2311,14 +2305,6 @@ msgstr "Completa singoli oggetti" msgid "Completed" msgstr "Completato" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "COMPLETATO" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "compressione fallita" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2336,6 +2322,23 @@ msgstr "Co&nfigurazione guidata" msgid "Configuration Assistant" msgstr "Assistente configurazione" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Istantanee di Configurazione" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"Gli aggiornamenti di configurazione causano la perdita della modifica del " +"preset.\n" +"Quindi, controlla le modifiche non salvate e salvale se necessario." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Configurazione Guidata" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2378,10 +2381,6 @@ msgstr "" "tra le istantanee usando il menu Configurazione - Istantanee di " "Configurazione." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Istantanee di Configurazione" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Aggiornamento di configurazione" @@ -2398,19 +2397,6 @@ msgstr "Aggiornamento di configurazione disponibile." msgid "Configuration updates" msgstr "Aggiornamenti di configurazione" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"Gli aggiornamenti di configurazione causano la perdita della modifica del " -"preset.\n" -"Quindi, controlla le modifiche non salvate e salvale se necessario." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Configurazione Guidata" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Conferma" @@ -2480,11 +2466,6 @@ msgstr "" msgid "Connection to OctoPrint works correctly." msgstr "Connessione con OctoPrint funzionante." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "" -"Collegamento alle stampanti collegate tramite l'host di stampa fallito." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "Collegamento a Prusa SL1 / SL1S correttamente funzionante." @@ -2497,9 +2478,10 @@ msgstr "Il collegamento a PrusaLink funziona correttamente." msgid "Connection to Repetier works correctly." msgstr "La connessione a Repetier funziona correttamente." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "continua" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "" +"Collegamento alle stampanti collegate tramite l'host di stampa fallito." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2586,25 +2568,26 @@ msgstr "Posizione tubo di raffreddamento" msgid "Copies of the selected object" msgstr "Copie dell'oggetto selezionato" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" msgstr "Copia" +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Copia info versione" + #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Copia selezione negli appunti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Copia negli appunti" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Copia negli appunti" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Copia info versione" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Copia negli appunti" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2759,10 +2742,6 @@ msgstr "" "risoluzione finale di stampa, dunque è preferibile settare il valore " "ragionevolmente basso." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "verifica CRC-32 fallita" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "Genera Pad intorno all'oggetto ed ignora l'elevazione del supporto" @@ -2801,14 +2780,6 @@ msgstr "Ctrl + Rotella del mouse" msgid "Cubic" msgstr "Cubico" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"CURL init non riuscito. PrusaSlicer non sarà in grado di stabilire " -"connessioni di rete. Vedere i log per ulteriori dettagli." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2926,10 +2897,6 @@ msgstr "Zona morta:" msgid "Decimate ratio" msgstr "Rapporto di decimazione" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "decompressione non riuscita o archivio corrotto" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Diminuisci Istanze" @@ -2940,16 +2907,9 @@ msgstr "Diminuisci Istanze" msgid "Default" msgstr "Predefinito" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "predefinito" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "Profilo materiale SLA predefinito" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2966,18 +2926,10 @@ msgstr "" msgid "Default color" msgstr "Colore predefinito" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "colore predefinito" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "Larghezza estrusione predefinita" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "profilo filamento predefinito" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "Profilo filamento predefinito" @@ -2992,10 +2944,6 @@ msgstr "" "Quando si seleziona il profilo stampante corrente, questo profilo filamento " "verrà attivato." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "profilo di stampa predefinito" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "Profilo di stampa predefinito" @@ -3011,22 +2959,6 @@ msgstr "" "selezione del profilo stampante corrente, questo profilo di stampa verrà " "attivato." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "profilo materiale SLA predefinito" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "Profilo materiale SLA predefinito" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "profilo di stampa SLA predefinito" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "valore predefinito" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "Inserisci un profilo stampante personalizzato" @@ -3047,10 +2979,6 @@ msgstr "" msgid "Delay after unloading" msgstr "Ritardo dopo lo scarico" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "elimina" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3061,11 +2989,6 @@ msgstr "Elimina" msgid "Delete &All" msgstr "Elimin&a tutto" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "Elimina tutto" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "Elimina Tutte le Istanze dall'Oggetto" @@ -3074,22 +2997,6 @@ msgstr "Elimina Tutte le Istanze dall'Oggetto" msgid "Delete All Objects" msgstr "Cancella tutti gli oggetti" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "Elimina il cambio colore" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "Elimina il segnale di cambio colore per il layer corrente" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "Elimina G-code personalizzato" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "Elimina foro di drenaggio" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "Elimina Intervallo Altezza" @@ -3102,33 +3009,15 @@ msgstr "Elimina Istanza" msgid "Delete Object" msgstr "Elimina Oggetto" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"Elimina una o più forme personalizzate. Non puoi cancellare le forme di " -"sistema" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "Elimina Opzione %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "Elimina pausa stampa" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "Elimina stampante fisica" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "Elimina stampante fisica" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "Elimina selezionato" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "Elimina Selezionati" @@ -3149,6 +3038,45 @@ msgstr "Elimina Impostazioni" msgid "Delete Subobject" msgstr "Elimina Sotto-oggetto" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "Elimina tutto" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "Elimina il cambio colore" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "Elimina il segnale di cambio colore per il layer corrente" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "Elimina G-code personalizzato" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "Elimina foro di drenaggio" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"Elimina una o più forme personalizzate. Non puoi cancellare le forme di " +"sistema" + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "Elimina pausa stampa" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "Elimina stampante fisica" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "Elimina selezionato" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "Elimina punto di supporto" @@ -3225,10 +3153,6 @@ msgstr "Deseleziona tutti gli oggetti" msgid "Desktop Integration" msgstr "Integrazione desktop" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "Integrazione desktop non riuscita." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3240,6 +3164,10 @@ msgstr "" "\n" "Premi \"Esegui\" per procedere." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "Integrazione desktop non riuscita." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "Integrazione desktop riuscita." @@ -3334,10 +3262,6 @@ msgstr "" "Perimetri e regola i valori nel pannello di destra. Leggi di più nella " "documentazione." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "differisce dal file originale" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "Direzione" @@ -3514,19 +3438,15 @@ msgstr "Vuoi salvare le modifiche di \"%1%\"?" msgid "Do you want to save your manually edited support points?" msgstr "Vuoi salvare i punti di supporto modificati manualmente?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "" -"Vuoi selezionare i filamenti predefiniti per questi modelli di stampante FFF?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "" "Vuoi selezionare i materiali SLA predefiniti per questi modelli di stampante?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "non contiene un g-code valido." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "" +"Vuoi selezionare i filamenti predefiniti per questi modelli di stampante FFF?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3621,10 +3541,37 @@ msgstr "Dinamico" msgid "E&xport" msgstr "Esporta" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "ERRORE" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "ERRORE:" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"ERRORE: Chiudi prima tutti i manipolatori disponibili nella barra degli " +"strumenti di sinistra" + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "ERRORE: risorse non sufficienti per eseguire un nuovo lavoro." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Modifica" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Modifica Intervallo Altezza" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Modifica colore" @@ -3639,10 +3586,6 @@ msgstr "" msgid "Edit custom G-code" msgstr "Modifica G-code personalizzato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Modifica Intervallo Altezza" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Modifica messaggio pausa di stampa" @@ -3675,10 +3618,6 @@ msgstr "Vettorizzazione Eigen supportata:" msgid "Ejec&t SD Card / Flash Drive" msgstr "Espelli Scheda SD / Memoria flash (&t)" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "Espelli dispositivo" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "Espelli scheda SD / Memoria flash" @@ -3688,6 +3627,10 @@ msgid "Eject SD card / Flash drive after the G-code was exported to it." msgstr "" "Espelli scheda SD / Memoria flash dopo l'esportazione del G-code in essa." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "Espelli dispositivo" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -3992,9 +3935,9 @@ msgstr "" msgid "Error" msgstr "Errore" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "ERRORE" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Messaggio d'errore" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -4013,10 +3956,6 @@ msgstr "Errore durante la sostituzione" msgid "Error loading shaders" msgstr "Errore caricamento shader" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Messaggio d'errore" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4056,30 +3995,11 @@ msgstr "Errore!" msgid "Error! Invalid model" msgstr "Errore! Modello non valido" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "ERRORE:" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Errore: %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "ERRORE: risorse non sufficienti per eseguire un nuovo lavoro." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"ERRORE: Chiudi prima tutti i manipolatori disponibili nella barra degli " -"strumenti di sinistra" - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4101,15 +4021,6 @@ msgstr "Evento" msgid "Everywhere" msgstr "Ovunque" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "ad eccezione dei primi %1% layer." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "ad eccezione del primo layer." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4157,14 +4068,14 @@ msgstr "" msgid "Expert" msgstr "Esperto" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Modalità Esperto" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Modalità Visualizzazione Esperto" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Modalità Esperto" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Esporta" @@ -4185,14 +4096,6 @@ msgstr "Esporta percorso strumen&to come OBJ" msgid "Export 3MF" msgstr "Esporta 3MF" -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export all presets including physical printers to file" -msgstr "Esportazione di tutti i preset, incluse le stampanti fisiche, su file" - -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export all presets to file" -msgstr "Esporta tutti i preset su file" - #: src/libslic3r/PrintConfig.cpp:4261 msgid "Export AMF" msgstr "Esporta AMF" @@ -4201,14 +4104,6 @@ msgstr "Esporta AMF" msgid "Export AMF file:" msgstr "Esporta file AMF:" -#: src/slic3r/GUI/GUI_Factories.cpp:715 -msgid "Export as STL" -msgstr "Esporta come STL" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:89 -msgid "Export config" -msgstr "Esporta config" - #: src/slic3r/GUI/MainFrame.cpp:1257 msgid "Export Config &Bundle" msgstr "Esporta Configurazione in &Bundle" @@ -4217,6 +4112,63 @@ msgstr "Esporta Configurazione in &Bundle" msgid "Export Config Bundle With Physical Printers" msgstr "Esportazione Config Bundle con stampanti fisiche" +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "Esporta G-code." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Esporta G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "Esporta G-code su Scheda SD / Memoria flash" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Esporta OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Esporta file OBJ:" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Esporta piano come &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Esporta piano come STL &includendo i supporti" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Esporta SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Esporta STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Esporta file STL:" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export all presets including physical printers to file" +msgstr "Esportazione di tutti i preset, incluse le stampanti fisiche, su file" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export all presets to file" +msgstr "Esporta tutti i preset su file" + +#: src/slic3r/GUI/GUI_Factories.cpp:715 +msgid "Export as STL" +msgstr "Esporta come STL" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:89 +msgid "Export config" +msgstr "Esporta config" + #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Esporta la configurazione corrente su file" @@ -4244,55 +4196,14 @@ msgstr "" "Esporta il percorso completo dei modelli e fonti delle parti nei file 3mf e " "amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Esporta G-code" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "Esporta G-code su Scheda SD / Memoria flash" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "Esporta G-code." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Esporta OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Esporta file OBJ:" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "L'esportazione di un file 3mf non è riuscita" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Esporta piano come &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Esporta piano come STL &includendo i supporti" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Esporta SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Esporta il percorso completo delle fonti su 3mf e amf" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Esporta STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Esporta file STL:" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Esporta modello/i come 3MF." @@ -4321,6 +4232,10 @@ msgstr "Esporta percorso strumento come OBJ" msgid "Export." msgstr "Esporta." +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Esportando il G-code" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Esportazione del bundle di configurazione" @@ -4329,10 +4244,6 @@ msgstr "Esportazione del bundle di configurazione" msgid "Exporting finished." msgstr "Esportazione completata." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Esportando il G-code" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4359,10 +4270,6 @@ msgstr "Tempo di esposizione" msgid "External perimeter" msgstr "Perimetro esterno" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "perimetri esterni" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "Perimetri esterni" @@ -4408,6 +4315,10 @@ msgstr "Estrusore %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Estrusore (strumento) viene cambiato a Estrusore \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Colore estrusore" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "Cambia estrusore a" @@ -4416,10 +4327,6 @@ msgstr "Cambia estrusore a" msgid "Extruder clearance" msgstr "Margine estrusore" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Colore estrusore" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Offset estrusore" @@ -4441,22 +4348,10 @@ msgstr "Conteggio estrusori" msgid "Extrusion" msgstr "Estrusione" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "Asse estrusore" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "Moltiplicatore estrusione" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Temperatura di estrusione:" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Larghezza estrusione" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4465,6 +4360,22 @@ msgstr "Larghezza estrusione" msgid "Extrusion Width" msgstr "Larghezza Estrusione" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "Asse estrusore" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "Moltiplicatore estrusione" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Larghezza estrusione" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "Stampanti con tecnologia FFF" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Facet" @@ -4473,10 +4384,6 @@ msgstr "Facet" msgid "Faded layers" msgstr "Layer sfumati" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "directory centrale non trovata" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4500,6 +4407,10 @@ msgstr "Impossibile attivare l'istantanea di configurazione." msgid "Failed to drill some holes into the model" msgstr "Mancata esecuzione di alcuni fori nel modello" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "Velocità ventola (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Impostazioni ventola" @@ -4508,10 +4419,6 @@ msgstr "Impostazioni ventola" msgid "Fan speed" msgstr "Velocità ventola" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "Velocità ventola (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4569,19 +4476,41 @@ msgstr "Tipo di caratteristica" msgid "Feature types" msgstr "Tipi di caratteristica" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "Stampanti con tecnologia FFF" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "filamento" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "Diametro del filamento:" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "G-code Finale Filamento" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "Sovrascrittura filamento" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "Selezione Profili Filamento" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Impostazioni Filamento" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Scheda Impostazioni Filamento" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "G-code Iniziale Filamento" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4592,14 +4521,6 @@ msgstr "Diametro filamento e ugello" msgid "Filament at extruder %1%" msgstr "Filamento all'estrusore %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "Diametro del filamento:" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "G-code Finale Filamento" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4616,36 +4537,14 @@ msgstr "Durata caricamento filamento" msgid "Filament notes" msgstr "Note filamento" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "Sovrascrittura filamento" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Posizione di parcheggio del filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "Selezione Profili Filamento" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "Proprietà filamento" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Impostazioni Filamento" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Scheda Impostazioni Filamento" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "G-code Iniziale Filamento" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Tipo filamento" @@ -4654,58 +4553,18 @@ msgstr "Tipo filamento" msgid "Filament unload time" msgstr "Durata scaricamento filamento" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "filamenti" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filamenti" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "chiusura del file fallita" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "generazione del file non riuscita" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "Non è stato selezionato il file per la sostituzione" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "file non trovato" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "file non trovato" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "apertura file non riuscita" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "lettura del file non riuscita" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "ricerca file fallita" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "statistica file non riuscita" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "file troppo grande" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "scrittura file fallita" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "Non è stato selezionato il file per la sostituzione" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4784,14 +4643,6 @@ msgstr "Finito" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Firmware flasher" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Immagine firmware:" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Retrazione Firmware" @@ -4800,6 +4651,14 @@ msgstr "Retrazione Firmware" msgid "Firmware Type" msgstr "Tipo Firmware" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Firmware flasher" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Immagine firmware:" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "Primo colore" @@ -4910,10 +4769,6 @@ msgstr "Flusso" msgid "Flow rate" msgstr "Flusso" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "il flusso viene massimizzato" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -4982,15 +4837,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Solo per rinforzi supporto" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"per il tasto sinistro: indica un preset non di sistema (o non-predefinito),\n" -"per il tasto destro: indica che le impostazioni non sono state modificate." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5045,10 +4891,6 @@ msgstr "Trovate parole chiave riservate in" msgid "From" msgstr "Da" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "da" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "" @@ -5067,10 +4909,6 @@ msgstr "Vista anteriore" msgid "Full fan speed at layer" msgstr "Massima velocità della ventola al layer" -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "nome completo profilo" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "Schermo intero" @@ -5085,6 +4923,12 @@ msgstr "" "Sapevi che puoi usare PrusaSlicer in modalità schermo intero? Usa il tasto " "rapido F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "Superficie Crespa" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5098,12 +4942,6 @@ msgstr "" "modificatori per applicare la superficie crespa solo ad una parte del tuo " "modello." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "Superficie Crespa" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "Superficie crespa (sperimentale)" @@ -5120,10 +4958,6 @@ msgstr "Spessore superficie crespa" msgid "Fuzzy skin type." msgstr "Tipo superficie crespa." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "G-code" @@ -5166,13 +5000,13 @@ msgstr "Miniature G-code" msgid "G-code viewer" msgstr "Visualizzatore G-code" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero General Public License, versione 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "GUI" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5224,10 +5058,6 @@ msgstr "Genera supporti" msgid "Generate supports for the models" msgstr "Genera supporti per i modelli" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "ha generato avvisi" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Generazione G-code" @@ -5272,10 +5102,6 @@ msgstr "Generazione buffer vertici" msgid "Generic" msgstr "Generico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "Gizmo Taglia" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Gizmo Dipingi giunzione FDM" @@ -5284,14 +5110,6 @@ msgstr "Gizmo Dipingi giunzione FDM" msgid "Gizmo FDM paint-on supports" msgstr "Gizmo supporti paint-on FDM" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Gizmo Sposta" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Gizmo Sposta: Premere per scatti di 1mm" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Gizmo Pittura Multi Material" @@ -5300,6 +5118,26 @@ msgstr "Gizmo Pittura Multi Material" msgid "Gizmo Place face on bed" msgstr "Gizmo Posiziona faccia sul piano" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA Svuota" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Gizmo Punti supporto SLA" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "Gizmo Taglia" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Gizmo Sposta" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Gizmo Sposta: Premere per scatti di 1mm" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Gizmo Ruota" @@ -5333,14 +5171,6 @@ msgstr "" "Gizmo ridimensiona: Ridimensiona la selezione per riempire il volume di " "stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Gizmo SLA Svuota" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Gizmo Punti supporto SLA" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5363,10 +5193,6 @@ msgstr "Gizmo-Ridimensiona" msgid "Gizmos" msgstr "Gizmo" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, versione 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5387,14 +5213,36 @@ msgstr "Gruppo" msgid "Group manipulation" msgstr "Manipolazione gruppo" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "GUI" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Giroide" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"Stato HTTP: %1%\n" +"Corpo messaggio: \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "File HTTPS CA" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"File HTTPS CA opzionale. È necessario solo se si intende usare un HTTPS con " +"certificato autofirmato." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "Diametro testa" @@ -5567,14 +5415,14 @@ msgstr "Cambio parametro svuotamento" msgid "Honeycomb" msgstr "Nido d'ape" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "Gusci orizzontali" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Cursore di scorrimento orizzontale " +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "Gusci orizzontali" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5638,40 +5486,14 @@ msgstr "Come applicare i limiti" msgid "How to apply the Machine Limits" msgstr "Come applicare i Limiti Macchina" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"Stato HTTP: %1%\n" -"Corpo messaggio: \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "File HTTPS CA" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"File HTTPS CA opzionale. È necessario solo se si intende usare un HTTPS con " -"certificato autofirmato." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Dimensioni icona rispetto alla dimensione predefinita" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5708,6 +5530,44 @@ msgstr "" "temporanea separata. Quando è disponibile una nuova versione del preset, " "questa viene proposta all'avvio." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "" +"Se abilitato, PrusaSlicer sarà aperto nella posizione in cui è stato chiuso" + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "" +"Se abilitato, PrusaSlicer non aprirà i collegamenti ipertestuali nel tuo " +"browser." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"Se abilitato, le schede delle impostazioni saranno posizionate come voci di " +"menu. Se disabilitato, verrà usata la vecchia UI." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Se abilitato, Slic3r scarica gli aggiornamenti dei preset inclusi in " +"background. Questi aggiornamenti sono scaricati in una posizione temporanea. " +"Quando una nuova versione dei preset diventa disponibile, viene offerta " +"all'avvio." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"Se abilitato, l'UI userà i colori della modalità Dark. Se disabilitato, " +"verrà usata la vecchia UI." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "" @@ -5721,6 +5581,14 @@ msgstr "" "Se attivata, tutti gli estrusori di stampa verranno preparati nel bordo " "frontale del piano di stampa all'inizio della stampa." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Se attivo, permette il comando Ricarica da disco per trovare e caricare " +"automaticamente i file quando richiesto." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5733,14 +5601,6 @@ msgstr "" "Se non attivo, il comando Ricarica da disco chiederà di selezionare ciascun " "file tramite finestra di apertura file." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"Se attivo, permette il comando Ricarica da disco per trovare e caricare " -"automaticamente i file quando richiesto." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5772,17 +5632,6 @@ msgstr "" "modifiche fatte usando il cursore sequenziale, nell'anteprima, si applicano " "a tutto il gcode." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "" -"Se abilitato, PrusaSlicer sarà aperto nella posizione in cui è stato chiuso" - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "" -"Se abilitato, PrusaSlicer non aprirà i collegamenti ipertestuali nel tuo " -"browser." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5797,6 +5646,14 @@ msgstr "Se abilitato, renderizza l'oggetto utilizzando la mappa ambientale." msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "Se abilitato, inverte la direzione dello zoom con la rotella del mouse" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"Se abilitato, imposta il visualizzatore G-code di PrusaSlicer come " +"applicazione predefinita per aprire i file .gcode." + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5809,34 +5666,6 @@ msgstr "" "Se abilitato, imposta PrusaSlicer come applicazione predefinita per aprire i " "file .stl." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"Se abilitato, imposta il visualizzatore G-code di PrusaSlicer come " -"applicazione predefinita per aprire i file .gcode." - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"Se abilitato, le schede delle impostazioni saranno posizionate come voci di " -"menu. Se disabilitato, verrà usata la vecchia UI." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Se abilitato, Slic3r scarica gli aggiornamenti dei preset inclusi in " -"background. Questi aggiornamenti sono scaricati in una posizione temporanea. " -"Quando una nuova versione dei preset diventa disponibile, viene offerta " -"all'avvio." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5893,13 +5722,6 @@ msgstr "" "il basso per stampare la torre di pulitura. L'utente è responsabile " "nell'accertarsi che non avvengano collisioni durante la stampa." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"Se abilitato, l'UI userà i colori della modalità Dark. Se disabilitato, " -"verrà usata la vecchia UI." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -6008,14 +5830,6 @@ msgstr "" "secondi, la velocità dei movimenti di stampa sarà ridotta per estendere la " "durata di questo valore." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Se questo è attivo, la ventola non verrà mai disattiva e verrà mantenuta " -"attiva almeno alla velocità minima. Utile per il PLA, dannosa per l'ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6040,6 +5854,14 @@ msgstr "" "Se attivo, Slic3r suggerirà l'ultima cartella di destinazione invece della " "cartella contenente il file di ricezione." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Se questo è attivo, la ventola non verrà mai disattiva e verrà mantenuta " +"attiva almeno alla velocità minima. Utile per il PLA, dannosa per l'ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6177,26 +5999,6 @@ msgstr "Importa Configurazione da &progetto" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importa Config da ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Importa solo configurazione" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Importa file" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Importa solo la geometria" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Importa modello e profilo" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Importa solo il modello" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Importa Oggetto" @@ -6205,14 +6007,6 @@ msgstr "Importa Oggetto" msgid "Import Objects" msgstr "Importa Oggetti" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "Importazione del file 3mf riparato non riuscita" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Solo profilo di importazione" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Importa archivio SL1 / SL1S" @@ -6233,6 +6027,38 @@ msgstr "Importa STL/OBJ/AM&F/3MF" msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importa STL/OBJ/AMF/3MF senza configurazione, mantieni piano" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Importa solo configurazione" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Importa file" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Importa solo la geometria" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Importa modello e profilo" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Importa solo il modello" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "Importazione del file 3mf riparato non riuscita" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Solo profilo di importazione" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importazione archivio SLA" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Importazione annullata." @@ -6241,18 +6067,6 @@ msgstr "Importazione annullata." msgid "Importing done." msgstr "Importazione completata." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importazione archivio SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "in" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "Nel G-code personalizzato sono state trovate parole chiave riservate:" @@ -6287,41 +6101,6 @@ msgstr "Aumenta Istanze" msgid "Increase/decrease edit area" msgstr "Aumenta/diminuisci l'area di modifica" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"indica che è stata modificata qualche impostazione e non è uguale ai valori " -"di sistema (o predefiniti) del corrente gruppo di opzioni.\n" -"Clicca l'icona LUCCHETTO APERTO per reimpostare tutte le impostazioni del " -"corrente gruppo di opzioni ai valori di sistema (o predefiniti)." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"indica che le impostazioni sono uguali ai valori di sistema (o predefiniti) " -"per l'attuale gruppo di opzioni" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"indica che le impostazioni sono state modificate e non corrispondono " -"all'ultimo preset salvato per l'attuale gruppo opzioni.\n" -"Clicca l'icona FRECCIA INDIETRO per reimpostare all'ultimo preset salvato " -"tutte le impostazioni per il seguente gruppo di opzioni." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6335,10 +6114,6 @@ msgstr "" msgid "Infill" msgstr "Riempimento" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "riempimento" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "Riempimento prima dei perimetri" @@ -6385,6 +6160,11 @@ msgstr "Altezza layer iniziale" msgid "Inner brim only" msgstr "Solo Brim interno" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "Valore input fuori portata" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6394,11 +6174,6 @@ msgstr "" "Il valore di input è fuori portata\n" "Sei sicuro che %s sia un valore corretto e di voler continuare?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "Valore input fuori portata" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6472,10 +6247,6 @@ msgstr "Spaziatura trama interfaccia" msgid "Interface shells" msgstr "Gusci interfaccia" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "errore interno" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6486,6 +6257,10 @@ msgstr "Errore interno: %1%" msgid "Internal infill" msgstr "Riempimento interno" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "Penetrazione della testa non valida" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "Dati non validi" @@ -6495,18 +6270,6 @@ msgstr "Dati non validi" msgid "Invalid file format." msgstr "Formato file non valido." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "nome file non valido" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "Penetrazione della testa non valida" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "titolo non valido o archivio corrotto" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6522,14 +6285,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "Input numerico non valido." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "parametro non valido" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "Diametro apice non valido" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Stiratura" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6545,32 +6313,14 @@ msgstr "" "sollevata. Leggi di più nella documentazione. (Richiede la modalità Avanzata " "o Esperto)." -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Stiratura" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Tipo di stiratura" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "è basato su Slic3r di Alessandro Ranellucci e la comunità RepRap." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "È sicuro?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "è concesso in licenza ai sensi" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Iso" @@ -6627,15 +6377,6 @@ msgstr "Jitter" msgid "Jump to height" msgstr "Salta all'altezza" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"Vai all'altezza %s \n" -"o Imposta la modalità righello" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6647,6 +6388,15 @@ msgstr "" "Imposta la modalità del righello\n" "o Imposta la sequenza dell'estrusore per l'intera stampa" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"Vai all'altezza %s \n" +"o Imposta la modalità righello" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "Salta per spostare" @@ -6689,9 +6439,25 @@ msgstr "Scorciatoie Tastiera" msgid "Keyboard shortcuts" msgstr "Scorciatoie tastiera" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "LUCCHETTO CHIUSO" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"L'icona LUCCHETTO CHIUSO indica che le impostazioni corrispondono ai valori " +"di sistema (o predefiniti) per il seguente gruppo di opzioni" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"L'icona LUCCHETTO CHIUSO indica che il valore è uguale a quello di sistema " +"(o predefinito)." #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6745,23 +6511,11 @@ msgstr "Limiti altezza layer" msgid "Layer range Settings to modify" msgstr "Impostazioni da modificare in Intervallo Layer" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "layer" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Layer" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Layer e perimetri" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6775,15 +6529,9 @@ msgstr "Layer e perimetri" msgid "Layers and Perimeters" msgstr "Layer e Perimetri" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Inferiore" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Superiore" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Layer e perimetri" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6798,6 +6546,14 @@ msgstr "Lascia \"%1%\" abilitato" msgid "Left" msgstr "Sinistra" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Valore di preset sinistro" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Vista sinistra" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6814,14 +6570,6 @@ msgstr "Tasto sinistro mouse" msgid "Left mouse button:" msgstr "Tasto sinistro mouse:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Valore di preset sinistro" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Vista sinistra" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Legenda/Stima del tempo di stampa" @@ -6849,6 +6597,10 @@ msgstr "" "Gli accordi di licenza di tutti i programmi seguenti (librerie) fanno parte " "del contratto di licenza dell'applicazione" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Solleva Z" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6857,10 +6609,6 @@ msgstr "" "Solleva l'oggetto sopra il piano quando è parzialmente sotto. Abilitato di " "default, usa --no-ensure-on-bed per disabilitare." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Solleva Z" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6877,18 +6625,42 @@ msgstr "Linea" msgid "Load" msgstr "Carica" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Carica Config da ini/amf/3mf/gcode e unisci" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "Carica file" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "Carica file" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "Caricare modificatore" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "Carica Parte" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "Carica Progetto" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "Carica modello" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "Carica un modello salvato con unità imperiali" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "Carica un archivio SL1 / SL1S" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "Carica un modello salvato con unità imperiali" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6916,10 +6688,6 @@ msgstr "" "stesso modo, puoi usare File-Importa-Importa archivio SL1 / SL1S, che ti " "permette anche di ricostruire modelli 3D dai dati voxel." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "Carica Config da ini/amf/3mf/gcode e unisci" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "Carica configurazione dal file di progetto" @@ -6936,30 +6704,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "Carica un file di configurazione esportato" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "Carica file" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "Carica file" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "Caricare modificatore" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "Carica Parte" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "Carica i preset da un gruppo" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "Carica Progetto" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "Carica forma da STL..." @@ -6968,10 +6716,6 @@ msgstr "Carica forma da STL..." msgid "Load..." msgstr "Caricamento..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "caricato" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "Caricamento" @@ -7037,26 +6781,6 @@ msgstr "Coordinate locali" msgid "Lock supports under new islands" msgstr "Fissa i supporti sotto le nuove isole" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "LUCCHETTO CHIUSO" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"L'icona LUCCHETTO CHIUSO indica che le impostazioni corrispondono ai valori " -"di sistema (o predefiniti) per il seguente gruppo di opzioni" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"L'icona LUCCHETTO CHIUSO indica che il valore è uguale a quello di sistema " -"(o predefinito)." - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Livello di logging" @@ -7090,13 +6814,6 @@ msgstr "" "I limiti della macchina non sono impostati, quindi la stima del tempo di " "stampa potrebbe non essere accurata." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"I limiti della macchina verranno emessi in G-code e utilizzati per stimare " -"il tempo di stampa." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7108,6 +6825,13 @@ msgstr "" "accurato in quanto la stampante potrebbe applicare un diverso set di limiti " "della macchina." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"I limiti della macchina verranno emessi in G-code e utilizzati per stimare " +"il tempo di stampa." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7139,10 +6863,6 @@ msgstr "Scheda Impostazioni Mate&riale" msgid "Material" msgstr "Materiale" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Profilo del materiale di stampa" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7153,6 +6873,10 @@ msgstr "Impostazioni Materiali" msgid "Material Settings Tab" msgstr "Scheda Impostazioni Materiali" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Profilo del materiale di stampa" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Massimo" @@ -7181,10 +6905,6 @@ msgstr "Altezza massima di stampa" msgid "Max print speed" msgstr "Massima velocità di stampa" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "versione PrusaSlicer massima" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Massima pendenza volumetrica negativa" @@ -7209,6 +6929,18 @@ msgstr "Distanza massima tra supporti in sezioni a riempimento sparso." msgid "Maximum acceleration E" msgstr "Accelerazione massima E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Accelerazione massima X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Accelerazione massima Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Accelerazione massima Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Accelerazione massima per gli spostamenti" @@ -7257,18 +6989,6 @@ msgstr "Accelerazione massima durante la retrazione" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Accelerazione massima durante la retrazione (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Accelerazione massima X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Accelerazione massima Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Accelerazione massima Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Accelerazioni massime" @@ -7300,6 +7020,18 @@ msgstr "Tempo massimo di esposizione" msgid "Maximum feedrate E" msgstr "Avanzamento massimo E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Avanzamento massimo X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Avanzamento massimo Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Avanzamento massimo Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Avanzamento massimo dell'asse E" @@ -7316,18 +7048,6 @@ msgstr "Avanzamento massimo dell'asse Y" msgid "Maximum feedrate of the Z axis" msgstr "Avanzamento massimo dell'asse Z" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Avanzamento massimo X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Avanzamento massimo Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Avanzamento massimo Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Avanzamenti massimi" @@ -7340,6 +7060,18 @@ msgstr "Tempo massimo di esposizione iniziale" msgid "Maximum jerk E" msgstr "Jerk massimo E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Jerk massimo X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Jerk massimo Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Jerk massimo Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Jerk massimo dell'asse E" @@ -7356,18 +7088,6 @@ msgstr "Jerk massimo dell'asse Y" msgid "Maximum jerk of the Z axis" msgstr "Jerk massimo dell'asse Z" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Jerk massimo X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Jerk massimo Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Jerk massimo Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Lunghezza massima dell'ancoraggio del riempimento" @@ -7461,10 +7181,6 @@ msgstr "Minimo" msgid "Min print speed" msgstr "Velocità minima di stampa" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "versione PrusaSlicer minima" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Distanza minima dei punti di supporto" @@ -7527,6 +7243,10 @@ msgstr "Avanzamento minimo" msgid "Minimum initial exposure time" msgstr "Tempo minimo di esposizione iniziale" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Spessore minimo guscio" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7540,10 +7260,6 @@ msgstr "" "particolarmente utile quando si usa la funzione di altezza variabile dei " "layer." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Spessore minimo guscio" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Spessore minimo guscio superiore / inferiore" @@ -7580,6 +7296,10 @@ msgstr "" "Larghezza minima della funzione da mantenere durante la compensazione della " "zampa d'elefante." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Specchia" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7591,18 +7311,14 @@ msgstr "" "invertita? Fai clic con il tasto destro del mouse sul modello, seleziona " "Specchio e scegli l'asse dello specchio." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Specchia" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Specchia Oggetto" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Specchia orizzontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Specchia Oggetto" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Specchia l'oggetto selezionato" @@ -7633,133 +7349,10 @@ msgstr "Tipo di Host di stampa non corrispondente: %s" msgid "Mixed" msgstr "Mischiate" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (imposta a zero per disabilitare)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm o %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm o % (zero per disattivare)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s o %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "&Modalità" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "modello" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Modello" @@ -7772,19 +7365,10 @@ msgstr "Riparazione modello annullata" msgid "Model repair finished" msgstr "Riparazione modello terminata" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "Avanzata" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Verranno salvate le modifiche al profilo attuale." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "modificato" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Modificatore" @@ -7793,14 +7377,6 @@ msgstr "Modificatore" msgid "Modifiers" msgstr "Modificatori" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "soldi/bottiglia" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "soldi/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotonico" @@ -7832,6 +7408,10 @@ msgstr "Rotella del mouse:" msgid "Move" msgstr "Sposta" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "Sposta oggetto" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "Abbassa cursore attivo" @@ -7856,10 +7436,6 @@ msgstr "Sposta piano sezione" msgid "Move drainage hole" msgstr "Sposta foro di drenaggio" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "Sposta oggetto" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "Sposta punto" @@ -7950,6 +7526,14 @@ msgstr "Moltiplica le copie per questo valore." msgid "N/A" msgstr "N/A" +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "NESSUN RAMMING" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "NOTA:" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -7983,6 +7567,10 @@ msgstr "Nomi di preset relativi alla stampante fisica" msgid "Nearest" msgstr "Più vicino" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Volume negativo" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -7997,14 +7585,18 @@ msgstr "" "facilmente ridimensionabili direttamente in PrusaSlicer. Leggi di più nella " "documentazione. (Richiede la modalità Avanzata o Esperto)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Volume negativo" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "Ricerca network" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Nuovo progetto" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Nuovo valore" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "Nuovo layout, accesso tramite pulsante impostazioni dal menù superiore" @@ -8018,10 +7610,6 @@ msgstr "È disponibile la nuova versione prerelease %1%." msgid "New printer preset selected" msgstr "Nuovo preset stampante selezionato" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Nuovo progetto" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Nuovo progetto, pulisci piano" @@ -8031,10 +7619,6 @@ msgstr "Nuovo progetto, pulisci piano" msgid "New release version %1% is available." msgstr "La nuova versione %1% è disponibile." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Nuovo valore" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8088,10 +7672,6 @@ msgstr "" msgid "No previously sliced file." msgstr "File non processato precedentemente." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "NESSUN RAMMING" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Nessun layer sparso (SPERIMENTALE)" @@ -8117,18 +7697,10 @@ msgstr "Nessuno" msgid "Normal" msgstr "Normale" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "modalità normale" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Modalità normale" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "non un archivio ZIP" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "Non trovato:" @@ -8158,10 +7730,6 @@ msgstr[1] "" "Nota, queste stampanti saranno cancellate dopo aver cancellato il preset " "selezionato." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "NOTA:" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8205,14 +7773,14 @@ msgstr "Nota: è richiesta una versione di OctoPrint 1.1.0 o successiva." msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Nota: è richiesta la versione di Repetier almeno 0.90.0." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 -msgid "Note: some shortcuts work in (non)editing mode only." -msgstr "Nota: alcune scorciatoie funzionano solo in modalità (non)modifica." - #: src/slic3r/GUI/SavePresetDialog.cpp:137 msgid "Note: This preset will be replaced after saving" msgstr "Nota: Questo preset sarà sostituito dopo il salvataggio" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 +msgid "Note: some shortcuts work in (non)editing mode only." +msgstr "Nota: alcune scorciatoie funzionano solo in modalità (non)modifica." + #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8231,14 +7799,14 @@ msgstr "Avvertenza" msgid "Notify about new releases" msgstr "Notificare le nuove uscite" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "ugello" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Ugello" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "Diametro ugello:" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Temperatura ugello e piano" @@ -8248,10 +7816,6 @@ msgstr "Temperatura ugello e piano" msgid "Nozzle diameter" msgstr "Diametro ugello" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "Diametro ugello:" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Temperatura ugello" @@ -8347,11 +7911,9 @@ msgstr "" msgid "Number of tool changes" msgstr "Numero di cambi strumento" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "oggetto" -msgstr[1] "oggetti" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "Impostazioni Oggetto da modificare" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8378,10 +7940,6 @@ msgstr "Oggetto o Istanza" msgid "Object reordered" msgstr "Oggetto riordinato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "Impostazioni Oggetto da modificare" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8412,10 +7970,6 @@ msgstr "" "altrimenti nella torre di pulitura. Come risultato, i colori dell'oggetto " "saranno mischiati." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "oggetti" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Elenco oggetti" @@ -8428,15 +7982,6 @@ msgstr "Spirale a Ottagramma" msgid "OctoPrint version" msgstr "Versione OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "di un Oggetto corrente" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Size" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Offset" @@ -8449,14 +7994,14 @@ msgstr "" "Offset del brim dell'oggetto stampato. L'offset viene applicato dopo la " "compensazione della zampa d'elefante." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Precedente layout normale con la barra delle schede" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Valore precedente" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Precedente layout normale con la barra delle schede" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8542,14 +8087,6 @@ msgstr "Solleva Z solo al di sotto" msgid "Only retract when crossing perimeters" msgstr "Retrai solo se si attraversa un perimetro" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"Solo le seguenti stampanti installate sono compatibili con i filamenti " -"selezionati" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8558,6 +8095,14 @@ msgstr "" "Solo le seguenti stampanti installate sono compatibili con i materiali SLA " "selezionati" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"Solo le seguenti stampanti installate sono compatibili con i filamenti " +"selezionati" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Prevenzione delle fuoriuscite" @@ -8572,6 +8117,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Apri &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Apri file di certificato CA" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Aprire la documentazione nel browser web." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Apri Cartella." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Apri un file G-code:" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "Apri visualizzatore G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Apri una nuova istanza" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Apri le preferenze." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "Apri PrusaSlicer" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Apri un file G-code" @@ -8589,35 +8166,15 @@ msgstr "Apri un file progetto" msgid "Open as project" msgstr "Apri come progetto" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Apri file di certificato CA" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "Apri la pagina del registro delle modifiche" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Aprire la documentazione nel browser web." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Apri la pagina di Download" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Apri Cartella." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Apri un file G-code:" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "Apri visualizzatore G-code" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "Aprire il collegamento ipertestuale nel browser predefinito?" @@ -8630,35 +8187,23 @@ msgstr "Apri nuovo visualizzatore G-code" msgid "Open new instance" msgstr "Apri una nuova istanza" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Apri una nuova istanza" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Apri le preferenze." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Apri progetto STL/OBJ/AMF/3MF con configurazione, pulisci piano" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "Apri PrusaSlicer" - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "Apri il sito web di %s nel browser" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "Aprire la finestra di dialogo per modificare la galleria delle forme" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Apri la pagina di download dei driver Prusa3D sul browser" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "Aprire la finestra di dialogo per modificare la galleria delle forme" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Apri la pagina delle versioni software sul browser" @@ -8683,6 +8228,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Operazione già annullata. Si prega di attendere qualche secondo." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Ottimizza Rotazione" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "Ottimizza rotazione oggetto per la migliore qualità superficiale" @@ -8704,10 +8253,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Ottimizza orientamento" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Ottimizza Rotazione" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8732,10 +8277,6 @@ msgstr "Opzioni per materiale di supporto e raft" msgid "Options:" msgstr "Opzioni:" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "o premi il tasto \"+\"" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "Ordinare i volumi degli oggetti per tipo" @@ -8756,14 +8297,14 @@ msgstr "Origine" msgid "Other" msgstr "Altro" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Altri layer" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Altri Fornitori" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Altri layer" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "Brim esterno e interno" @@ -8772,22 +8313,22 @@ msgstr "Brim esterno e interno" msgid "Outer brim only" msgstr "Solo brim esterno" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "File di output" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "File di output" +#: src/libslic3r/PrintConfig.cpp:4305 +msgid "Output Model Info" +msgstr "Info Modello di output" + +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "File di output" + #: src/libslic3r/PrintConfig.cpp:1902 msgid "Output filename format" msgstr "Formato del file di output" -#: src/libslic3r/PrintConfig.cpp:4305 -msgid "Output Model Info" -msgstr "Info Modello di output" - #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Opzioni output" @@ -8900,6 +8441,10 @@ msgstr "" "intorno all'asse Z in senso orario o antiorario premendo rispettivamente " "Pagina su o Pagina giù?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Pittura giunzione" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8912,9 +8457,10 @@ msgstr "" "posizionare il punto di inizio/fine di ogni ciclo perimetrale? Prova la " "funzionePittura giunzione. (Richiede la modalità Avanzata o Esperto)." -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Pittura giunzione" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Supporti Paint-on" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -8928,11 +8474,6 @@ msgstr "" "dove devono essere applicati o bloccati i supporti? Prova la funzione " "Supporti Paint-on. (Richiede la modalità Avanzata o Esperto)." -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Supporti Paint-on" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -8967,10 +8508,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Dipinge solo una facet." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "nome parametro" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Validazione parametri" @@ -8991,14 +8528,14 @@ msgstr "" msgid "Part" msgstr "Parte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Manipolazione parti" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "Impostazioni parte da modificare" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Manipolazione parti" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "Password" @@ -9007,6 +8544,10 @@ msgstr "Password" msgid "Paste" msgstr "Incolla" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Incolla dagli appunti" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Incolla appunti" @@ -9015,10 +8556,6 @@ msgstr "Incolla appunti" msgid "Paste from clipboard" msgstr "Incolla dagli appunti" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Incolla dagli appunti" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Trama" @@ -9049,16 +8586,16 @@ msgstr "Trama usata per generare il materiale di supporto." msgid "Pause" msgstr "Pausa" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Metti in pausa (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "G-code Pausa Stampa" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Metti in pausa (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "" @@ -9094,6 +8631,12 @@ msgstr "" "Prestazioni vs Precisione di calcolo. Valori più bassi possono produrre " "artefatti non voluti." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "" +"Esecuzione dell'integrazione del desktop non riuscita - Impossibile trovare " +"l'eseguibile." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9111,12 +8654,6 @@ msgstr "" "il file desktop Gcodeviewer. Probabilmente il file desktop PrusaSlicer è " "stato creato correttamente." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "" -"Esecuzione dell'integrazione del desktop non riuscita - Impossibile trovare " -"l'eseguibile." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9134,10 +8671,6 @@ msgstr "Perimetro" msgid "Perimeter extruder" msgstr "Estrusore perimetro" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "perimetri" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9215,6 +8748,10 @@ msgstr "Larghezza apice" msgid "Place bearings in slots and resume printing" msgstr "Posiziona i cuscinetti negli alloggi e riprendi a stampare" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Posiziona su faccia" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9227,10 +8764,6 @@ msgstr "" "delle sue facce poggi sul piano di stampa? Seleziona la funzione " "Posiziona su faccia o premi il tasto F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Posiziona su faccia" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9273,10 +8806,6 @@ msgstr "Posizione" msgid "Position (for multi-extruder printers)" msgstr "Posizione (per stampanti multi-estrusore)" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Posizione dei punti iniziali dei perimetri." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "Posizione X" @@ -9285,6 +8814,10 @@ msgstr "Posizione X" msgid "Position Y" msgstr "Posizione Y" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Posizione dei punti iniziali dei perimetri." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "" @@ -9386,11 +8919,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "Preset con il nome \"%1%\" già esistente." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Copia" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9453,10 +8981,6 @@ msgstr "File precedentemente processato (" msgid "Prime all printing extruders" msgstr "Prepara tutti gli estrusori di stampa" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "stampa" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Stampa" @@ -9465,14 +8989,6 @@ msgstr "Stampa" msgid "Print &Host Upload Queue" msgstr "Coda di caricamento &Host di stampa" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Stampa i perimetri di contorno dal più esterno al più interno invece " -"dell'ordine predefinito inverso." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Diametro di stampa" @@ -9481,6 +8997,23 @@ msgstr "Diametro di stampa" msgid "Print Host upload" msgstr "Caricamento Host di stampa" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Impostazioni Stampa" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Scheda Impostazioni Stampa" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Stampa i perimetri di contorno dal più esterno al più interno invece " +"dell'ordine predefinito inverso." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9494,20 +9027,11 @@ msgstr "Modalità di stampa" msgid "Print pauses" msgstr "Pause di stampa" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Impostazioni Stampa" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Impostazioni di stampa" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Scheda Impostazioni Stampa" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "Velocità di stampa" @@ -9542,9 +9066,14 @@ msgstr "" msgid "Printer" msgstr "Stampante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "stampante" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Impostazioni stampante" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Scheda Impostazioni Stampante" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9554,10 +9083,6 @@ msgstr "Correzione assoluta stampante" msgid "Printer gamma correction" msgstr "Correzione gamma della stampante" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "modello stampante" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Note stampante" @@ -9566,6 +9091,18 @@ msgstr "Note stampante" msgid "Printer preset names" msgstr "Nomi dei preset della stampante" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Correzione del ridimensionamento della stampante nell'asse X" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Correzione del fattore di scala della stampante sull'asse Y" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Correzione del ridimensionamento della stampante nell'asse Z" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9583,27 +9120,6 @@ msgstr "Correzione del ridimensionamento della stampante sull'asse Y" msgid "Printer scaling correction in Z axis" msgstr "Correzione del ridimensionamento della stampante sull'asse Z" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Correzione del ridimensionamento della stampante nell'asse X" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Correzione del fattore di scala della stampante sull'asse Y" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Correzione del ridimensionamento della stampante nell'asse Z" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Impostazioni stampante" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Scheda Impostazioni Stampante" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Tecnologia stampante" @@ -9695,6 +9211,10 @@ msgstr "Stampanti Prusa con tecnologia FFF" msgid "Prusa MSLA Technology Printers" msgstr "Stampanti Prusa con tecnologia MSLA" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "Inizializzazione GUI PrusaSlicer non riuscita" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9728,10 +9248,6 @@ msgstr "PrusaSlicer ha rilevato l'archivio dei certificati SSL di sistema: %1%" msgid "PrusaSlicer error" msgstr "Errore PrusaSlicer" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "Inizializzazione GUI PrusaSlicer non riuscita" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10075,6 +9591,16 @@ msgstr "Regolare" msgid "Regular expression" msgstr "Espressione regolare" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"L'indirizzamento relativo dell'estrusore richiede la reimpostazione della " +"posizione dell'estrusore ad ogni strato per evitare la perdita di precisione " +"in virgola mobile. Aggiungi \"G92 E0\" a layer_gcode." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Solo Release" @@ -10083,6 +9609,11 @@ msgstr "Solo Release" msgid "Reload all from disk" msgstr "Ricarica tutto da disco" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Ricarica da Disco" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10095,11 +9626,6 @@ msgstr "" "semplicemente ricaricarlo in PrusaSlicer? Fai clic destro sul modello nella " "vista 3D e scegli Ricarica da disco. Leggi di più nella documentazione." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Ricarica da Disco" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Ricarica da:" @@ -10137,15 +9663,19 @@ msgstr "Ricorda la mia scelta" msgid "Remember output directory" msgstr "Ricorda la directory di output" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "rimuovi" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "Rimuovi" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "Rimuovi Istanza dell'oggetto selezionato" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "Rimuovi pittura Multi Material" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "Rimuovi tutti i fori" @@ -10171,18 +9701,10 @@ msgstr "Rimuovi estrusore dalla sequenza" msgid "Remove instance" msgstr "Rimuovi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "Rimuovi Istanza dell'oggetto selezionato" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "Rimuovi intervallo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "Rimuovi pittura Multi Material" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "Rimuovi una istanza dell'oggetto selezionato" @@ -10317,11 +9839,11 @@ msgid "Repairing was canceled" msgstr "La riparazione è stata annullata" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" +msgid "Repeat Last Quick Slice" msgstr "Ripeti l'ultimo slice veloce" #: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat Last Quick Slice" +msgid "Repeat last quick slice" msgstr "Ripeti l'ultimo slice veloce" #: src/slic3r/GUI/Plater.cpp:3432 @@ -10357,21 +9879,6 @@ msgstr "&Segnala un problema" msgid "Report an issue on %s" msgstr "Segnala un problema su %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "richiede max. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "richiede min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "richiede min. %s e max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Ri-scansiona" @@ -10380,6 +9887,14 @@ msgstr "Ri-scansiona" msgid "Reset" msgstr "Reimposta" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Reimposta Progetto" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Reimposta rotazione" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Ripristina piano sezione" @@ -10392,18 +9907,10 @@ msgstr "Ripristina piano sezione" msgid "Reset direction" msgstr "Reset direzione" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Reimposta Progetto" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Reimposta rotazione" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Reimposta rotazione" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10415,14 +9922,14 @@ msgstr "Reimposta scala" msgid "Reset selection" msgstr "Reset selezione" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Ripristina alla base" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Ripristina colore Filamento" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Ripristina alla base" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Riavvia l'applicazione" @@ -10444,13 +9951,6 @@ msgstr "Retrai al cambio layer" msgid "Retraction" msgstr "Retrazione" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"La retrazione non è attivata quando i movimenti di spostamento sono più " -"brevi di questa lunghezza." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "Lunghezza Retrazione" @@ -10463,6 +9963,13 @@ msgstr "Lunghezza Retrazione (cambio strumento)" msgid "Retraction Speed" msgstr "Velocità di retrazione" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"La retrazione non è attivata quando i movimenti di spostamento sono più " +"brevi di questa lunghezza." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10499,6 +10006,14 @@ msgstr "Rivedere le sostituzioni e regolarle se necessario." msgid "Right" msgstr "Destra" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Valore di preset destro" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Vista destra" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10527,14 +10042,6 @@ msgstr "Tasto destro mouse" msgid "Right mouse button:" msgstr "Tasto destro mouse:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Valore di preset destro" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Vista destra" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10602,16 +10109,6 @@ msgstr "Run %s" msgid "Running post-processing scripts" msgstr "Esecuzione script di post produzione" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "s" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "Invia G-cod&e" @@ -10620,6 +10117,60 @@ msgstr "Invia G-cod&e" msgid "S&end to print" msgstr "Manda in stampa" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "Selezione Profili Materiale SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "Materiali SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "Punti di Supporto SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "Stampanti con tecnologia SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "Scorciatoie di tastiera gizmo SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "Materiale SLA" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "Tipo materiale SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "Materiali SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "Stampa SLA" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "Note sul materiale di stampa SLA" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "Impostazioni di stampa SLA" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "Sono stati rilevati supporti SLA al di fuori dell'area di stampa ." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10640,6 +10191,23 @@ msgstr "Salva %s come:" msgid "Save %s file as:" msgstr "Salva file %s come:" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Salva il file G-code come:" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "" +"Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "S&alva progetto come" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "Salva file SL1 / SL1S come:" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Salva file config" @@ -10670,15 +10238,6 @@ msgstr "Salvare il file del progetto corrente come" msgid "Save file as:" msgstr "Salva come:" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Salva il file G-code come:" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "" -"Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10692,10 +10251,6 @@ msgstr "Salva il gruppo di preset come:" msgid "Save project" msgstr "Salva progetto" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "S&alva progetto come" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Salva progetto (3mf)" @@ -10704,10 +10259,6 @@ msgstr "Salva progetto (3mf)" msgid "Save project as (3mf)" msgstr "Salva progetto come (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "Salva file SL1 / SL1S come:" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "Salvare i punti di supporto?" @@ -10739,6 +10290,10 @@ msgstr "Il salvataggio della rete nel contenitore 3MF non è riuscito." msgid "Scale" msgstr "Ridimensiona" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Ridimensiona per adattare" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Fattore di scala" @@ -10751,10 +10306,6 @@ msgstr "Ridimensiona l'oggetto selezionato per entrare nel volume di stampa" msgid "Scale to Fit" msgstr "Ridimensiona per riempire" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Ridimensiona per adattare" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "Ridimensiona per adattare al volume dato." @@ -10843,13 +10394,39 @@ msgstr "Secondo colore" msgid "See Download page." msgstr "Vedi la pagina di download." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Vedi la pagina dei rilasci." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Vedi altro." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Vedi la pagina dei rilasci." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Attiva Scheda impostazioni di Filamento" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Seleziona scheda piano" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Attiva Scheda Impostazioni di Stampa" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Attiva Scheda Impostazioni Stampante" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Seleziona SI se vuoi cancellare tutti i cambi strumento salvati,\n" +"NO se vuoi che tutti i cambi strumento passino a cambi colore,\n" +"o ANNULLA per lasciarlo invariato." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10888,26 +10465,10 @@ msgid "Select coordinate space, in which the transformation will be performed." msgstr "" "Seleziona le coordinate spaziali in cui verrà eseguita la trasformazione." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Attiva Scheda impostazioni di Filamento" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Seleziona scheda piano" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Seleziona i preset da confrontare" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Attiva Scheda Impostazioni di Stampa" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Attiva Scheda Impostazioni Stampante" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Seleziona la forma dalla galleria" @@ -10916,6 +10477,10 @@ msgstr "Seleziona la forma dalla galleria" msgid "Select showing settings" msgstr "Seleziona le impostazioni mostrate" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Seleziona il file STL da riparare:" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "Seleziona la lingua" @@ -10932,10 +10497,6 @@ msgstr "Seleziona i profili di stampa compatibili con questo profilo." msgid "Select the printers this profile is compatible with." msgstr "Seleziona le stampanti compatibili con questo profilo." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Seleziona il file STL da riparare:" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "" @@ -10954,16 +10515,6 @@ msgstr "Seleziona il tipo di Pad richiesto" msgid "Select what kind of support do you need" msgstr "Seleziona il tipo di supporto richiesto" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Seleziona SI se vuoi cancellare tutti i cambi strumento salvati,\n" -"NO se vuoi che tutti i cambi strumento passino a cambi colore,\n" -"o ANNULLA per lasciarlo invariato." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "Selezione-Aggiungi" @@ -10972,14 +10523,6 @@ msgstr "Selezione-Aggiungi" msgid "Selection-Add All" msgstr "Selezione-Aggiungi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "Aggiungi selezione da elenco" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "Aggiungi Selezione da rettangolo" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "Selezione-Aggiungi istanza" @@ -10988,6 +10531,14 @@ msgstr "Selezione-Aggiungi istanza" msgid "Selection-Add Object" msgstr "Selezione-Aggiungi Oggetto" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "Aggiungi selezione da elenco" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "Aggiungi Selezione da rettangolo" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "Selezione-Rimuovi" @@ -10996,14 +10547,6 @@ msgstr "Selezione-Rimuovi" msgid "Selection-Remove All" msgstr "Selezione-Rimuovi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "Rimozione Selezione dall'elenco" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "Rimuovi selezione da rettangolo" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "Selezione-Rimuovi istanza" @@ -11012,18 +10555,26 @@ msgstr "Selezione-Rimuovi istanza" msgid "Selection-Remove Object" msgstr "Selezione-Rimuovi oggetto" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "Rimozione Selezione dall'elenco" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "Rimuovi selezione da rettangolo" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Seleziona tutti gli oggetti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "Invia G-code" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "Invia G-code all’host stampante" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "Invia G-code" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -11073,6 +10624,46 @@ msgstr "Nome servizio" msgid "Set" msgstr "Imposta" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Imposta specchio" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "Imposta orientamento" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Imposta posizione" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Imposta stampabile" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Imposta Istanza Stampabile" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Imposta gruppo Stampabile" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Imposta scala" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Imposta non stampabile" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Imposta Istanza non stampabile" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Impostare Gruppo Non stampabile" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "Imposta come Oggetto Separato" @@ -11121,9 +10712,9 @@ msgstr "Imposta cursore sinistro come attivo" msgid "Set lower thumb as active" msgstr "Imposta cursore inferiore come attivo" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Imposta specchio" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Imposta numero di istanze" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11136,35 +10727,11 @@ msgstr "" "impostare un numero esatto di istanze invece di fare un copia-incolla più " "volte?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Imposta numero di istanze" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Imposta il numero di copie a %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "Imposta orientamento" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Imposta posizione" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Imposta stampabile" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Imposta gruppo Stampabile" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Imposta Istanza Stampabile" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Imposta cursore destro come attivo" @@ -11173,10 +10740,6 @@ msgstr "Imposta cursore destro come attivo" msgid "Set ruler mode" msgstr "Imposta la modalità righello" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Imposta scala" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Imposta gli elementi selezionati come stampabili/non stampabili" @@ -11343,18 +10906,6 @@ msgstr "" "cilindrico attorno l'estrusore, e indica la profondità massima che " "l'estrusore può affacciarsi prima di sbattere con altri oggetti stampati." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Imposta non stampabile" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Impostare Gruppo Non stampabile" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Imposta Istanza non stampabile" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Imposta cursore superiore come attivo" @@ -11378,6 +10929,10 @@ msgstr "Impostazioni" msgid "Settings for height range" msgstr "Impostazioni per intervallo altezza" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Impostazioni nella finestra non modale" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11391,10 +10946,6 @@ msgstr "" "l'anteprima del G-code sull'altro. Vai nelle Preferenze e seleziona " "Impostazioni in una finestra non modale." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Impostazioni nella finestra non modale" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "Vuoi che regoli queste impostazioni per i supporti?" @@ -11480,6 +11031,10 @@ msgstr "Mostra Cartella &Configurazione" msgid "Show &Labels" msgstr "Mostra etichette (&L)" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Mostra consiglio del giorno" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "Mostra la finestra di informazioni" @@ -11568,16 +11123,16 @@ msgstr "Mostra anteprima slice 3D" msgid "Show the filament settings" msgstr "Mostra impostazioni filamento" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "" -"Mostra l'elenco completo delle opzioni di configurazione stampa/G-code." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "" "Mostra la lista completa delle opzioni di configurazione di stampa SLA." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "" +"Mostra l'elenco completo delle opzioni di configurazione stampa/G-code." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Mostra l'elenco delle scorciatoie di tastiera" @@ -11598,10 +11153,6 @@ msgstr "Mostra impostazioni della stampante" msgid "Show this help." msgstr "Mostra questo aiuto." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Mostra consiglio del giorno" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Mostra cartella configurazione utente (datadir)" @@ -11642,14 +11193,14 @@ msgstr "Mostra/Nascondi etichette dell'oggetto/istanza" msgid "Simple" msgstr "Semplice" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Modalità Semplice" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "Modalità di visualizzazione semplice" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Modalità Semplice" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "" @@ -11682,10 +11233,6 @@ msgstr "" msgid "Simplify model" msgstr "Semplifica modello" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Setup Estrusore singolo MM" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "Estrusore singolo Multi Material" @@ -11702,6 +11249,10 @@ msgstr "" "Vuoi modificare il diametro di tutti gli estrusori al valore del diametro " "dell'ugello del primo estrusore?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Setup Estrusore singolo MM" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Parametri estrusore singolo materiale multiplo" @@ -11732,6 +11283,10 @@ msgstr "Dimensioni X e Y del piano rettangolare." msgid "Skirt" msgstr "Skirt" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "Giri skirt" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11742,65 +11297,11 @@ msgstr "Skirt e brim" msgid "Skirt height" msgstr "Altezza skirt" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "Giri skirt" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Skirt/Brim" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "Scorciatoie di tastiera gizmo SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "Materiale SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "Selezione Profili Materiale SLA" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "Tipo materiale SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "Materiali SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "Materiali SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "Stampa SLA" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "Note sul materiale di stampa SLA" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "Impostazioni di stampa SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "Punti di Supporto SLA" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "Sono stati rilevati supporti SLA al di fuori dell'area di stampa ." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "Stampanti con tecnologia SLA" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Lastra" @@ -11896,6 +11397,14 @@ msgstr "L'oggetto processato \"%1%\" sembra un logo o un segno" msgid "Slicing" msgstr "Slicing" +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "Slicing Completato!" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Modalità di Slicing" + #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 msgid "Slicing complete" @@ -11905,10 +11414,6 @@ msgstr "Slicing completato" msgid "Slicing done" msgstr "Slicing completato" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "Slicing Completato!" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "Slicing completato." @@ -11920,10 +11425,6 @@ msgstr "" "Lo slicing è stato interrotto a causa di un errore interno: Indice di slice " "inconsistente." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Modalità di Slicing" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "Slicing del modello" @@ -11982,10 +11483,6 @@ msgstr "Aderenti" msgid "Software &Releases" msgstr "Ve&rsioni Software" -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "riempimento solido" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -12000,6 +11497,10 @@ msgstr "Riempimento solido ogni" msgid "Solid infill extruder" msgstr "Estrusore riempimento solido" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Area soglia riempimento solido" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -12013,10 +11514,6 @@ msgstr "" "solido? Imposta laSoglia di riempimento solido (solo in modalità " "esperto)." -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Area soglia riempimento solido" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Layer solidi" @@ -12029,17 +11526,6 @@ msgstr "Materiale solubile" msgid "Soluble material is most likely used for a soluble support." msgstr "Il materiale solubile è comunemente usato per un supporto solubile." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"Alcuni campi sono troppo lunghi per adattarsi. Cliccando con il tasto destro " -"del mouse si visualizza il testo completo." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "Alcuni filamenti sono stati disinstallati." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -12052,6 +11538,25 @@ msgstr "" "ottenere un output compatibile. La versione \"No extrusion\" evita che " "PrusaSlicer non esporti alcun valore." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "Alcune stampanti sono state disinstallate." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "Alcuni materiali SLA sono stati disinstallati." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"Alcuni campi sono troppo lunghi per adattarsi. Cliccando con il tasto destro " +"del mouse si visualizza il testo completo." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "Alcuni filamenti sono stati disinstallati." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "Alcuni oggetti non sono visibili durante la modifica." @@ -12101,14 +11606,6 @@ msgstr "" "Alcune stampanti o setup di stampanti possono riscontrare difficoltà a " "stampare con l'altezza layer variabile. Attivato come predefinito." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "Alcune stampanti sono state disinstallate." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "Alcuni materiali SLA sono stati disinstallati." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "Spaziatura " @@ -12276,14 +11773,14 @@ msgstr "Velocità:" msgid "Sphere" msgstr "Sfera" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Vaso a spirale" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Vaso a spirale" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Vaso a spirale" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12307,22 +11804,22 @@ msgstr "Dividi l'oggetto selezionato in singoli oggetti" msgid "Split the selected object into individual parts" msgstr "Dividi l'oggetto selezionato in parti individuali" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "Dividi in oggetti" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "Dividi in oggetti" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "Dividi in parti" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "Dividi in parti" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "Dividi in oggetti" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "Dividi in parti" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12350,6 +11847,12 @@ msgstr "Standard" msgid "Stars" msgstr "Stelle" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "G-code iniziale" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "Inizia un nuovo progetto" @@ -12358,12 +11861,6 @@ msgstr "Inizia un nuovo progetto" msgid "Start at height" msgstr "Inizia all'altezza" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "G-code iniziale" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Avvia un nuovo processo di slicing" @@ -12421,10 +11918,6 @@ msgstr "Stato:" msgid "Stealth" msgstr "Silenzioso" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "modalità silenziosa" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Modalità silenziosa" @@ -12464,22 +11957,6 @@ msgstr "" "Smontato correttamente. Il dispositivo %s(%s) può ora essere rimosso dal " "computer in sicurezza." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "supporto" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "Diametro della base del supporto" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Altezza della base del supporto" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "Distanza di sicurezza base supporto" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Blocco Supporto" @@ -12496,14 +11973,22 @@ msgstr "Rinforzo Supporto" msgid "Support Generator" msgstr "Generatore Supporti" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "Diametro della base del supporto" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Altezza della base del supporto" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "Distanza di sicurezza base supporto" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "Testa supporto" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "interfaccia supporto" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12589,10 +12074,6 @@ msgstr "Edita punti di supporto" msgid "Supports" msgstr "Supporti" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "supporti e pad" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "Supporto Tempo residuo" @@ -12625,10 +12106,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "Elimina per aprire il collegamento nel browser" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "Inverti assi Y/Z" @@ -12650,10 +12127,6 @@ msgstr "Passa il codice a Cambio colore (%1%) per:" msgid "Switch to 3D" msgstr "Passa a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "Passa alla modalità modifica" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "Passa ad Anteprima" @@ -12662,6 +12135,10 @@ msgstr "Passa ad Anteprima" msgid "Switch to Settings" msgstr "Passa a Impostazioni" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "Passa alla modalità modifica" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12702,10 +12179,6 @@ msgstr "" "\n" "Procedere?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "nome simbolico profilo" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12722,14 +12195,14 @@ msgstr "Sincronizza con i layer dell'oggetto" msgid "System &Info" msgstr "&Info di Sistema" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Informazioni di sistema inviate correttamente. Grazie." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Informazioni di sistema" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Informazioni di sistema inviate correttamente. Grazie." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12815,6 +12288,147 @@ msgstr "" "Se il dispositivo è connesso, premi il pulsante Reset vicino al connettore " "USB ..." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"L'archivio SLA non contiene alcun preset. Per favore attiva qualche preset " +"della stampante SLA prima di importare quell'archivio SLA." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"La modalità Vaso a spirale necessita:\n" +"-un solo perimetro\n" +"-nessun layer solido superiore\n" +"-densità riempimento 0%\n" +"-nessun materiale di supporto\n" +"-Mantieni spessore guscio verticale attivo\n" +"-Rileva perimetri sottili disattivo" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "" +"L'opzione Vaso a Spirale può essere usata solo durante la stampa di oggetti " +"in materiale singolo." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"La Torre di Pulitura attualmente non supporta la volumetrica E " +"(use_volumetric_e=0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"La Torre di Pulitura attualmente è compatibile con i supporti non solubili " +"solamente se questi sono stampati con l'attuale estrusore senza l'innesco di " +"un cambio strumento. (entrambi support_material_extruder e " +"support_material_interface_extruder devono essere impostati a 0)." + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"La Torre di Pulitura attualmente è compatibile con i supporti non solubili " +"solamente se questi sono stampati con l'attuale estrusore senza l'innesco di " +"un cambio strumento. (entrambi support_material_extruder e " +"support_material_interface_extruder devono essere impostati a 0)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"La Torre di pulitura non è al momento supportata per stampe multi-material " +"sequenziali." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"La Torre di pulitura è al momento supportata solo da varianti G-code Marlin, " +"RepRap/Sprinter, RepRapFirmware e Repetier." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"Attualmente la Torre di pulitura è supportata solo con l'indirizzamento " +"relativo dell'estrusore (use_relative_e_distances = 1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"La Torre di pulitura è supportata con oggetti multipli solo se questi " +"vengono stampati sullo stesso numero di layer di raft" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"La Torre di pulitura è supportata con oggetti multipli solo se questi " +"vengono stampati sullo stesso support_material_contact_distance" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"La Torre di Pulitura è supportata con oggetti multipli solo se questi sono " +"processati allo stesso modo." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"La Torre di pulitura è supportata con oggetti multipli solo se questi hanno " +"la stessa altezza layer" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"La funzione Pulitura non è disponibile quando si usa la modalità Retrazione " +"Firmware.\n" +"\n" +"Devo disattivarla per poter abilitare la Retrazione Firmware?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"La Torre di Pulitura è supportata solo se tutti gli oggetti hanno la stessa " +"altezza layer variabile" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -12976,19 +12590,20 @@ msgstr "" "compensare per lo schiacciamento del 1° layer, anche noto come effetto Zampa " "d'elefante." -#: src/slic3r/GUI/Plater.cpp:5717 -msgid "The following characters are not allowed by a FAT file system:" -msgstr "I seguenti caratteri non sono permessi da un file system FAT:" - -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "non sono permessi i seguenti caratteri:" - #: src/slic3r/GUI/ConfigWizard.cpp:2459 msgid "The following FFF printer models have no filament selected:" msgstr "" "I seguenti modelli di stampante FFF non hanno nessun filamento selezionato:" +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "" +"I seguenti modelli di stampante SLA non hanno nessun filamento selezionato:" + +#: src/slic3r/GUI/Plater.cpp:5717 +msgid "The following characters are not allowed by a FAT file system:" +msgstr "I seguenti caratteri non sono permessi da un file system FAT:" + #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -13045,15 +12660,6 @@ msgstr "" "Le seguenti scorciatoie sono applicabili quando il gizmo specificato è " "attivo" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "" -"I seguenti modelli di stampante SLA non hanno nessun filamento selezionato:" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "il seguente suffisso non è permesso:" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "I seguenti valori sono stati sostituiti:" @@ -13379,6 +12985,15 @@ msgstr "" "Il progetto selezionato non è più disponibile.\n" "Vuoi rimuoverlo dall'elenco dei progetti recenti?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"La stampa sequenziale è attiva.\n" +"È impossibile applicare qualsiasi G-code personalizzato per gli oggetti che " +"vengono stampati in sequenza." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13391,15 +13006,6 @@ msgstr "" "vengono stampati in sequenza.\n" "Questo codice non sarà processato durante la generazione del G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"La stampa sequenziale è attiva.\n" -"È impossibile applicare qualsiasi G-code personalizzato per gli oggetti che " -"vengono stampati in sequenza." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "La dimensione dell'oggetto può essere specificata in pollici" @@ -13408,14 +13014,6 @@ msgstr "La dimensione dell'oggetto può essere specificata in pollici" msgid "The size of the object is zero" msgstr "La dimensione dell'oggetto è zero" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"L'archivio SLA non contiene alcun preset. Per favore attiva qualche preset " -"della stampante SLA prima di importare quell'archivio SLA." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13439,32 +13037,6 @@ msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "" "Velocità delle retrazioni (si applica solamente al motore dell'estrusore)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"La modalità Vaso a spirale necessita:\n" -"-un solo perimetro\n" -"-nessun layer solido superiore\n" -"-densità riempimento 0%\n" -"-nessun materiale di supporto\n" -"-Mantieni spessore guscio verticale attivo\n" -"-Rileva perimetri sottili disattivo" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "" -"L'opzione Vaso a Spirale può essere usata solo durante la stampa di oggetti " -"in materiale singolo." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "Il nome fornito è vuoto. Non può essere salvato." @@ -13518,105 +13090,6 @@ msgstr "" "support_material_contact_distance sarà usato per entrambe le distanze di " "contatto Z superiore e inferiore." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"La funzione Pulitura non è disponibile quando si usa la modalità Retrazione " -"Firmware.\n" -"\n" -"Devo disattivarla per poter abilitare la Retrazione Firmware?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"La Torre di Pulitura attualmente non supporta la volumetrica E " -"(use_volumetric_e=0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"La Torre di Pulitura attualmente è compatibile con i supporti non solubili " -"solamente se questi sono stampati con l'attuale estrusore senza l'innesco di " -"un cambio strumento. (entrambi support_material_extruder e " -"support_material_interface_extruder devono essere impostati a 0)." - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"La Torre di Pulitura attualmente è compatibile con i supporti non solubili " -"solamente se questi sono stampati con l'attuale estrusore senza l'innesco di " -"un cambio strumento. (entrambi support_material_extruder e " -"support_material_interface_extruder devono essere impostati a 0)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"La Torre di pulitura non è al momento supportata per stampe multi-material " -"sequenziali." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"La Torre di pulitura è al momento supportata solo da varianti G-code Marlin, " -"RepRap/Sprinter, RepRapFirmware e Repetier." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"Attualmente la Torre di pulitura è supportata solo con l'indirizzamento " -"relativo dell'estrusore (use_relative_e_distances = 1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"La Torre di pulitura è supportata con oggetti multipli solo se questi " -"vengono stampati sullo stesso numero di layer di raft" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"La Torre di pulitura è supportata con oggetti multipli solo se questi " -"vengono stampati sullo stesso support_material_contact_distance" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"La Torre di Pulitura è supportata con oggetti multipli solo se questi sono " -"processati allo stesso modo." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"La Torre di pulitura è supportata con oggetti multipli solo se questi hanno " -"la stessa altezza layer" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13625,14 +13098,6 @@ msgstr "" "La torre di pulitura è supportata solo se tutti gli estrusori hanno l'ugello " "con lo stesso diametro ed utilizzano filamenti con lo stesso diametro." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"La Torre di Pulitura è supportata solo se tutti gli oggetti hanno la stessa " -"altezza layer variabile" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "Sono presenti avvisi attivi relativi ai modelli processati:" @@ -13684,6 +13149,18 @@ msgstr "Ponti spessi" msgid "This %s version: %s" msgstr "%s versione: %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Questo G-code verrà utilizzato come codice per il cambio colore" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Questo G-code sarà usato come codice per la pausa di stampa" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Questo G-code verrà utilizzato come codice personalizzato" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -13956,18 +13433,6 @@ msgstr "" "Questo contrassegno farà spostare l'ugello durante la retrazione in modo da " "minimizzare il possibile grumo con estrusori che trasudano." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Questo G-code verrà utilizzato come codice per il cambio colore" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Questo G-code sarà usato come codice per la pausa di stampa" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Questo G-code verrà utilizzato come codice personalizzato" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "Questo è un preset predefinito." @@ -14406,10 +13871,6 @@ msgstr "" "affidabili con materiali flessibili che potrebbero richiedere più tempo per " "tornare alle dimensioni originali." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "a" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "" @@ -14446,10 +13907,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "Attiva / disattiva il mirroring dell'asse %c" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "troppi file" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "Troppi fori sovrapposti." @@ -14503,6 +13960,10 @@ msgstr "" "Suggerimento per lo spessore del guscio Superiore / Inferiore: non " "disponibile a causa di un'altezza dello strato non valida." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Vista superiore" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "Distanza di contatto Z superiore" @@ -14524,10 +13985,6 @@ msgstr "La parte superiore è aperta." msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Il guscio superiore è spesso %1% mm per l'altezza layer %2% mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "riempimento solido superiore" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14538,10 +13995,6 @@ msgstr "Riempimento solido superiore" msgid "Top solid layers" msgstr "Layer solidi superiori" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Vista superiore" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Solo superficie superiore più alta" @@ -14623,6 +14076,33 @@ msgstr "Tipologia stampante." msgid "Type:" msgstr "Tipo:" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "LUCCHETTO APERTO" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state " +"modificate e non sono uguali ai valori di sistema (o predefinite) per il " +"gruppo di opzioni corrente.\n" +"Clicca qui per reimpostare tutte le impostazioni del gruppo corrente ai " +"valori di sistema (o predefiniti)." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"L'icona del LUCCHETTO APERTO indica che il valore è stato cambiato e non è " +"uguale al valore di sistema (o predefinito). Clicca per reimpostare il " +"valore corrente al valore di sistema (o predefinito)." + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "Impossibile forare il modello con la configurazione attuale dei fori." @@ -14666,10 +14146,6 @@ msgstr "Gruppo non definito" msgid "Undefined" msgstr "Indefinito" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "errore non definito" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "Underflow" @@ -14691,6 +14167,10 @@ msgstr[1] "Annulla %1$d Azioni" msgid "Undo / Redo is processing" msgstr "Annulla / Ripeti in lavorazione" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Cronologia Annulla" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "Annullamento integrazione desktop non riuscito." @@ -14699,10 +14179,6 @@ msgstr "Annullamento integrazione desktop non riuscito." msgid "Undo desktop integration was successful." msgstr "Annullamento integrazione desktop riuscita." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Cronologia Annulla" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14714,10 +14190,6 @@ msgstr "" "Annulla/Ripeti per vedere la cronologia delle modifiche e per annullare " "o ripetere più azioni contemporaneamente?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "dimensione decompressa imprevista" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14735,10 +14207,6 @@ msgid "Unknown error occured during exporting G-code." msgstr "" "Si è verificato un errore sconosciuto durante l'esportazione del G-code." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "scaricato" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "Velocità di scaricamento" @@ -14747,33 +14215,6 @@ msgstr "Velocità di scaricamento" msgid "Unloading speed at the start" msgstr "Velocità iniziale di scaricamento" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "LUCCHETTO APERTO" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state " -"modificate e non sono uguali ai valori di sistema (o predefinite) per il " -"gruppo di opzioni corrente.\n" -"Clicca qui per reimpostare tutte le impostazioni del gruppo corrente ai " -"valori di sistema (o predefiniti)." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"L'icona del LUCCHETTO APERTO indica che il valore è stato cambiato e non è " -"uguale al valore di sistema (o predefinito). Clicca per reimpostare il " -"valore corrente al valore di sistema (o predefinito)." - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Modifiche non salvate" @@ -14782,26 +14223,6 @@ msgstr "Modifiche non salvate" msgid "Unselect gizmo or clear selection" msgstr "Deseleziona gizmo o pulisci selezione" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "dimensione della directory centrale non supportata" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "criptaggio non supportato" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "caratteristica non supportata" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "metodo non supportato" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "archivio multidisk non supportato" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "Versione OpenGL non supportata" @@ -14815,10 +14236,6 @@ msgstr "Selezione non supportata" msgid "Untitled" msgstr "Senza titolo" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "fino a" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "Aggiornamento disponibile" @@ -14888,6 +14305,10 @@ msgstr "" "Usare \"Pari-dispari\" per i modelli di aerei 3DLabPrint. Usare \"Chiudi fori" "\" per chiudere tutti i fori del modello." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Usa risoluzione Retina per la scena 3D" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Usa un altro estrusore" @@ -14941,10 +14362,6 @@ msgstr "Usa la visuale prospettica" msgid "Use relative E distances" msgstr "Usa distanze E relative" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Usa risoluzione Retina per la scena 3D" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "Utilizzare il menu di sistema per l'applicazione" @@ -14970,15 +14387,6 @@ msgstr "" msgid "Use volumetric E" msgstr "Utilizza E volumetrico" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "usato" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Filamento usato" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Filamento usato (g)" @@ -15007,6 +14415,11 @@ msgstr "Materiale Usato (ml)" msgid "Used Material (unit)" msgstr "Materiale usato (unità)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Filamento usato" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Utente" @@ -15017,10 +14430,6 @@ msgstr "Utente" msgid "User presets" msgstr "Preset utente" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "convalida non riuscita" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "Valore uguale a quello di sistema" @@ -15041,6 +14450,11 @@ msgstr "I valori in questa colonna sono per la modalità Normale" msgid "Values in this column are for Stealth mode" msgstr "I valori in questa colonna sono per la modalità Silenziosa" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Altezza layer variabile" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -15054,11 +14468,6 @@ msgstr "" "strumentoAltezza layer variabile. (Non disponibile per le stampanti " "SLA)." -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Altezza layer variabile" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Altezza layer variabile - Adattivo" @@ -15075,14 +14484,6 @@ msgstr "Altezza layer variabile - Ripristina" msgid "Variable layer height - Smooth all" msgstr "Altezza layer variabile - Leviga tutto" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "varianti" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "produttore" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Fornitore:" @@ -15096,18 +14497,14 @@ msgstr "G-code verboso" msgid "Version" msgstr "Versione" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "versione" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Cursore di scorrimento verticale" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "Gusci verticali" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Cursore di scorrimento verticale" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15185,6 +14582,39 @@ msgstr "Flusso volumetrico (mm³/s)" msgid "Volumetric speed" msgstr "Velocità volumetrica" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "ATTENZIONE:" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "PALLINO BIANCO" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "" +"L'icona a forma di PALLINO BIANCO indica un preset non di sistema (o non " +"predefinito)." + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"L'icona a forma di PALLINO BIANCO indica che le impostazioni corrispondono " +"agli ultimi preset salvati per il gruppo di opzioni corrente." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso " +"dell'ultimo preset salvato." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Spessore parete" @@ -15197,13 +14627,6 @@ msgstr "Spessore parete" msgid "Warning" msgstr "Attenzione" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "ATTENZIONE:" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15260,10 +14683,6 @@ msgstr "" "progetto sull'applicazione, viene mostrata una finestra di dialogo che " "chiede quale azione eseguire sul file da caricare." -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "durante la stampa" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15359,32 +14778,6 @@ msgstr "" "l'estrusore spingerà questa quantità addizionale di filamento. Questa " "impostazione è raramente necessaria." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "PALLINO BIANCO" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "" -"L'icona a forma di PALLINO BIANCO indica un preset non di sistema (o non " -"predefinito)." - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"L'icona a forma di PALLINO BIANCO indica che le impostazioni corrispondono " -"agli ultimi preset salvati per il gruppo di opzioni corrente." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso " -"dell'ultimo preset salvato." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "Parola intera" @@ -15430,6 +14823,11 @@ msgstr "" msgid "Wipe" msgstr "Pulitura" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "Torre di pulitura" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "Pulitura in questo oggetto" @@ -15448,15 +14846,6 @@ msgstr "Opzioni pulitura" msgid "Wipe tower" msgstr "Torre di pulitura" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "torre di pulitura" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "Torre di pulitura" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "Torre di pulitura - Regolazione volume di spurgo" @@ -15481,10 +14870,6 @@ msgstr "Angolo di rotazione della torre di pulitura rispetto all'asse X." msgid "Wipe while retracting" msgstr "Pulisci durante la retrazione" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "con una portata volumetrica" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15535,10 +14920,6 @@ msgstr "" "\n" "Gruppo di configurazioni aggiornate:" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "scrittura richiamo non riuscita" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "Scrivi informazioni sul modello alla console." @@ -15551,6 +14932,10 @@ msgstr "Password errata" msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordinata X dell'angolo frontale sinistro di una torre di pulitura" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "Compensazione dimensione XY" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "Separazione XY tra un oggetto e il suo supporto" @@ -15564,10 +14949,6 @@ msgstr "" "percentuale (ad esempio 50%), verrà calcolato sulla larghezza del perimetro " "esterno." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "Compensazione dimensione XY" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordinata Y dell'angolo frontale sinistro di una torre di pulitura" @@ -15628,6 +15009,11 @@ msgstr "" "È possibile inserire qui le note personali. Questo testo verrà aggiunto nei " "commenti iniziali del G-code." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "" +"È possibile inserire qui le proprie note riguardo il materiale di stampa SLA." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "È possibile inserire qui le note riguardanti il filamento." @@ -15636,11 +15022,6 @@ msgstr "È possibile inserire qui le note riguardanti il filamento." msgid "You can put your notes regarding the printer here." msgstr "È possibile inserire qui le note riguardanti la stampante." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "" -"È possibile inserire qui le proprie note riguardo il materiale di stampa SLA." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -15873,6 +15254,621 @@ msgstr "" "Zoom sull'oggetto selezionato\n" "o tutti gli oggetti in scena, se nessuno è selezionato" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "sopra" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "attivo" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "allocazione fallita" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "secondi approssimativi" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "l'archivio è troppo grande" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "basato su Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "buffer troppo piccolo" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "secondo il massimo del profilo di stampa" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "compressione fallita" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "continua" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "decompressione non riuscita o archivio corrotto" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "predefinito" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "profilo materiale SLA predefinito" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "profilo di stampa SLA predefinito" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "colore predefinito" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "profilo filamento predefinito" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "profilo di stampa predefinito" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "valore predefinito" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "elimina" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "differisce dal file originale" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "non contiene un g-code valido." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "ad eccezione dei primi %1% layer." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "ad eccezione del primo layer." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "perimetri esterni" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "directory centrale non trovata" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "filamento" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "filamenti" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "chiusura del file fallita" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "generazione del file non riuscita" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "file non trovato" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "apertura file non riuscita" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "lettura del file non riuscita" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "ricerca file fallita" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "statistica file non riuscita" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "file troppo grande" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "scrittura file fallita" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "il flusso viene massimizzato" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"per il tasto sinistro: indica un preset non di sistema (o non-predefinito),\n" +"per il tasto destro: indica che le impostazioni non sono state modificate." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "da" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "nome completo profilo" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "ha generato avvisi" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "in" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"indica che è stata modificata qualche impostazione e non è uguale ai valori " +"di sistema (o predefiniti) del corrente gruppo di opzioni.\n" +"Clicca l'icona LUCCHETTO APERTO per reimpostare tutte le impostazioni del " +"corrente gruppo di opzioni ai valori di sistema (o predefiniti)." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"indica che le impostazioni sono uguali ai valori di sistema (o predefiniti) " +"per l'attuale gruppo di opzioni" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"indica che le impostazioni sono state modificate e non corrispondono " +"all'ultimo preset salvato per l'attuale gruppo opzioni.\n" +"Clicca l'icona FRECCIA INDIETRO per reimpostare all'ultimo preset salvato " +"tutte le impostazioni per il seguente gruppo di opzioni." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "riempimento" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "errore interno" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "nome file non valido" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "titolo non valido o archivio corrotto" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "parametro non valido" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "è basato su Slic3r di Alessandro Ranellucci e la comunità RepRap." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "è concesso in licenza ai sensi" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "layer" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "caricato" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "versione PrusaSlicer massima" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "versione PrusaSlicer minima" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (imposta a zero per disabilitare)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm o %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm o % (zero per disattivare)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s o %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "modello" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "modificato" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "soldi/bottiglia" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "soldi/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "modalità normale" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "non un archivio ZIP" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "ugello" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "oggetto" +msgstr[1] "oggetti" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "oggetti" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "di un Oggetto corrente" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "o premi il tasto \"+\"" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "nome parametro" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "perimetri" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "stampa" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "stampante" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "modello stampante" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "rimuovi" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "richiede max. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "richiede min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "richiede min. %s e max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "s" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "riempimento solido" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "modalità silenziosa" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "supporto" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "interfaccia supporto" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "supporti e pad" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "nome simbolico profilo" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "non sono permessi i seguenti caratteri:" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "il seguente suffisso non è permesso:" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "a" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "troppi file" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "riempimento solido superiore" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "errore non definito" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "dimensione decompressa imprevista" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "scaricato" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "dimensione della directory centrale non supportata" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "criptaggio non supportato" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "caratteristica non supportata" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "metodo non supportato" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "archivio multidisk non supportato" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "fino a" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "usato" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "convalida non riuscita" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "varianti" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "produttore" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "versione" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "durante la stampa" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "torre di pulitura" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "con una portata volumetrica" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "scrittura richiamo non riuscita" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -17029,6 +17025,10 @@ msgstr "AddToPropertyCollection chiamata senza valid adder" msgid "Adding book %s" msgstr "Aggiunta del libro %s in corso" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "Avanzate" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Dopo un paragrafo:" @@ -17295,6 +17295,10 @@ msgstr "Bordo" msgid "Borders" msgstr "Bordi" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Basso" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Margine inferiore (mm):" @@ -18106,6 +18110,10 @@ msgstr "Copiato negli Appunti:\"%s\"" msgid "Copies:" msgstr "Copie:" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Copia" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Copia selezione" diff --git a/resources/localization/ko/PrusaSlicer_ko_KR.po b/resources/localization/ko/PrusaSlicer_ko_KR.po index 698a7880ab..a5b40e996a 100644 --- a/resources/localization/ko/PrusaSlicer_ko_KR.po +++ b/resources/localization/ko/PrusaSlicer_ko_KR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2020-02-28 09:34+0900\n" "Last-Translator: lee hak-min \n" "Language-Team: ulsanether\n" @@ -572,7 +572,7 @@ msgstr "활ë™ì¤‘" msgid "PrusaSlicer version" msgstr "Prusa슬ë¼ì´ì„œ 버전" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "출력" @@ -580,17 +580,17 @@ msgstr "출력" msgid "filaments" msgstr "í•„ë¼ë©˜íЏ" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA ì¸ì‡„" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA 재료" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "프린터" @@ -649,7 +649,7 @@ msgstr "표준" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "ëª¨ë‘ ì„ íƒ" @@ -736,7 +736,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "í•„ë¼ë©˜íЏ" @@ -824,7 +824,7 @@ msgstr "" "ë˜í•œ ì—…ë°ì´íŠ¸ê°€ ì ìš©ë˜ê¸° ì „ì— ì „ì²´ êµ¬ì„±ì˜ ë°±ì—… 구성(스냅샷)ì´ ìƒì„±ë©ë‹ˆë‹¤." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "디스í¬ì—서 다시 불러오기" @@ -1122,7 +1122,7 @@ msgstr "&완료" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "취소" @@ -1186,7 +1186,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1631,8 +1631,8 @@ msgid "parameter name" msgstr "매개 변수 명칭" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1833,7 +1833,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "추가" @@ -2035,7 +2035,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "설정" @@ -2302,7 +2302,7 @@ msgid "Add..." msgstr "추가..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "ì „ë¶€ 지우기" @@ -3183,7 +3183,7 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3192,18 +3192,18 @@ msgstr "" "PrusaSlicer 구성 파ì¼ì„ 구문 ë¶„ì„하는 오류, 아마 ì†ìƒëœ 것입니다. 파ì¼ì„ 수ë™" "으로 삭제하여 ì˜¤ë¥˜ì— ë³µêµ¬í•´ 보십시오. ì‚¬ìš©ìž í”„ë¡œí•„ì€ ì˜í–¥ì„ 받지 않습니다." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3215,7 +3215,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3224,19 +3224,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3246,53 +3246,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3305,198 +3305,198 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "재현" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "현재 기본 ì„¤ì •ì„ ë¶ˆëŸ¬ì˜¤ê¸°" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "보기 모드를 불러오기" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "파ì¼(3MF/AMF) ì„ íƒ:" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "파ì¼ì„ ì„ íƒí•˜ì„¸ìš” (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "ì‘ìš© 프로그램 언어 변경" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "언어를 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "언어" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "수정ëœê³³" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "%s 실행" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "구성 스냅샷" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "구성 스냅 샷 검사 / 활성화" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "구성 스냅 샷 가져 오기" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "구성 스냅 샷 캡처" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "구성 ì—…ë°ì´íЏ 확ì¸" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "환경 설정" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "ì‘ìš© 프로그램 환경 설정" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "단순" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "기본 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "고급 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "전문가" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "전문가 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "ì•„ë‘ì´ë…¸ ê¸°ë°˜ì˜ í”„ë¦°í„° ì´ë¯¸ì§€ 업로드" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "스냅 샷 ì´ë¦„" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "êµ­ê°€ì— ë§žëŠ” 언어를 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3504,93 +3504,93 @@ msgstr "" "언어를 전환 하면 ì‘ìš© 프로그램 재시작 합니다. 플레ì´íЏ 위 ê°ì²´(object)는 모" "ë‘ ì§€ì›Œì§‘ë‹ˆë‹¤." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&구성" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA ë°©ì‹ì„ 사용 하여 다중 ê°ì²´(object)를 ì¸ì‡„í•  수는 없습니다." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "사전 ì„¤ì •ì„ ë³€ê²½ 하기 ì „ì— ê°ì²´(object) 목ë¡ì„ í™•ì¸ í•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "gcode íŒŒì¼ ì„ íƒ:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3696,7 +3696,7 @@ msgstr "스커트와 브림" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3706,7 +3706,7 @@ msgid "Advanced" msgstr "고급" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3720,8 +3720,8 @@ msgid "Supports" msgstr "서í¬íЏ" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3731,8 +3731,8 @@ msgstr "서í¬íЏ" msgid "Pad" msgstr "패드" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3835,7 +3835,7 @@ msgstr "STL로 내보내기" msgid "Reload the selected volumes from disk" msgstr "디스í¬ì—서 ì„ íƒí•œ 볼륨 다시 로드" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3861,19 +3861,19 @@ msgstr "ì¸ì‡„ ë³¼ë¥¨ì— ë”°ë¼ ë°°ìœ¨ ì¡°ì •" msgid "Scale the selected object to fit the print volume" msgstr "ì¸ì‡„ ë³¼ë¥¨ì— ë§žê²Œ ì„ íƒí•œ ê°ì²´(object)ì˜ ë°°ìœ¨ ì¡°ì •" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4127,7 +4127,7 @@ msgstr "" msgid "Loading" msgstr "로딩" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4552,7 +4552,7 @@ msgstr "매개 변수 제거" msgid "Delete Option %s" msgstr "ì‚­ì œ %s 옵션" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "옵션 %s 변경" @@ -4671,18 +4671,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4844,12 +4844,12 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" "ë°°ë“œì— ì—¬ëŸ¬ 부분으로 êµ¬ì„±ëœ ê°ì²´ê°€ 있는 SLA 프로ì íŠ¸ë¥¼ 로드할 수 없습니다." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "주목!" @@ -4890,11 +4890,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "G-code 내보내기" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "G-code 보내기" @@ -5275,7 +5275,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "미리보기" @@ -5387,29 +5387,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "출력 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "재질 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "í•„ë¼ë©˜íЏ 설정" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "프린터 설정" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5919,7 +5919,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6028,9 +6028,9 @@ msgstr "G 코드" msgid "Save zip file as:" msgstr "ì••ì¶•(zip)íŒŒì¼ ë‹¤ë¥¸ì´ë¦„ 저장:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "슬ë¼ì´ì‹±" @@ -6286,7 +6286,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6312,8 +6312,8 @@ msgstr "복제본" msgid "Instance %d" msgstr "복제본 %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "ë ˆì´ì–´" @@ -6575,12 +6575,12 @@ msgstr "개체 아래" msgid "Around object" msgstr "개체 주위" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "프린터로 보내기" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "바로 슬ë¼ì´ìФ" @@ -6685,7 +6685,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "새로운 프로ì íЏ" @@ -6693,7 +6693,7 @@ msgstr "새로운 프로ì íЏ" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6702,12 +6702,12 @@ msgid_plural "" "PrusaSlicer" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6717,11 +6717,11 @@ msgid_plural "" "These objects have been removed from the model" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6733,15 +6733,15 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6753,29 +6753,29 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "다중 부품(Part) ê°ì²´(object)ê°€ ê°ì§€" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" "ì´ íŒŒì¼ì€ 기본 모드ì—서 로드할 수 없습니다. 고급 모드로 전환 하시겠습니까?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "ê°ì§€ëœ 고급 ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6784,7 +6784,7 @@ msgstr "" "다중 부품(Part) 하나 ë˜ëŠ” ê·¸ 중 ì¼ë¶€ ë•Œë¬¸ì— %sì—서 ê°ì²´(object)를 추가 í•  수 " "없습니다" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -6794,145 +6794,145 @@ msgstr "" "여러 ê°ì²´(object)로 간주하는 대신,\n" "ì´ íŒŒì¼ë“¤ì€ 여러 ë¶€ë¶„ì„ ê°–ëŠ” ë‹¨ì¼ ê°ì²´(object)를 나타낼 수 있습니까?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "ê°ì²´(object)ê°€ 너무 커서 ì¸ì‡„ë¬¼ì— ë§žê²Œ ìžë™ìœ¼ë¡œ 축소ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "ê°ì²´(object)ê°€ 너무 í½ë‹ˆê¹Œ?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "STL íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "AMF íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "다른 ì´ë¦„으로 íŒŒì¼ ì €ìž¥:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "OBJ íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "ê°ì²´(object) 지우기" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "프로ì íЏ 재설정" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "ê°ì²´(object)로 ë¶„í• " -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "잘못 ëœ ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "다른 내보내기 ìž‘ì—…ì´ í˜„ìž¬ 실행 중입니다." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "다시 로드할 파ì¼ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "다시 로드할 수 ì—†ìŒ:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "다시 로드하는 ë™ì•ˆ 오류" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "디스í¬ì—서 ëª¨ë‘ ë‹¤ì‹œ 로드" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D 편집화면 보기" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6940,171 +6940,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "프로ì íЏ 불러오기" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "ê°ì²´(object) 가져오기" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "ê°ì²´(object) 가져오기" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "íŒŒì¼ ë¡œë“œ" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "íŒŒì¼ ë¡œë“œ" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "모든 ê°ì²´(object)ê°€ 제거 ë©ë‹ˆë‹¤, 계ì†í•©ë‹ˆê¹Œ?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "ì„ íƒí•œ ê°ì²´(object) ì‚­ì œ" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "복제본 늘리기" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "복제본 ê°ì†Œ" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "복사본 수를 %d로 설정" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "í‰ë©´ìœ¼ë¡œ 절단" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G-code íŒŒì¼ ë‹¤ë¥¸ ì´ë¦„ 저장:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "내보내기" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "í´ë¦½ë³´ë“œì—서 붙여넣기" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "ì¼ë°˜" @@ -7235,7 +7235,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7249,7 +7249,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7260,7 +7260,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7775,11 +7775,11 @@ msgstr "프린터 호스트로 G 코드 보내기" msgid "Upload to Printer Host with the following filename:" msgstr "ë‹¤ìŒ íŒŒì¼ ì´ë¦„으로 프린터 í˜¸ìŠ¤íŠ¸ì— ì—…ë¡œë“œ:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "필요한 경우 디렉토리 분리 기호로 슬래시 (/)를 사용하십시오." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7788,18 +7788,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ì•„ì´ë””" @@ -8237,7 +8237,7 @@ msgstr "ì „ì²´ 프로필 ì´ë¦„" msgid "symbolic profile name" msgstr "기호 í”„ë¡œíŒŒì¼ ì´ë¦„" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "ë ˆì´ì–´ ë° ë‘˜ë ˆ" @@ -8321,11 +8321,11 @@ msgstr "겹침(Overlap)" msgid "Flow" msgstr "유량(Flow)" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "ê·¸ 외" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "출력 옵션" @@ -8337,11 +8337,11 @@ msgstr "ì—°ì† ì¸ì‡„" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "출력 파ì¼" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "사후 처리 스í¬ë¦½íЏ" @@ -8349,19 +8349,20 @@ msgstr "사후 처리 스í¬ë¦½íЏ" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "메모" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "ì†í•œ 그룹" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "í”„ë¡œíŒŒì¼ ì†í•œê³³" @@ -8435,7 +8436,7 @@ msgid "Ramming settings" msgstr "ëž˜ë° ì„¤ì •" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "ìˆ˜ë™ G코드" @@ -8473,8 +8474,8 @@ msgstr "" msgid "Size and coordinates" msgstr "í¬ê¸°ì™€ 좌표" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "기능" @@ -8542,11 +8543,11 @@ msgstr "기울ì´ê¸°" msgid "Tilt time" msgstr "기울ì´ê¸° 시간" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "수정" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "노출" @@ -8702,70 +8703,74 @@ msgstr "ì„ íƒí•œ 사전 ì„¤ì •ì˜ %1%를 ì„ íƒ í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" msgid "%1% Preset" msgstr "%1% 기본설정" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "설정" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "찾기" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "ì „ì²´ 단어 ì¼ì¹˜" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "잠긴 잠금" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" "ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "잠금 í•´ì œ 잠금" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8777,12 +8782,12 @@ msgstr "" "잠금 í•´ì œ 잠금 ì•„ì´ì½˜ì„ í´ë¦­í•˜ì—¬ 현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ(ë˜" "는 기본값) 값으로 재설정합니다." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "í°ìƒ‰ 글머리 기호" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -8790,12 +8795,12 @@ msgstr "" "왼쪽 ë‹¨ì¶”ì˜ ê²½ìš°: 비시스템(ë˜ëŠ” ê¸°ë³¸ì´ ì•„ë‹Œ) 사전 ì„¤ì •ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n" "오른쪽 버튼: ì„¤ì •ì´ ìˆ˜ì •ë˜ì§€ 않았ìŒì„ 나타냅니다." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "ëŒì•„가기 화살표" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8807,7 +8812,7 @@ msgstr "" "현재 옵션 ê·¸ë£¹ì˜ ëª¨ë“  ì„¤ì •ì„ ì‹œìŠ¤í…œ 값으로 재설정하려면 ìžë¬¼ì‡  잠금 ì•„ì´ì½˜ì„ " "í´ë¦­í•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -8815,7 +8820,7 @@ msgstr "" "LOCKED LOCK ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜" "다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8827,11 +8832,11 @@ msgstr "" "현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´" "릭합니다." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "WHITE BULLET ì•„ì´ì½˜ì€ 시스템 사전 ì„¤ì •ì´ ì•„ë‹Œ ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -8839,7 +8844,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 저장 ëœ ì‚¬" "ì „ 설정과 ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8851,7 +8856,7 @@ msgstr "" "마지막 현재 옵션 ê·¸ë£¹ì— ëŒ€ 한 모든 설정 다시 ì„¤ì •ì„ í´ë¦­ 하 ì—¬ 사전 ì„¤ì •ì„ ì €" "장." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -8859,7 +8864,7 @@ msgstr "" "LOCKED LOCK ì•„ì´ì½˜ì€ ê°’ì´ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆ" "다." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -8869,7 +8874,7 @@ msgstr "" "ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n" "현재 ê°’ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -8877,7 +8882,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ 마지막으로 저장 한 사전 설정과 ë™ì¼í•œ ê°’ì„ ë‚˜íƒ€ëƒ…" "니다." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -8887,105 +8892,105 @@ msgstr "" "ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n" "현재 ê°’ì„ ë§ˆì§€ë§‰ìœ¼ë¡œ ì €ìž¥ëœ ì‚¬ì „ 설정으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "재료" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "서í¬íЏ 헤드" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "서í¬íЏ 기둥" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "서í¬íЏ 기둥 ë° ì ‘í•©ë¶€ ì—°ê²°" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "ìžë™ ìƒì„±" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "ê°ì²´(object) ê³ ë„" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "개체 주위패드" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "미 ì €ìž¥ëœ ë³€ê²½ì " -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "저장" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -8993,120 +8998,121 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9912,32 +9918,32 @@ msgstr "유효성 검사 실패" msgid "write calledback failed" msgstr "쓰기 다시 실패" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "모든 ê°ì²´(object)ê°€ ì¸ì‡„ 볼륨 ì™¸ë¶€ì— ìžˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "ì œê³µëœ ì„¤ì •ìœ¼ë¡œ ì¸í•´ 빈 ì¸ì‡„ê°€ ë°œìƒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "ì¼ë¶€ ê°ì²´(object)ê°€ 너무 ê°€ê¹ìŠµë‹ˆë‹¤. ê·€í•˜ì˜ ì••ì¶œê¸°ê°€ 그들과 ì¶©ëŒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "ì¼ë¶€ ê°ì²´(object)는 너무 í¬ê³  ìµìŠ¤íŠ¸ë£¨ë” ì¶©ëŒì—†ì´ ì¸ì‡„ í•  수 없습니다." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -9945,7 +9951,7 @@ msgstr "" "나선형 꽃병 옵션(Spiral Vase)ì€ ë‹¨ì¼ ìž¬ë£Œ ê°ì²´(object)를 ì¸ì‡„ í•  때만 사용할 " "수 있습니다." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -9953,13 +9959,13 @@ msgstr "" "모든 압출기 ì˜ ë…¸ì¦ ì§ê²½ì´ ë™ì¼í•˜ê³  ë™ì¼í•œ ì§ê²½ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 사용하는 경우ì—" "ë§Œ 와ì´í”„ 타워가 ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -9967,24 +9973,24 @@ msgstr "" "와ì´í”„ 타워는 현재 ìƒëŒ€ì  압출기 어드레싱 (use_relative_e_distances = 1)ì—서" "ë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "현재 와ì´í”„ 타워를 사용하ë„ë¡ ì„¤ì •ë˜ì–´ 있는 경우 스모즈 ë°©ì§€ ê¸°ëŠ¥ì´ ì§€ì›ë˜ì§€ " "않습니다." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "와ì´í”„ 타워는 현재 볼륨 E(use_volumetric_e=0)를 ì§€ì›í•˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "와ì´í”„ 타워는 현재 다중 재질 순차 ì¸ì‡„ì— ì§€ì›ë˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -9992,7 +9998,7 @@ msgstr "" "와ì´í”„ 타워 (Wipe Tower)는 ê°™ì€ ë ˆì´ì–´ 높ì´ì— 경우 여러 ê°ì²´(object)ì— ëŒ€í•´ì„œ" "ë§Œ ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10000,7 +10006,7 @@ msgstr "" "와ì´í”„ 타워는 ê°™ì€ ìˆ˜ì˜ ë¼í”„트 ë ˆì´ì–´ ìœ„ì— ì¸ì‡„ ëœ ê²½ìš° 여러 ê°ì²´(object)ì— " "대해서만 ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10008,7 +10014,7 @@ msgstr "" "와ì´í”„ 타워는 ë™ì¼í•œ support_material_contact_distance로 ì¸ì‡„ ëœ ê²½ìš° 여러 ê°" "ì²´(object)ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10016,29 +10022,29 @@ msgstr "" "와ì´í”„ 타워는 ë˜‘ê°™ì´ ìŠ¬ë¼ì´ìФ ëœ ê²½ìš° 여러 ê°ì²´(object)ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆ" "다." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" "모든 오브ì íŠ¸ì˜ ê°€ë³€ ë ˆì´ì–´ 높ì´ê°€ ê°™ì€ ê²½ìš°ì—ë§Œ 지우기 타워가 ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "하나 ì´ìƒì˜ ê°ì²´(object)ì— í”„ë¦°í„°ì—없는 압출기가 지정ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mmê°€ 너무 낮아 ë ˆì´ì–´ ë†’ì´ %3% mmì—서 ì¸ì‡„í•  수 없습니다." -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "ë…¸ì¦ ì§ê²½ %3% mm로 ì¸ì‡„í•  수 있는 ê³¼ë„한 %1%=%2% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10049,7 +10055,7 @@ msgstr "" "(support_material_extruder == 0 ë˜ëŠ” support_material_interface_extruder == " "0)로 ì¸ì‡„ë˜ëŠ” 경우 모든 ë…¸ì¦ì€ ë™ì¼í•œ 지름ì´ì–´ì•¼í•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10057,7 +10063,7 @@ msgstr "" "와ì´í”„ 타워가 가용성 지지체와 함께 ìž‘ë™ í•˜ë ¤ë©´ 서í¬íЏ ë ˆì´ì–´ë¥¼ ê°ì²´(object) " "ë ˆì´ì–´ì™€ ë™ê¸°í™” 해야 합니다." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10068,27 +10074,46 @@ msgstr "" "ì—ë§Œ 비가용성 서í¬íŠ¸ë¥¼ ì§€ì› í•©ë‹ˆë‹¤. (support_material_extruderê³¼ " "support_material_interface_extruder ëª¨ë‘ 0으로 설정 해야 합니다.)" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "첫번째 ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "ë ˆì´ì–´ 채우기" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G 코드 내보내기" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G 코드 ìƒì„±" diff --git a/resources/localization/ko_KR/PrusaSlicer_ko.po b/resources/localization/ko_KR/PrusaSlicer_ko.po index c7207eadaf..3e2ae505b4 100644 --- a/resources/localization/ko_KR/PrusaSlicer_ko.po +++ b/resources/localization/ko_KR/PrusaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-04-05 21:03+0900\n" "Last-Translator: \n" "Language-Team: \n" @@ -587,7 +587,7 @@ msgstr "활성" msgid "PrusaSlicer version" msgstr "프ë¼ì‚¬ìЬë¼ì´ì„œ 버전" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "출력" @@ -595,17 +595,17 @@ msgstr "출력" msgid "filaments" msgstr "í•„ ë¼ ë©˜ 트" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA 프린트" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA 재료" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "프린터" @@ -664,7 +664,7 @@ msgstr "표준" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "모ë‘" @@ -751,7 +751,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "í•„ë¼ë©˜íЏ ì„¤ì •ì„ ì„ íƒ" @@ -839,7 +839,7 @@ msgstr "" "ë˜í•œ ì—…ë°ì´íŠ¸ê°€ ì ìš©ë˜ê¸° ì „ì— ì „ì²´ êµ¬ì„±ì˜ ë°±ì—… 구성(스냅샷)ì´ ìƒì„±ë©ë‹ˆë‹¤." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "디스í¬ì—서 재장전" @@ -1143,7 +1143,7 @@ msgstr "완료(&Finish)" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "취소" @@ -1207,7 +1207,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1675,8 +1675,8 @@ msgid "parameter name" msgstr "매개 변수 명칭" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1879,7 +1879,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "추가" @@ -2081,7 +2081,7 @@ msgid "Wipe" msgstr "와ì´í”„(wipe) íƒ‘ì˜ ìµœì†Œ í¼ì§€" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "옵션" @@ -2348,7 +2348,7 @@ msgid "Add..." msgstr "ë”하기..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "ëª¨ë‘ ì‚­ì œ" @@ -3252,7 +3252,7 @@ msgstr "중요 오류" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3261,7 +3261,7 @@ msgstr "" "PrusaSlicer 구성 파ì¼ì„ 구문 ë¶„ì„하는 오류, 아마 ì†ìƒëœ 것입니다. 파ì¼ì„ 수ë™" "으로 삭제하여 ì˜¤ë¥˜ì— ë³µêµ¬í•´ 보십시오. ì‚¬ìš©ìž í”„ë¡œí•„ì€ ì˜í–¥ì„ 받지 않습니다." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3269,12 +3269,12 @@ msgstr "" "오류 구문 ë¶„ì„ PrusaGCodeViewer 컨피그 파ì¼, ê·¸ê²ƒì€ ì•„ë§ˆ ì†ìƒ. 오류를 복구하" "기 위해 파ì¼ì„ 수ë™ìœ¼ë¡œ 삭제해 봅보십시오." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3286,7 +3286,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3295,19 +3295,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3317,7 +3317,7 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3326,46 +3326,46 @@ msgstr "" "%s\n" "계ì†í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "ì„ íƒ ê¸°ì–µ" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "로딩 구성" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "릴리스 페ì´ì§€ë¥¼ 참조하십시오." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "설정 탭 준비" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3378,23 +3378,23 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "\"ì¸ì‡„ 호스트 업로드\"ì— ëŒ€í•œ ì €ìž¥ëœ ì˜µì…˜ì´ ìžˆëŠ” ë‹¤ìŒ ì‚¬ì „ ì„¤ì •ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3404,7 +3404,7 @@ msgstr "" "ì§€ 않습니다.\n" "ì„¤ì •ì€ ì‹¤ì œ 프린터 설정ì—서 사용할 수 있습니다." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3413,169 +3413,169 @@ msgstr "" "기본ì ìœ¼ë¡œ 새 프린터 장치는 ìƒì„± ì¤‘ì— \"프린터 N\"으로 지정ë©ë‹ˆë‹¤.\n" "참고: ì´ ì´ë¦„ì€ ë‚˜ì¤‘ì— ì‹¤ì œ 프린터 설정ì—서 변경할 수 있습니다." -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "ì •ë³´" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "재현" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "현재 기본 ì„¤ì •ì„ ë¶ˆëŸ¬ì˜¤ê¸°" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "보기 모드를 불러오기" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "파ì¼(3MF/AMF) ì„ íƒ:" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "파ì¼ì„ ì„ íƒí•˜ì„¸ìš” (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "í•˜ë‚˜ì˜ íŒŒì¼(GCODE/)ì„ ì„ íƒí•©ë‹ˆë‹¤. GCO/. G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "ì‘ìš© 프로그램 언어 변경" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "언어 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "언어" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "변경" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "%s 실행하기" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&구성 스냅샷" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "구성 ìŠ¤ëƒ…ìˆ ê²€ì‚¬/활성화" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "구성 ë° ìŠ¤ëƒ…ìƒ· ì°ê¸°" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "구성 스냅샷 캡처" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "구성 ì—…ë°ì´íЏ 확ì¸" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "기본 설정" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "ì‘ìš© 프로그램 기본 설정" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "단순" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "기본 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "고급" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "고급 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "전문가" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "전문가 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "언어(&L)" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "ì•„ë‘ì´ë…¸ 기반 í”„ë¦°í„°ì— íŽŒì›¨ì–´ ì´ë¯¸ì§€ 업로드" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "스냅샷 ì´ë¦„" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "구성 스냅ìˆì„ 활성화하지 못했습니다." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "언어 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3583,93 +3583,93 @@ msgstr "" "언어를 전환 하면 ì‘ìš© 프로그램 재시작 합니다. 플레ì´íЏ 위 오브ì íŠ¸ëŠ” ëª¨ë‘ ì§€" "워집니다." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "구성 노트" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "업로드는 여전히 ì§„í–‰ 중입니다." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "ê·¸ë“¤ì„ ì¤‘ì§€í•˜ê³  어쨌든 계ì†?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "ì§€ì†ì ì¸ 업로드" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA ë°©ì‹ì„ 사용 하여 다중 ê°ì²´ë¥¼ ì¸ì‡„í•  수는 없습니다." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "미리 설정하기 ì „ì— ê°œì²´ 목ë¡ì„ 확ì¸í•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "gcode 파ì¼ì„ ì„ íƒí•©ë‹ˆë‹¤." -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "브ë¼ìš°ì €ì—서 하ì´í¼ë§í¬ë¥¼ ì—´ë„ë¡ ì–µì œ" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "프ë¼ì‚¬ìЬë¼ì´ìФ: 다시 물어보지 마세요." @@ -3775,7 +3775,7 @@ msgstr "스커트와 브림" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3785,7 +3785,7 @@ msgid "Advanced" msgstr "고급" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3799,8 +3799,8 @@ msgid "Supports" msgstr "서í¬íЏ" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3810,8 +3810,8 @@ msgstr "서í¬íЏ" msgid "Pad" msgstr "패드" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3914,7 +3914,7 @@ msgstr "STL로 수출" msgid "Reload the selected volumes from disk" msgstr "디스í¬ì—서 ì„ íƒí•œ 볼륨 다시 로드" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3940,19 +3940,19 @@ msgstr "볼륨 ì¸ì‡„배율 ì¡°ì •" msgid "Scale the selected object to fit the print volume" msgstr "ì¸ì‡„ ë³¼ë¥¨ì— ë§žê²Œ ì„ íƒí•œ ê°ì²´ì˜ 배율 ì¡°ì •" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "제국 단위ì—서 변환" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "제국 단위ì—서 ë³€í™˜ì„ ë˜ëŒë¦¬ê¸°" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4206,7 +4206,7 @@ msgstr "" msgid "Loading" msgstr "로딩중" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "íŒŒì¼ ë¡œë“œ" @@ -4637,7 +4637,7 @@ msgstr "매개 변수 제거" msgid "Delete Option %s" msgstr "ì‚­ì œ %s 옵션" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "변경 옵션 %s" @@ -4756,18 +4756,18 @@ msgstr "공구 마커" msgid "Legend/Estimated printing time" msgstr "범례/ì˜ˆìƒ ì¸ì‡„ 시간" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "ë” ë³´ê¸°" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4927,11 +4927,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "ì¹¨ëŒ€ì— ë‹¤ì¤‘ 부품 오브ì íŠ¸ê°€ 있는 SLA 프로ì íŠ¸ë¥¼ 로드할 수 없습니다." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "주ì˜!" @@ -4972,11 +4972,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "ini/amf/3mf/gcodeì—서 êµ¬ì„±ì„ ë¡œë“œí•˜ê³  병합" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "G코드 내보내기" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "G-code 보내기" @@ -5363,7 +5363,7 @@ msgstr "범례 표시/숨기기 ë° ì˜ˆìƒ ì¸ì‡„ 시간" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "미리보기" @@ -5480,29 +5480,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "출력 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "재질 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "í•„ë¼ë©˜íЏ 설정" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "프린터 설정" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -6014,7 +6014,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6124,9 +6124,9 @@ msgstr "%1%로 내보낸 G 코드 파ì¼" msgid "Save zip file as:" msgstr "ì••ì¶•(zip)íŒŒì¼ ë‹¤ë¥¸ì´ë¦„ 저장:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "새로운 슬ë¼ì´ì‹± 작업 시작" @@ -6385,7 +6385,7 @@ msgstr "오류:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "경고" @@ -6411,8 +6411,8 @@ msgstr "ì ìš©" msgid "Instance %d" msgstr "ì¸ìŠ¤í„´ìŠ¤ %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "ë ˆì´ì–´" @@ -6678,12 +6678,12 @@ msgstr "아래 개체" msgid "Around object" msgstr "개체 주변" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "프린터로 보내기" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "바로 슬ë¼ì´ìФ" @@ -6790,7 +6790,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "장치 %s(%s)ì˜ ë°°ì¶œì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "새로운 프로ì íЏ" @@ -6798,7 +6798,7 @@ msgstr "새로운 프로ì íЏ" msgid "Expand sidebar" msgstr "사ì´ë“œë°” 확장" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6807,12 +6807,12 @@ msgid_plural "" "PrusaSlicer" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6822,11 +6822,11 @@ msgid_plural "" "These objects have been removed from the model" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6838,15 +6838,15 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6858,29 +6858,29 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "다중 부품 ê°ì²´ê°€ ê°ì§€" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" "ì´ íŒŒì¼ì€ 간단한 모드로 로드할 수 없습니다. 고급 모드로 전환하시겠습니까?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "ê°ì§€ëœ 고급 ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6889,7 +6889,7 @@ msgstr "" "다중 부품(Part) 하나 ë˜ëŠ” ê·¸ 중 ì¼ë¶€ ë•Œë¬¸ì— %sì—서 ê°ì²´(object)를 추가 í•  수 " "없습니다" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -6899,145 +6899,145 @@ msgstr "" "여러 ê°ì²´(object)로 간주하는 대신,\n" "ì´ íŒŒì¼ë“¤ì€ 여러 ë¶€ë¶„ì„ ê°–ëŠ” ë‹¨ì¼ ê°ì²´(object)를 나타낼 수 있습니까?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "개체가 너무 커서 ì¸ì‡„ë¬¼ì— ë§žê²Œ ìžë™ìœ¼ë¡œ 축소ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "개체가 너무 í½ë‹ˆê¹Œ?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "STL íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "AMF íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "파ì¼ì„ 다ìŒê³¼ ê°™ì´ ì €ìž¥" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "OBJ íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "오브ì íЏ 지우기" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "프로ì íЏ 재설정" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "오브ì íŠ¸ë³„ ë¶„í• " -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "ìž˜ëª»ëœ ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "다른 내보내기 ìž‘ì—…ì´ í˜„ìž¬ 실행 중입니다." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "다시 로드할 파ì¼ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "ì„ íƒí•œ 파ì¼" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "다ìŒì—서 다시 로드ë©ë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "다시 로드할 수 없습니다." -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "다시 로드하는 ë™ì•ˆ 오류" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "디스í¬ì—서 ëª¨ë‘ ë‹¤ì‹œ 로드 " -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "슬ë¼ì´ìФ 모ë¸ì— 대한 활성 경고가 있습니다." -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "ìƒì„±ëœ 경고" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D 편집기 보기" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7045,171 +7045,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "프로ì íЏ 불러오기" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "개체 가져오기" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "가져오기 개체" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "유효한 gcodeê°€ í¬í•¨ë˜ì–´ 있지 않습니다." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr ".gcode 파ì¼ì„ 로드하는 ë™ì•ˆ 오류" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - 프로ì íЏ íŒŒì¼ ì‚­ì œ" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "&프로ì íЏ 열기" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "í˜•ìƒ ê°€ì ¸ì˜¤ê¸°ë§Œ" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "구성만 가져오기" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "파ì¼ì— ì ìš©í•  작업 ì„ íƒ" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "실행" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "다시 ë³´ì§€ 않기" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "한 ë²ˆì— í•˜ë‚˜ì˜ .gcode 파ì¼ë§Œ ì—´ 수 있습니다." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "G 코드 íŒŒì¼ ë“œëž˜ê·¸ ë° ë“œë¡­" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "로드 파ì¼" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "íŒŒì¼ ë¡œë“œ" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "모든 개체가 제거ë˜ê³  계ì†ë˜ë‚˜ìš”?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "ì„ íƒí•œ 개체 ì‚­ì œ" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "ì¸ìŠ¤í„´ìŠ¤ ì¦ê°€" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "ì¸ìŠ¤í„´ìŠ¤ ê°ì†Œ" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "사본 수를 입력합니다." -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "ì„ íƒí•œ ê°œì²´ì˜ ë³µì‚¬ë³¸" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "복사본 수를 %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "í‰ë©´ìœ¼ë¡œ 절단" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G-code íŒŒì¼ ë‹¤ë¥¸ ì´ë¦„ 저장:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "내보내기" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "í´ë¦½ë³´ë“œì—서 붙여넣기" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "ì¼ë°˜" @@ -7350,7 +7350,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7364,7 +7364,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7375,7 +7375,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7899,11 +7899,11 @@ msgstr "프린터 í˜¸ìŠ¤íŠ¸ì— G 코드 보내기" msgid "Upload to Printer Host with the following filename:" msgstr "ë‹¤ìŒ íŒŒì¼ ì´ë¦„으로 프린터 í˜¸ìŠ¤íŠ¸ì— ì—…ë¡œë“œ:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "필요한 경우 디렉토리 분리 기호로 슬래시 (/ ) 를 사용하십시오." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "그룹" @@ -7912,18 +7912,18 @@ msgstr "그룹" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8365,7 +8365,7 @@ msgstr "ì „ì²´ 프로필 ì´ë¦„" msgid "symbolic profile name" msgstr "기호 프로필 ì´ë¦„" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "ë ˆì´ì–´ ë° ë‘˜ë ˆ" @@ -8452,11 +8452,11 @@ msgstr "오버랩" msgid "Flow" msgstr "í름ë„" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "기타" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "출력 옵션" @@ -8468,11 +8468,11 @@ msgstr "ìˆœì°¨ì  ì¸ì‡„" msgid "Extruder clearance" msgstr "압출기 í´ë¦¬ì–´ëŸ°ìФ" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "출력 파ì¼" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "í¬ìŠ¤íŠ¸ 프로세싱 스í¬ë¦½íЏ" @@ -8480,19 +8480,20 @@ msgstr "í¬ìŠ¤íŠ¸ 프로세싱 스í¬ë¦½íЏ" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "메모" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "종ì†ì„±" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "í”„ë¡œíŒŒì¼ ì†í•œê³³" @@ -8566,7 +8567,7 @@ msgid "Ramming settings" msgstr "ëž˜ë° ì„¤ì •" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "ì‚¬ìš©ìž ì§€ì • G 코드" @@ -8612,8 +8613,8 @@ msgstr "" msgid "Size and coordinates" msgstr "í¬ê¸° ë° ì¢Œí‘œ" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "권한" @@ -8681,11 +8682,11 @@ msgstr "기울ì´ê¸°" msgid "Tilt time" msgstr "기울ì´ê¸° 시간" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "수정" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "최소 노출 시간" @@ -8841,40 +8842,44 @@ msgstr "ì„ íƒí•œ 사전 ì„¤ì •ì˜ %1%를 ì„ íƒ í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" msgid "%1% Preset" msgstr "%1% 기본설정" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "설정" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "찾기" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "ì „ì²´ 단어 ì¼ì¹˜" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "기계 ì œí•œì€ G 코드로 ë°©ì¶œë˜ê³  ì¸ì‡„ ì‹œê°„ì„ ì˜ˆì¸¡í•˜ëŠ” ë° ì‚¬ìš©ë©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -8884,26 +8889,26 @@ msgstr "" "는 ë° ì‚¬ìš©ë©ë‹ˆë‹¤, ë”°ë¼ì„œ 프린터가 기계 ì œí•œì˜ ë‹¤ë¥¸ 세트를 ì ìš© í•  수 있으므" "로 정확하지 ì•Šì„ ìˆ˜ 있습니다." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" "기계 ì œí•œì´ ì„¤ì •ë˜ì§€ 않으므로 ì¸ì‡„ 시간 추정치가 정확하지 ì•Šì„ ìˆ˜ 있습니다." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "잠긴 잠금" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" "ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "" "UNLOCKED LOCK ì•„ì´ì½˜ì€ ì¼ë¶€ ì„¤ì •ì´ ë³€ê²½ë˜ì—ˆìœ¼ë©° 현재 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” " @@ -8912,7 +8917,7 @@ msgstr "" "릭합니다." #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8924,14 +8929,14 @@ msgstr "" "잠금 í•´ì œ ëœ LOCK ì•„ì´ì½˜ì„ í´ë¦­í•˜ì—¬ 현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ " "(ë˜ëŠ” 기본값) 값으로 재설정합니다." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 저장 ëœ ì‚¬" "ì „ 설정과 ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -8939,12 +8944,12 @@ msgstr "" "왼쪽 ë‹¨ì¶”ì˜ ê²½ìš°: 비시스템(ë˜ëŠ” 비기본ì ) 사전 ì„¤ì •ì„ ë‚˜íƒ€ë‚´ê³ ,\n" "오른쪽 단추: ì„¤ì •ì´ ìˆ˜ì •ë˜ì§€ 않았ìŒì„ 나타냅니다." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "ëŒì•„가기 화살표" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8956,7 +8961,7 @@ msgstr "" "뒤로 화살표 ì•„ì´ì½˜ì„ í´ë¦­í•˜ì—¬ 현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ë§ˆì§€ë§‰ìœ¼ë¡œ ì €" "ìž¥ëœ ì‚¬ì „ 설정으로 재설정합니다." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -8964,7 +8969,7 @@ msgstr "" "잠긴 LOCK ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤" "는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8976,11 +8981,11 @@ msgstr "" "현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´" "릭합니다." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "WHITE BULLET ì•„ì´ì½˜ì€ 시스템 사전 ì„¤ì •ì´ ì•„ë‹Œ ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -8988,7 +8993,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 저장 ëœ ì‚¬" "ì „ 설정과 ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9000,14 +9005,14 @@ msgstr "" "마지막 현재 옵션 ê·¸ë£¹ì— ëŒ€ 한 모든 설정 다시 ì„¤ì •ì„ í´ë¦­ 하 ì—¬ 사전 ì„¤ì •ì„ ì €" "장." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" "LOCK ì•„ì´ì½˜ìž ê¸°ëŠ” ê°’ì´ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9017,7 +9022,7 @@ msgstr "" "ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n" "현재 ê°’ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9025,7 +9030,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ 마지막으로 저장 한 사전 설정과 ë™ì¼í•œ ê°’ì„ ë‚˜íƒ€ëƒ…" "니다." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9035,31 +9040,31 @@ msgstr "" "ìŒì„ 나타냅니다.\n" "현재 ê°’ì„ ë§ˆì§€ë§‰ ì €ìž¥ëœ ì‚¬ì „ 설정으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "재료" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "서í¬íЏ 헤드" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "서í¬íЏ 기둥" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "서í¬íЏ 기둥 ë° ì ‘í•©ë¶€ ì—°ê²°" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "ìžë™ ìƒì„±" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9068,74 +9073,74 @@ msgstr "" "\"%1%\"는 \"%3%\" ë²”ì£¼ì— ìžˆê¸° ë•Œë¬¸ì— \"%2% %1%\"ì´ ë¹„í™œì„±í™”ë©ë‹ˆë‹¤.\n" "\"%1%\"ì„ í™œì„±í™”í•˜ë ¤ë©´ \"%2%\"ì„ ë„십시오." -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "ê°ì²´ ê³ ë„" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "물체 ì£¼ìœ„ì˜ íŒ¨ë“œ" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Undef" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "사전 설정 전환: 저장ë˜ì§€ ì•Šì€ ë³€ê²½ 사항" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "ì´ì „ ê°’" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "새 ê°’" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "전송하기" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "무시\t" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "저장" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9143,11 +9148,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "프ë¼ì‚¬ìЬë¼ì´ìŠ¤ëŸ¬ëŠ” ë‹¹ì‹ ì˜ í–‰ë™ì„ 기억할 것입니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9156,55 +9161,56 @@ msgstr "" "\"기본 설정\"ì„ ë°©ë¬¸í•˜ì—¬ \"%1%\"ì„ í™•ì¸í•˜ì‹­ì‹œì˜¤.\n" "저장ë˜ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì— ëŒ€í•´ 다시 묻는 것입니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "ì¼ë¶€ 필드는 너무 길기 ë•Œë¬¸ì— ì í•©í•©ë‹ˆë‹¤. 마우스 오른쪽 í´ë¦­ìœ¼ë¡œ ì „ì²´ í…스트" "ê°€ 드러납니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "모든 설정 변경 ë‚´ìš©ì€ ì‚­ì œë©ë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ì €ìž¥í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "ì„ íƒí•œ ì„¤ì •ì„ ìƒˆë¡œ ì„ íƒí•œ 사전 설정으로 전송합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ì €ìž¥í•˜ì—¬ \"%1%\"ì„ ë¯¸ë¦¬ 설정합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ìƒˆë¡œ ì„ íƒí•œ 사전 ì„¤ì •ëœ \"%1%\"로 전송합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì—는 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9213,7 +9219,7 @@ msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì€ ìƒˆ 프린터 프로필과 호환ë˜ì§€ 않으며 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜" "ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9222,50 +9228,50 @@ msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì€ ìƒˆ ì¸ì‡„ 프로파ì¼ê³¼ 호환ë˜ì§€ 않으며 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜" "ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "압출기 수" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -10075,24 +10081,24 @@ msgstr "유효성 검사 실패" msgid "write calledback failed" msgstr "쓰기 호출 ë°± 실패" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "모든 개체가 ì¸ì‡„ 볼륨 ì™¸ë¶€ì— ìžˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "ì œê³µëœ ì„¤ì •ìœ¼ë¡œ ì¸í•´ 빈 ì¸ì‡„ê°€ ë°œìƒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "ì¼ë¶€ 개체가 너무 ê°€ê¹ìŠµë‹ˆë‹¤. ê·€í•˜ì˜ ì••ì¶œê¸°ê°€ 그들과 ì¶©ëŒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "ì¼ë¶€ 개체는 너무 í¬ê³  ìµìŠ¤íŠ¸ë£¨ë” ì¶©ëŒì—†ì´ ì¸ì‡„ í•  수 없습니다." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10102,7 +10108,7 @@ msgstr "" "를 제외한 모든 개체를 제거하거나 \"complete_objects\"하여 순차 모드를 사용하" "ë„ë¡ ì„¤ì •í•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -10110,7 +10116,7 @@ msgstr "" "나선형 꽃병 옵션(Spiral Vase)ì€ ë‹¨ì¼ ìž¬ë£Œ ê°ì²´ë¥¼ ì¸ì‡„ í•  때만 사용할 수 있습" "니다." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10118,7 +10124,7 @@ msgstr "" "와ì´í”„ 타워는 모든 압출기ì§ê²½ì´ ë™ì¼í•˜ê³  ë™ì¼í•œ ì§ê²½ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 사용하는 ê²½" "ìš°ì—ë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10126,7 +10132,7 @@ msgstr "" "와ì´í”„ 타워는 현재 ë§ë¦°, RepRap / 단거리, RepRapFirmware ë° Repetier G 코드 " "ë§›ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10134,29 +10140,29 @@ msgstr "" "와ì´í”„ 타워는 현재 ìƒëŒ€ì  압출기 어드레싱 (use_relative_e_distances=1)ì—서만 " "ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "현재 í™œì„±í™”ëœ ì™€ì´í”„ 타워로는 Ooze 방지가 ì§€ì›ë˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "와ì´í”„ 타워는 현재 볼륨 E(use_volumetric_e=0)를 ì§€ì›í•˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "와ì´í”„ 타워는 현재 다중 재료 순차 ì¸ì‡„ì— ëŒ€í•´ ì§€ì›ë˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" "와ì´í”„ 타워는 ë ˆì´ì–´ 높ì´ê°€ ë™ì¼í•œ 경우ì—ë§Œ 여러 ê°œì²´ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10164,7 +10170,7 @@ msgstr "" "와ì´í”„ 타워는 ê°™ì€ ìˆ˜ì˜ ë¼í”„트 ë ˆì´ì–´ ìœ„ì— ì¸ì‡„ ëœ ê²½ìš° 여러 ê°ì²´ì— 대해서만 " "ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10172,14 +10178,14 @@ msgstr "" "와ì´í”„ 타워는 ë™ì¼í•œ support_material_contact_distance로 ì¸ì‡„ ëœ ê²½ìš° 여러 ê°" "ì²´ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "" "와ì´í”„ 타워는 ë˜‘ê°™ì´ ìŠ¬ë¼ì´ìФ ëœ ê²½ìš° 여러 오브ì íŠ¸ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10187,22 +10193,22 @@ msgstr "" "지우기 타워는 모든 오브ì íŠ¸ê°€ ë™ì¼í•œ 가변 ë ˆì´ì–´ 높ì´ë¥¼ 갖는 경우ì—ë§Œ ì§€ì›ë©" "니다." -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "하나 ì´ìƒì˜ ê°œì²´ì— í”„ë¦°í„°ì—없는 압출기가 지정ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mmê°€ 너무 낮아 ë ˆì´ì–´ 높ì´%3% mmì—서 ì¸ì‡„í•  수 없습니다." -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "ë…¸ì¦ ì§ê²½ %3% mm로 ì¸ì‡„í•  수 있는 ê³¼ë„한 %1%=%2% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10213,7 +10219,7 @@ msgstr "" "(support_material_extruder == 0 or support_material_interface_extruder == 0)" "로 ì¸ì‡„ë˜ëŠ” 경우 모든 ë…¸ì¦ì€ ë™ì¼í•œ 지름ì´ì–´ì•¼í•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10221,7 +10227,7 @@ msgstr "" "와ì´í”„ 타워가 가용성 지지체와 함께 ìž‘ë™ í•˜ë ¤ë©´ 서í¬íЏ ë ˆì´ì–´ë¥¼ 오브ì íЏ ë ˆì´" "어와 ë™ê¸°í™” 해야 합니다." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10232,27 +10238,46 @@ msgstr "" "ì—ë§Œ 비가용성 서í¬íŠ¸ë¥¼ ì§€ì› í•©ë‹ˆë‹¤. (support_material_extruderê³¼ " "support_material_interface_extruder ëª¨ë‘ 0으로 설정 해야 합니다.)" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "첫번째 ë ˆì´ì–´ì˜ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "ë ˆì´ì–´ 채우기" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G코드 내보내기" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G 코드 ìƒì„±" diff --git a/resources/localization/ko_KR/PrusaSlicer_ko_KR.po b/resources/localization/ko_KR/PrusaSlicer_ko_KR.po index 7789855244..20b852373a 100644 --- a/resources/localization/ko_KR/PrusaSlicer_ko_KR.po +++ b/resources/localization/ko_KR/PrusaSlicer_ko_KR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-04-04 22:15+0900\n" "Last-Translator: \n" "Language-Team: \n" @@ -587,7 +587,7 @@ msgstr "활성" msgid "PrusaSlicer version" msgstr "프ë¼ì‚¬ìЬë¼ì´ì„œ 버전" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "출력" @@ -595,17 +595,17 @@ msgstr "출력" msgid "filaments" msgstr "í•„ ë¼ ë©˜ 트" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA 프린트" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA 재료" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "프린터" @@ -664,7 +664,7 @@ msgstr "표준" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "모ë‘" @@ -751,7 +751,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "í•„ë¼ë©˜íЏ ì„¤ì •ì„ ì„ íƒ" @@ -839,7 +839,7 @@ msgstr "" "ë˜í•œ ì—…ë°ì´íŠ¸ê°€ ì ìš©ë˜ê¸° ì „ì— ì „ì²´ êµ¬ì„±ì˜ ë°±ì—… 구성(스냅샷)ì´ ìƒì„±ë©ë‹ˆë‹¤." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "디스í¬ì—서 재장전" @@ -1143,7 +1143,7 @@ msgstr "완료(&Finish)" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "취소" @@ -1207,7 +1207,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1675,8 +1675,8 @@ msgid "parameter name" msgstr "매개 변수 명칭" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1879,7 +1879,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "추가" @@ -2081,7 +2081,7 @@ msgid "Wipe" msgstr "와ì´í”„(wipe) íƒ‘ì˜ ìµœì†Œ í¼ì§€" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "옵션" @@ -2348,7 +2348,7 @@ msgid "Add..." msgstr "ë”하기..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "ëª¨ë‘ ì‚­ì œ" @@ -3252,7 +3252,7 @@ msgstr "중요 오류" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3261,7 +3261,7 @@ msgstr "" "PrusaSlicer 구성 파ì¼ì„ 구문 ë¶„ì„하는 오류, 아마 ì†ìƒëœ 것입니다. 파ì¼ì„ 수ë™" "으로 삭제하여 ì˜¤ë¥˜ì— ë³µêµ¬í•´ 보십시오. ì‚¬ìš©ìž í”„ë¡œí•„ì€ ì˜í–¥ì„ 받지 않습니다." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3269,12 +3269,12 @@ msgstr "" "오류 구문 ë¶„ì„ PrusaGCodeViewer 컨피그 파ì¼, ê·¸ê²ƒì€ ì•„ë§ˆ ì†ìƒ. 오류를 복구하" "기 위해 파ì¼ì„ 수ë™ìœ¼ë¡œ 삭제해 봅보십시오." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3286,7 +3286,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3295,19 +3295,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3317,7 +3317,7 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3326,46 +3326,46 @@ msgstr "" "%s\n" "계ì†í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "ì„ íƒ ê¸°ì–µ" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "로딩 구성" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "릴리스 페ì´ì§€ë¥¼ 참조하십시오." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "설정 탭 준비" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3378,23 +3378,23 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "\"ì¸ì‡„ 호스트 업로드\"ì— ëŒ€í•œ ì €ìž¥ëœ ì˜µì…˜ì´ ìžˆëŠ” ë‹¤ìŒ ì‚¬ì „ ì„¤ì •ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3404,7 +3404,7 @@ msgstr "" "ì§€ 않습니다.\n" "ì„¤ì •ì€ ì‹¤ì œ 프린터 설정ì—서 사용할 수 있습니다." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3413,169 +3413,169 @@ msgstr "" "기본ì ìœ¼ë¡œ 새 프린터 장치는 ìƒì„± ì¤‘ì— \"프린터 N\"으로 지정ë©ë‹ˆë‹¤.\n" "참고: ì´ ì´ë¦„ì€ ë‚˜ì¤‘ì— ì‹¤ì œ 프린터 설정ì—서 변경할 수 있습니다." -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "ì •ë³´" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "재현" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "현재 기본 ì„¤ì •ì„ ë¶ˆëŸ¬ì˜¤ê¸°" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "보기 모드를 불러오기" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "파ì¼(3MF/AMF) ì„ íƒ:" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "파ì¼ì„ ì„ íƒí•˜ì„¸ìš” (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "í•˜ë‚˜ì˜ íŒŒì¼(GCODE/)ì„ ì„ íƒí•©ë‹ˆë‹¤. GCO/. G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "ì‘ìš© 프로그램 언어 변경" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "언어 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "언어" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "변경" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "%s 실행하기" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&구성 스냅샷" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "구성 ìŠ¤ëƒ…ìˆ ê²€ì‚¬/활성화" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "구성 ë° ìŠ¤ëƒ…ìƒ· ì°ê¸°" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "구성 스냅샷 캡처" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "구성 ì—…ë°ì´íЏ 확ì¸" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "기본 설정" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "ì‘ìš© 프로그램 기본 설정" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "단순" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "기본 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "고급" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "고급 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "전문가" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "전문가 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "모드" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s 보기 모드" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "언어(&L)" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "ì•„ë‘ì´ë…¸ 기반 í”„ë¦°í„°ì— íŽŒì›¨ì–´ ì´ë¯¸ì§€ 업로드" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "스냅샷 ì´ë¦„" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "구성 스냅ìˆì„ 활성화하지 못했습니다." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "언어 ì„ íƒ" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3583,93 +3583,93 @@ msgstr "" "언어를 전환 하면 ì‘ìš© 프로그램 재시작 합니다. 플레ì´íЏ 위 오브ì íŠ¸ëŠ” ëª¨ë‘ ì§€" "워집니다." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "구성 노트" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "업로드는 여전히 ì§„í–‰ 중입니다." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "ê·¸ë“¤ì„ ì¤‘ì§€í•˜ê³  어쨌든 계ì†?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "ì§€ì†ì ì¸ 업로드" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA ë°©ì‹ì„ 사용 하여 다중 ê°ì²´ë¥¼ ì¸ì‡„í•  수는 없습니다." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "미리 설정하기 ì „ì— ê°œì²´ 목ë¡ì„ 확ì¸í•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "gcode 파ì¼ì„ ì„ íƒí•©ë‹ˆë‹¤." -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "브ë¼ìš°ì €ì—서 하ì´í¼ë§í¬ë¥¼ ì—´ë„ë¡ ì–µì œ" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "프ë¼ì‚¬ìЬë¼ì´ìФ: 다시 물어보지 마세요." @@ -3775,7 +3775,7 @@ msgstr "스커트와 브림" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3785,7 +3785,7 @@ msgid "Advanced" msgstr "고급" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3799,8 +3799,8 @@ msgid "Supports" msgstr "서í¬íЏ" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3810,8 +3810,8 @@ msgstr "서í¬íЏ" msgid "Pad" msgstr "패드" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3914,7 +3914,7 @@ msgstr "STL로 수출" msgid "Reload the selected volumes from disk" msgstr "디스í¬ì—서 ì„ íƒí•œ 볼륨 다시 로드" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3940,19 +3940,19 @@ msgstr "볼륨 ì¸ì‡„배율 ì¡°ì •" msgid "Scale the selected object to fit the print volume" msgstr "ì¸ì‡„ ë³¼ë¥¨ì— ë§žê²Œ ì„ íƒí•œ ê°ì²´ì˜ 배율 ì¡°ì •" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "제국 단위ì—서 변환" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "제국 단위ì—서 ë³€í™˜ì„ ë˜ëŒë¦¬ê¸°" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4206,7 +4206,7 @@ msgstr "" msgid "Loading" msgstr "로딩중" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "íŒŒì¼ ë¡œë“œ" @@ -4637,7 +4637,7 @@ msgstr "매개 변수 제거" msgid "Delete Option %s" msgstr "ì‚­ì œ %s 옵션" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "변경 옵션 %s" @@ -4756,18 +4756,18 @@ msgstr "공구 마커" msgid "Legend/Estimated printing time" msgstr "범례/ì˜ˆìƒ ì¸ì‡„ 시간" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "ë” ë³´ê¸°" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4927,11 +4927,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "ì¹¨ëŒ€ì— ë‹¤ì¤‘ 부품 오브ì íŠ¸ê°€ 있는 SLA 프로ì íŠ¸ë¥¼ 로드할 수 없습니다." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "주ì˜!" @@ -4972,11 +4972,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "ini/amf/3mf/gcodeì—서 êµ¬ì„±ì„ ë¡œë“œí•˜ê³  병합" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "G코드 내보내기" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "G-code 보내기" @@ -5363,7 +5363,7 @@ msgstr "범례 표시/숨기기 ë° ì˜ˆìƒ ì¸ì‡„ 시간" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "미리보기" @@ -5480,29 +5480,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "출력 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "재질 설정" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "í•„ë¼ë©˜íЏ 설정" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "프린터 설정" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -6014,7 +6014,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6124,9 +6124,9 @@ msgstr "%1%로 내보낸 G 코드 파ì¼" msgid "Save zip file as:" msgstr "ì••ì¶•(zip)íŒŒì¼ ë‹¤ë¥¸ì´ë¦„ 저장:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "새로운 슬ë¼ì´ì‹± 작업 시작" @@ -6385,7 +6385,7 @@ msgstr "오류:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "경고" @@ -6411,8 +6411,8 @@ msgstr "ì ìš©" msgid "Instance %d" msgstr "ì¸ìŠ¤í„´ìŠ¤ %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "ë ˆì´ì–´" @@ -6678,12 +6678,12 @@ msgstr "아래 개체" msgid "Around object" msgstr "개체 주변" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "프린터로 보내기" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "바로 슬ë¼ì´ìФ" @@ -6790,7 +6790,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "장치 %s(%s)ì˜ ë°°ì¶œì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "새로운 프로ì íЏ" @@ -6798,7 +6798,7 @@ msgstr "새로운 프로ì íЏ" msgid "Expand sidebar" msgstr "사ì´ë“œë°” 확장" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6807,12 +6807,12 @@ msgid_plural "" "PrusaSlicer" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6822,11 +6822,11 @@ msgid_plural "" "These objects have been removed from the model" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6838,15 +6838,15 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6858,29 +6858,29 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "다중 부품 ê°ì²´ê°€ ê°ì§€" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" "ì´ íŒŒì¼ì€ 간단한 모드로 로드할 수 없습니다. 고급 모드로 전환하시겠습니까?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "ê°ì§€ëœ 고급 ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6889,7 +6889,7 @@ msgstr "" "다중 부품(Part) 하나 ë˜ëŠ” ê·¸ 중 ì¼ë¶€ ë•Œë¬¸ì— %sì—서 ê°ì²´(object)를 추가 í•  수 " "없습니다" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -6899,145 +6899,145 @@ msgstr "" "여러 ê°ì²´(object)로 간주하는 대신,\n" "ì´ íŒŒì¼ë“¤ì€ 여러 ë¶€ë¶„ì„ ê°–ëŠ” ë‹¨ì¼ ê°ì²´(object)를 나타낼 수 있습니까?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "개체가 너무 커서 ì¸ì‡„ë¬¼ì— ë§žê²Œ ìžë™ìœ¼ë¡œ 축소ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "개체가 너무 í½ë‹ˆê¹Œ?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "STL íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "AMF íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "파ì¼ì„ 다ìŒê³¼ ê°™ì´ ì €ìž¥" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "OBJ íŒŒì¼ ë‚´ë³´ë‚´ê¸°:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "오브ì íЏ 지우기" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "프로ì íЏ 재설정" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "오브ì íŠ¸ë³„ ë¶„í• " -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "ìž˜ëª»ëœ ë°ì´í„°" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "다른 내보내기 ìž‘ì—…ì´ í˜„ìž¬ 실행 중입니다." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "다시 로드할 파ì¼ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤." -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "ì„ íƒí•œ 파ì¼" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "다ìŒì—서 다시 로드ë©ë‹ˆë‹¤." -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "다시 로드할 수 없습니다." -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "다시 로드하는 ë™ì•ˆ 오류" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "디스í¬ì—서 ëª¨ë‘ ë‹¤ì‹œ 로드 " -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "슬ë¼ì´ìФ 모ë¸ì— 대한 활성 경고가 있습니다." -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "ìƒì„±ëœ 경고" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D 편집기 보기" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7045,171 +7045,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "프로ì íЏ 불러오기" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "개체 가져오기" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "가져오기 개체" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "유효한 gcodeê°€ í¬í•¨ë˜ì–´ 있지 않습니다." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr ".gcode 파ì¼ì„ 로드하는 ë™ì•ˆ 오류" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - 프로ì íЏ íŒŒì¼ ì‚­ì œ" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "&프로ì íЏ 열기" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "í˜•ìƒ ê°€ì ¸ì˜¤ê¸°ë§Œ" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "구성만 가져오기" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "파ì¼ì— ì ìš©í•  작업 ì„ íƒ" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "실행" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "다시 ë³´ì§€ 않기" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "한 ë²ˆì— í•˜ë‚˜ì˜ .gcode 파ì¼ë§Œ ì—´ 수 있습니다." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "G 코드 íŒŒì¼ ë“œëž˜ê·¸ ë° ë“œë¡­" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "로드 파ì¼" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "íŒŒì¼ ë¡œë“œ" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "모든 개체가 제거ë˜ê³  계ì†ë˜ë‚˜ìš”?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "ì„ íƒí•œ 개체 ì‚­ì œ" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "ì¸ìŠ¤í„´ìŠ¤ ì¦ê°€" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "ì¸ìŠ¤í„´ìŠ¤ ê°ì†Œ" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "사본 수를 입력합니다." -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "ì„ íƒí•œ ê°œì²´ì˜ ë³µì‚¬ë³¸" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "복사본 수를 %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "í‰ë©´ìœ¼ë¡œ 절단" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G-code íŒŒì¼ ë‹¤ë¥¸ ì´ë¦„ 저장:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "내보내기" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "í´ë¦½ë³´ë“œì—서 붙여넣기" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "ì¼ë°˜" @@ -7350,7 +7350,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7364,7 +7364,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7375,7 +7375,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7899,11 +7899,11 @@ msgstr "프린터 í˜¸ìŠ¤íŠ¸ì— G 코드 보내기" msgid "Upload to Printer Host with the following filename:" msgstr "ë‹¤ìŒ íŒŒì¼ ì´ë¦„으로 프린터 í˜¸ìŠ¤íŠ¸ì— ì—…ë¡œë“œ:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "필요한 경우 디렉토리 분리 기호로 슬래시 (/ ) 를 사용하십시오." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "그룹" @@ -7912,18 +7912,18 @@ msgstr "그룹" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8365,7 +8365,7 @@ msgstr "ì „ì²´ 프로필 ì´ë¦„" msgid "symbolic profile name" msgstr "기호 프로필 ì´ë¦„" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "ë ˆì´ì–´ ë° ë‘˜ë ˆ" @@ -8452,11 +8452,11 @@ msgstr "오버랩" msgid "Flow" msgstr "í름ë„" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "기타" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "출력 옵션" @@ -8468,11 +8468,11 @@ msgstr "ìˆœì°¨ì  ì¸ì‡„" msgid "Extruder clearance" msgstr "압출기 í´ë¦¬ì–´ëŸ°ìФ" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "출력 파ì¼" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "í¬ìŠ¤íŠ¸ 프로세싱 스í¬ë¦½íЏ" @@ -8480,19 +8480,20 @@ msgstr "í¬ìŠ¤íŠ¸ 프로세싱 스í¬ë¦½íЏ" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "메모" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "종ì†ì„±" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "í”„ë¡œíŒŒì¼ ì†í•œê³³" @@ -8566,7 +8567,7 @@ msgid "Ramming settings" msgstr "ëž˜ë° ì„¤ì •" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "ì‚¬ìš©ìž ì§€ì • G 코드" @@ -8612,8 +8613,8 @@ msgstr "" msgid "Size and coordinates" msgstr "í¬ê¸° ë° ì¢Œí‘œ" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "권한" @@ -8681,11 +8682,11 @@ msgstr "기울ì´ê¸°" msgid "Tilt time" msgstr "기울ì´ê¸° 시간" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "수정" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "최소 노출 시간" @@ -8841,40 +8842,44 @@ msgstr "ì„ íƒí•œ 사전 ì„¤ì •ì˜ %1%를 ì„ íƒ í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" msgid "%1% Preset" msgstr "%1% 기본설정" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "설정" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "찾기" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "ì „ì²´ 단어 ì¼ì¹˜" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "기계 ì œí•œì€ G 코드로 ë°©ì¶œë˜ê³  ì¸ì‡„ ì‹œê°„ì„ ì˜ˆì¸¡í•˜ëŠ” ë° ì‚¬ìš©ë©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -8884,26 +8889,26 @@ msgstr "" "는 ë° ì‚¬ìš©ë©ë‹ˆë‹¤, ë”°ë¼ì„œ 프린터가 기계 ì œí•œì˜ ë‹¤ë¥¸ 세트를 ì ìš© í•  수 있으므" "로 정확하지 ì•Šì„ ìˆ˜ 있습니다." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" "기계 ì œí•œì´ ì„¤ì •ë˜ì§€ 않으므로 ì¸ì‡„ 시간 추정치가 정확하지 ì•Šì„ ìˆ˜ 있습니다." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "잠긴 잠금" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" "ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "" "UNLOCKED LOCK ì•„ì´ì½˜ì€ ì¼ë¶€ ì„¤ì •ì´ ë³€ê²½ë˜ì—ˆìœ¼ë©° 현재 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” " @@ -8912,7 +8917,7 @@ msgstr "" "릭합니다." #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8924,14 +8929,14 @@ msgstr "" "잠금 í•´ì œ ëœ LOCK ì•„ì´ì½˜ì„ í´ë¦­í•˜ì—¬ 현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ " "(ë˜ëŠ” 기본값) 값으로 재설정합니다." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 저장 ëœ ì‚¬" "ì „ 설정과 ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -8939,12 +8944,12 @@ msgstr "" "왼쪽 ë‹¨ì¶”ì˜ ê²½ìš°: 비시스템(ë˜ëŠ” 비기본ì ) 사전 ì„¤ì •ì„ ë‚˜íƒ€ë‚´ê³ ,\n" "오른쪽 단추: ì„¤ì •ì´ ìˆ˜ì •ë˜ì§€ 않았ìŒì„ 나타냅니다." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "ëŒì•„가기 화살표" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8956,7 +8961,7 @@ msgstr "" "뒤로 화살표 ì•„ì´ì½˜ì„ í´ë¦­í•˜ì—¬ 현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ë§ˆì§€ë§‰ìœ¼ë¡œ ì €" "ìž¥ëœ ì‚¬ì „ 설정으로 재설정합니다." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -8964,7 +8969,7 @@ msgstr "" "잠긴 LOCK ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤" "는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8976,11 +8981,11 @@ msgstr "" "현재 옵션 ê·¸ë£¹ì— ëŒ€í•œ 모든 ì„¤ì •ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´" "릭합니다." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "WHITE BULLET ì•„ì´ì½˜ì€ 시스템 사전 ì„¤ì •ì´ ì•„ë‹Œ ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -8988,7 +8993,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 저장 ëœ ì‚¬" "ì „ 설정과 ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9000,14 +9005,14 @@ msgstr "" "마지막 현재 옵션 ê·¸ë£¹ì— ëŒ€ 한 모든 설정 다시 ì„¤ì •ì„ í´ë¦­ 하 ì—¬ 사전 ì„¤ì •ì„ ì €" "장." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" "LOCK ì•„ì´ì½˜ìž ê¸°ëŠ” ê°’ì´ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) ê°’ê³¼ ë™ì¼í•˜ë‹¤ëŠ” ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9017,7 +9022,7 @@ msgstr "" "ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n" "현재 ê°’ì„ ì‹œìŠ¤í…œ(ë˜ëŠ” 기본값) 값으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9025,7 +9030,7 @@ msgstr "" "WHITE BULLET 기호 ì•„ì´ì½˜ì€ 마지막으로 저장 한 사전 설정과 ë™ì¼í•œ ê°’ì„ ë‚˜íƒ€ëƒ…" "니다." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9035,31 +9040,31 @@ msgstr "" "ìŒì„ 나타냅니다.\n" "현재 ê°’ì„ ë§ˆì§€ë§‰ ì €ìž¥ëœ ì‚¬ì „ 설정으로 재설정하려면 í´ë¦­í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "재료" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "서í¬íЏ 헤드" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "서í¬íЏ 기둥" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "서í¬íЏ 기둥 ë° ì ‘í•©ë¶€ ì—°ê²°" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "ìžë™ ìƒì„±" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9068,74 +9073,74 @@ msgstr "" "\"%1%\"는 \"%3%\" ë²”ì£¼ì— ìžˆê¸° ë•Œë¬¸ì— \"%2% %1%\"ì´ ë¹„í™œì„±í™”ë©ë‹ˆë‹¤.\n" "\"%1%\"ì„ í™œì„±í™”í•˜ë ¤ë©´ \"%2%\"ì„ ë„십시오." -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "ê°ì²´ ê³ ë„" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "물체 ì£¼ìœ„ì˜ íŒ¨ë“œ" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Undef" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "사전 설정 전환: 저장ë˜ì§€ ì•Šì€ ë³€ê²½ 사항" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "ì´ì „ ê°’" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "새 ê°’" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "전송하기" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "무시\t" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "저장" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9143,11 +9148,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "프ë¼ì‚¬ìЬë¼ì´ìŠ¤ëŸ¬ëŠ” ë‹¹ì‹ ì˜ í–‰ë™ì„ 기억할 것입니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9156,55 +9161,56 @@ msgstr "" "\"기본 설정\"ì„ ë°©ë¬¸í•˜ì—¬ \"%1%\"ì„ í™•ì¸í•˜ì‹­ì‹œì˜¤.\n" "저장ë˜ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì— ëŒ€í•´ 다시 묻는 것입니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "ì¼ë¶€ 필드는 너무 길기 ë•Œë¬¸ì— ì í•©í•©ë‹ˆë‹¤. 마우스 오른쪽 í´ë¦­ìœ¼ë¡œ ì „ì²´ í…스트" "ê°€ 드러납니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "모든 설정 변경 ë‚´ìš©ì€ ì‚­ì œë©ë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ì €ìž¥í•©ë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "ì„ íƒí•œ ì„¤ì •ì„ ìƒˆë¡œ ì„ íƒí•œ 사전 설정으로 전송합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ì €ìž¥í•˜ì—¬ \"%1%\"ì„ ë¯¸ë¦¬ 설정합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "ì„ íƒí•œ ì˜µì…˜ì„ ìƒˆë¡œ ì„ íƒí•œ 사전 ì„¤ì •ëœ \"%1%\"로 전송합니다." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì—는 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9213,7 +9219,7 @@ msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì€ ìƒˆ 프린터 프로필과 호환ë˜ì§€ 않으며 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜" "ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9222,50 +9228,50 @@ msgstr "" "사전 ì„¤ì •ëœ \"%1%\"ì€ ìƒˆ ì¸ì‡„ 프로파ì¼ê³¼ 호환ë˜ì§€ 않으며 다ìŒê³¼ ê°™ì€ ì €ìž¥ë˜" "ì§€ ì•Šì€ ë³€ê²½ ì‚¬í•­ì´ ìžˆìŠµë‹ˆë‹¤." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "압출기 수" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -10075,24 +10081,24 @@ msgstr "유효성 검사 실패" msgid "write calledback failed" msgstr "쓰기 호출 ë°± 실패" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "모든 개체가 ì¸ì‡„ 볼륨 ì™¸ë¶€ì— ìžˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "ì œê³µëœ ì„¤ì •ìœ¼ë¡œ ì¸í•´ 빈 ì¸ì‡„ê°€ ë°œìƒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "ì¼ë¶€ 개체가 너무 ê°€ê¹ìŠµë‹ˆë‹¤. ê·€í•˜ì˜ ì••ì¶œê¸°ê°€ 그들과 ì¶©ëŒí•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "ì¼ë¶€ 개체는 너무 í¬ê³  ìµìŠ¤íŠ¸ë£¨ë” ì¶©ëŒì—†ì´ ì¸ì‡„ í•  수 없습니다." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10102,7 +10108,7 @@ msgstr "" "를 제외한 모든 개체를 제거하거나 \"complete_objects\"하여 순차 모드를 사용하" "ë„ë¡ ì„¤ì •í•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -10110,7 +10116,7 @@ msgstr "" "나선형 꽃병 옵션(Spiral Vase)ì€ ë‹¨ì¼ ìž¬ë£Œ ê°ì²´ë¥¼ ì¸ì‡„ í•  때만 사용할 수 있습" "니다." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10118,7 +10124,7 @@ msgstr "" "와ì´í”„ 타워는 모든 압출기ì§ê²½ì´ ë™ì¼í•˜ê³  ë™ì¼í•œ ì§ê²½ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 사용하는 ê²½" "ìš°ì—ë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10126,7 +10132,7 @@ msgstr "" "와ì´í”„ 타워는 현재 ë§ë¦°, RepRap / 단거리, RepRapFirmware ë° Repetier G 코드 " "ë§›ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10134,29 +10140,29 @@ msgstr "" "와ì´í”„ 타워는 현재 ìƒëŒ€ì  압출기 어드레싱 (use_relative_e_distances=1)ì—서만 " "ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "현재 í™œì„±í™”ëœ ì™€ì´í”„ 타워로는 Ooze 방지가 ì§€ì›ë˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "와ì´í”„ 타워는 현재 볼륨 E(use_volumetric_e=0)를 ì§€ì›í•˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "와ì´í”„ 타워는 현재 다중 재료 순차 ì¸ì‡„ì— ëŒ€í•´ ì§€ì›ë˜ì§€ 않습니다." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" "와ì´í”„ 타워는 ë ˆì´ì–´ 높ì´ê°€ ë™ì¼í•œ 경우ì—ë§Œ 여러 ê°œì²´ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10164,7 +10170,7 @@ msgstr "" "와ì´í”„ 타워는 ê°™ì€ ìˆ˜ì˜ ë¼í”„트 ë ˆì´ì–´ ìœ„ì— ì¸ì‡„ ëœ ê²½ìš° 여러 ê°ì²´ì— 대해서만 " "ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10172,14 +10178,14 @@ msgstr "" "와ì´í”„ 타워는 ë™ì¼í•œ support_material_contact_distance로 ì¸ì‡„ ëœ ê²½ìš° 여러 ê°" "ì²´ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "" "와ì´í”„ 타워는 ë˜‘ê°™ì´ ìŠ¬ë¼ì´ìФ ëœ ê²½ìš° 여러 오브ì íŠ¸ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10187,22 +10193,22 @@ msgstr "" "지우기 타워는 모든 오브ì íŠ¸ê°€ ë™ì¼í•œ 가변 ë ˆì´ì–´ 높ì´ë¥¼ 갖는 경우ì—ë§Œ ì§€ì›ë©" "니다." -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "하나 ì´ìƒì˜ ê°œì²´ì— í”„ë¦°í„°ì—없는 압출기가 지정ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mmê°€ 너무 낮아 ë ˆì´ì–´ 높ì´%3% mmì—서 ì¸ì‡„í•  수 없습니다." -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "ë…¸ì¦ ì§ê²½ %3% mm로 ì¸ì‡„í•  수 있는 ê³¼ë„한 %1%=%2% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10213,7 +10219,7 @@ msgstr "" "(support_material_extruder == 0 or support_material_interface_extruder == 0)" "로 ì¸ì‡„ë˜ëŠ” 경우 모든 ë…¸ì¦ì€ ë™ì¼í•œ 지름ì´ì–´ì•¼í•©ë‹ˆë‹¤." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10221,7 +10227,7 @@ msgstr "" "와ì´í”„ 타워가 가용성 지지체와 함께 ìž‘ë™ í•˜ë ¤ë©´ 서í¬íЏ ë ˆì´ì–´ë¥¼ 오브ì íЏ ë ˆì´" "어와 ë™ê¸°í™” 해야 합니다." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10232,27 +10238,46 @@ msgstr "" "ì—ë§Œ 비가용성 서í¬íŠ¸ë¥¼ ì§€ì› í•©ë‹ˆë‹¤. (support_material_extruderê³¼ " "support_material_interface_extruder ëª¨ë‘ 0으로 설정 해야 합니다.)" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "첫번째 ë ˆì´ì–´ì˜ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "ë ˆì´ì–´ 채우기" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G코드 내보내기" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G 코드 ìƒì„±" diff --git a/resources/localization/nl/PrusaSlicer_nl.po b/resources/localization/nl/PrusaSlicer_nl.po index 54971091a5..fe5d587099 100644 --- a/resources/localization/nl/PrusaSlicer_nl.po +++ b/resources/localization/nl/PrusaSlicer_nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-12-14 09:56+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -602,7 +602,7 @@ msgstr "Actief" msgid "PrusaSlicer version" msgstr "PrusaSlicer versie" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "print" @@ -610,17 +610,17 @@ msgstr "print" msgid "filaments" msgstr "filamenten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA-print" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA-materiaal" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "printer" @@ -679,7 +679,7 @@ msgstr "Standaard" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Alles" @@ -770,7 +770,7 @@ msgstr "SLA materialen" msgid "All installed printers are compatible with the selected %1%." msgstr "Alle geïnstalleerde printers zijn compatibel met de geselecteerde %1%." -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "filament" @@ -864,7 +864,7 @@ msgstr "" "update wordt toegepast." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Herlaad van schijf" @@ -1174,7 +1174,7 @@ msgstr "&Voltooi" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "Annuleren" @@ -1245,7 +1245,7 @@ msgstr "" "aangemaakt." #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "Desktopintegratie" @@ -1736,8 +1736,8 @@ msgid "parameter name" msgstr "parameternaam" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "n.v.t." @@ -1943,7 +1943,7 @@ msgstr "Voeg toe aan bed" msgid "Add selected shape(s) to the bed" msgstr "Voeg geselecteerd(e) object(en) toe aan bed" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Voeg toe" @@ -2150,7 +2150,7 @@ msgid "Wipe" msgstr "Afvegen" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Opties" @@ -2419,7 +2419,7 @@ msgid "Add..." msgstr "Voeg toe..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Verwijder alles" @@ -3352,7 +3352,7 @@ msgstr "Kritische fout" msgid "Internal error: %1%" msgstr "Interne fout: %1%" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3362,7 +3362,7 @@ msgstr "" "Probeer het bestand handmatig te verwijderen om de fout te herstellen. Uw " "gebruikersprofielen worden niet beïnvloed." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3370,12 +3370,12 @@ msgstr "" "Fout tijdens het lezen van PrusaGCodeViewer-configuratiebestand. Het is " "mogelijk beschadigd. Probeer het handmatig te verwijderen." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "U opent %1%, versie %2%." -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3394,7 +3394,7 @@ msgstr "" "In dat geval wordt uw actieve configuratie opgeslagen voor het importeren " "van de nieuwe configuratie." -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3406,19 +3406,19 @@ msgstr "" "aangemaakt door b>%1% %2%.\n" "Moet de nieuwe configuratie worden geïmporteerd?" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "Importeer" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "Niet importeren" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3434,7 +3434,7 @@ msgstr "" "https://www.prusa3d.com/prusaslicer/.\n" "Wilt u doorgaan?" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3443,46 +3443,46 @@ msgstr "" "%s\n" "Wilt u doorgaan?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Onthoud mijn keuze" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "Nieuwe release versie %1% is beschikbaar." -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "Zie downloadpagina." -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "Nieuwe pre-release versie %1% is beschikbaar." -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Zie Release-pagina." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "Instellingentab voorbereiden" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3495,23 +3495,23 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "Je hebt de volgende presets opgeslagen voor de printhost-uploadwachtrij" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3521,7 +3521,7 @@ msgstr "" "getoond in de printerinstellingen.\n" "Instellingen zijn beschikbaar in de fysieke printerinstellingen." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3531,138 +3531,138 @@ msgstr "" "Let op: deze naam kan later worden aangepast in de fysieke-" "printerinstellingen" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "Informatie" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Opnieuw aanmaken" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Laden van huidige presets" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Laden van de weergavemodus" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Kies een 3MF- of AMF-bestand:" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Kies één of meer STL-, OBJ-, AMF-, 3MF-, of PRUSA-bestanden:" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Kies een bestand (gcode/.GCO/.G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Veranderen van de taal van het programma" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Taalselectie" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Wijzig taal (change language)" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "aangepast" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "Voer %s uit" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "Configuratiesnapshots" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Inspecteer/activeer configuratiesnapshots" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Neem configuratiesnapshot" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Neem een configuratiesnapshot op" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "Controleer op configuratie-updates" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Controleer op configuratie-updates" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "Voorkeuren" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Programmavoorkeuren" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "Eenvoudig" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "Eenvoudige weergave" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "Geavanceerd" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "Geavanceerde weergave" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Expertweergave" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Modus" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s-weergavemodus" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "Wijzig taal (change language)" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "Flash printer firmware" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Upload een firmwarebestand op een Arduino-gebaseerde printer" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "Neemt een configuratiesnapshot" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." @@ -3670,32 +3670,32 @@ msgstr "" "Sommige presets zijn aangepast en onopgeslagen instellingen worden niet " "meegenomen bij de configuratiesnapshot." -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Snapshotnaam" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "Laad een configuratiesnapshot" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "Doorgaan om configuratiesnapshot %1% te activeren?" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "Activeren van configuratiesnapshot mislukt." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "Herstart programma" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Taalselectie" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3703,89 +3703,89 @@ msgstr "" "Het veranderen van de taal zorgt dat het programma opnieuw opstart.\n" "U verliest de geladen inhoud zoals getoond in de modelweergave." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "" "Weet u zeker dat u door wilt gaan?\n" "Do you want to proceed?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "Configuratie" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "De preset-aanpassing is succesvol opgeslagen" msgstr[1] "De presets-aanpassing is succesvol opgeslagen" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "Voor nieuwe projecten worden alle aanpassingen gereset" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "Laad een nieuw project terwijl het huidige project is aangepast." -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "Project is aan het laden" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "Openen van nieuw project terwijl sommige presets niet opgeslagen zijn." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "De uploads zijn nog bezig" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "Stop ze en ga toch door?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Lopende uploads" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" "Het is niet mogelijk meerdelige objecten te printen met de SLA-technologie." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "Controleer de objectenlijst voor het wijzigen van de preset." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "Configuratie is aangepast van de configuratiewizard" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Selecteer een gcode-bestand:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "Open hyperlinks in de standaardbrowser?" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "PrusaSlicer: Open hyperlink" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "Hyperlinks openen in browser uitzetten" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "PrusaSlicer onthoudt uw keuze." -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -3794,8 +3794,8 @@ msgstr "" "Ga naar Voorkeuren en controleer \"%1%\"\n" "om uw keuze te wijzigen." -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: vraag het niet nogmaals" @@ -3901,7 +3901,7 @@ msgstr "Skirt en brim" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3911,7 +3911,7 @@ msgid "Advanced" msgstr "Geavanceerd" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3925,8 +3925,8 @@ msgid "Supports" msgstr "Support" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3936,8 +3936,8 @@ msgstr "Support" msgid "Pad" msgstr "Basisplaat" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -4040,7 +4040,7 @@ msgstr "Exporteer als STL-bestand" msgid "Reload the selected volumes from disk" msgstr "Herlaad de geselecteerde volumes vanaf schijf" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "Vervang met STL" @@ -4066,19 +4066,19 @@ msgstr "Verschaal tot printvolume" msgid "Scale the selected object to fit the print volume" msgstr "Verschaal het geselecteerde object tot deze in het printvolume past" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Converteer naar Engelse eenheden" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Conversie van Engelse eenheden ongedaan maken" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "Converteer vanaf meters" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "Omrekenen van meters terugdraaien" @@ -4341,7 +4341,7 @@ msgstr "Laad bewerker" msgid "Loading" msgstr "Aan het laden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "Bestand laden" @@ -4781,7 +4781,7 @@ msgstr "Verwijder parameter" msgid "Delete Option %s" msgstr "Verwijder optie %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "Wijzig optie %s" @@ -4900,18 +4900,18 @@ msgstr "Toolmarkering" msgid "Legend/Estimated printing time" msgstr "Legenda / Geschatte printtijd" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "Meer" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "Open voorkeuren." -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "Open documentatie in de webbrowser." @@ -5077,11 +5077,11 @@ msgstr "" "Het geïmporteerde SLA-archief bevat geen presets. De huidige SLA-presets " "worden gebruikt als oplossing." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "U kunt geen SLA-project laden met een meerdelig object op het bed" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Attentie!" @@ -5127,11 +5127,11 @@ msgstr "" "Laad configuratie van INI-, AMF-, 3MF- of gcode-bestanden en voeg samen" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "Exporteer gcode-bestand" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "Stuur G-code" @@ -5522,7 +5522,7 @@ msgstr "Toon/verberg legenda en geschatte printtijd" msgid "Show/Hide G-code window" msgstr "Toon/verberg G-code venster" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "Sliceweergave" @@ -5640,29 +5640,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "PrusaSlicer sluit terwijl sommige presets aangepast zijn." #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Printinstellingen" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Materiaalinstellingen" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Filamentinstellingen" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Printerinstellingen" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "Zonder titel" @@ -6176,7 +6176,7 @@ msgid "Open New Instance" msgstr "Open nieuwe instantie" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "Vergelijk presets" @@ -6285,9 +6285,9 @@ msgstr "G-code" msgid "Save zip file as:" msgstr "ZIP-bestand opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Slicen" @@ -6555,7 +6555,7 @@ msgstr "Fout:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "Waarschuwing:" @@ -6581,8 +6581,8 @@ msgstr "Instanties" msgid "Instance %d" msgstr "Instantie %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Lagen" @@ -6859,12 +6859,12 @@ msgstr "Onder het object" msgid "Around object" msgstr "Rondom het object" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Stuur naar printer" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Slice nu" @@ -6973,7 +6973,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "Uitwerpen van apparat %s(%s) mislukt." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Nieuw project" @@ -6981,7 +6981,7 @@ msgstr "Nieuw project" msgid "Expand sidebar" msgstr "Zijbalk uitklappen" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6995,12 +6995,12 @@ msgstr[1] "" "De vorige presets zijn tijdelijk geïnstalleerd op de actieve instantie van " "PrusaSlicer" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "Laden van bestand \"%1%\" mislukt dankzij een ongeldige configuratie." -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -7015,11 +7015,11 @@ msgstr[1] "" "Objectengrootte van bestand %s blijken nul te zijn.\n" "Het object is verwijderd van het model" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "De afmetingen van het object zijn nul" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -7038,15 +7038,15 @@ msgstr[1] "" "De gebruikte eenheid van PrusaSlicer is millimeters. Wilt u de afmetingen " "van het object verschalen?" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "Het object is te klein" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "Pas toe op alle resterende kleine objecten die worden geladen." -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -7065,7 +7065,7 @@ msgstr[1] "" "De gebruikte eenheid van PrusaSlicer is millimeters. Wilt u de afmetingen " "van het object verschalen?" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" @@ -7076,11 +7076,11 @@ msgstr "" "Moet het bestand worden geladen als één object met meerdere onderdelen\n" "in plaats van deze te beschouwen als meerdere objecten?" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Meerdelig object gedetecteerd" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" @@ -7088,11 +7088,11 @@ msgstr "" "Dit bestand kan niet geladen worden in eenvoudige modus. Wilt u overstappen " "op geavanceerde modus?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "Geavanceerde data gedetecteerd" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -7101,7 +7101,7 @@ msgstr "" "U kan geen objecten toevoegen van %s, omdat sommige daarvan meerdelig kunnen " "zijn" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -7111,7 +7111,7 @@ msgstr "" "Moeten deze objecten beschouwd worden als één object\n" "met meerdere onderdelen, of als meerdere objecten?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7119,39 +7119,39 @@ msgstr "" "Het object is te groot. Daarom is het automatisch verschaald tot de grootte " "van het printbed." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Object te groot?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "Exporteer STL-bestand:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "Exporteer AMF-bestand:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "Exporteer OBJ-bestand:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Verwijder object" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "Verwijder alle objecten" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Reset project" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." @@ -7159,15 +7159,15 @@ msgstr "" "Het geselecteerde object kan niet gesplitst worden omdat het maar één " "onderdeel bevat." -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "Alle niet-solide onderdelen (bewerkers) zijn verwijderd" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Splits op naar objecten" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." @@ -7175,87 +7175,87 @@ msgstr "" "Een object heeft aangepaste supportforcering die niet gebruikt worden omdat " "supports uit staan." -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "Sta supports voor forceringen alleen toe" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Ongeldige data" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Een andere export loopt op dit moment." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "Vervangen door:" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "Niet mogelijk om te vervangen met meer dan één volume" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "Fout tijdens vervangen" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "Selecteer het nieuwe bestand" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "Vervangbestand is niet geselecteerd" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "Selecteer het bestand om te herladen" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "Het geselecteerde bestand" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "verschilt ten opzichte van het originele bestand" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "Wilt u het vervangen" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Herladen van:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "Niet in staat om te herladen:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "Fout tijdens herladen" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Herlaad alles van schijf" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "Er zijn actieve waarschuwingen wat betreft de slice:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "gegeven waarschuwingen" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D-bewerkingsweergave" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "Ongedaan maken / opnieuw doen wordt verwerkt" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7266,21 +7266,21 @@ msgstr "" "Sommige %1% presets zijn aangepast. Deze gaan verloren bij het wijzigen van " "het soort printer." -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "Een nieuw project aanmaken terwijl het huidige project is aangepast." -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "Een nieuw project aanmaken terwijl sommige presets zijn aangepast." -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" "U kunt de aanpassingen in de preset behouden bij het nieuwe project, of deze " "verwijderen" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" @@ -7291,126 +7291,126 @@ msgstr "" "Let op dat als de wijzigingen worden opgeslagen, deze niet bewaard worden in " "het nieuwe project" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "Maak een nieuw project aan" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Laad project" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Importeer object" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Importeer objecten" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "bevat geen geldige G-code." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "Probleem bij het laden van het gcode-bestand" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - Plaats projectbestand" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Open als project" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Importeer alleen het model" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Importeer alleen de configuratie" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Selecteer een commando om toe te passen op het bestand" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "Commando" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "Laat niet meer zien" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "Je kunt maar één gcode-bestand tegelijk openen." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "Versleep en plaats G-code-bestand" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Laad bestand" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Laad bestanden" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "Alle objecten worden verwijderd. Doorgaan?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Verwijder geselecteerde objecten" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Verhoog aantal instanties" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Verlaag aantal instanties" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Voer het aantal kopieën in:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "Kopieën van het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Stel aantal kopieën in voor %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Snij met behulp van vlak" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G-code-bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "SL1 / SL1S bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "De gegeven naam is niet geldig." -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" "De volgende karakters worden niet toegestaan in een FAT-bestandssysteem:" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" @@ -7418,15 +7418,15 @@ msgstr "" "Het bed is leeg.\n" "Wilt u toch het project opslaan?" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "Project opslaan" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "Exporteer" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." @@ -7434,14 +7434,14 @@ msgstr "" "Aangepaste supports, naden en multi-material schilderingen zijn verwijderd " "bij het repareren van de mesh." -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Plak van klembord" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Algemeen" @@ -7588,7 +7588,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7602,7 +7602,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7613,7 +7613,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -8169,12 +8169,12 @@ msgstr "Stuur G-code naar printerhost" msgid "Upload to Printer Host with the following filename:" msgstr "Upload naar printerhost met de volgende bestandsnaam:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" "Gebruik schuine streepjes ( / ) als mapscheidingstekens als dat nodig is." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Groep" @@ -8183,18 +8183,18 @@ msgstr "Groep" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "Bestandsnaam eindigt niet op \"%s\". Wilt u doorgaan?" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "Upload" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "Upload en print" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "Uploaden en simuleren" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "Upload" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8654,7 +8654,7 @@ msgstr "volledige profielnaam" msgid "symbolic profile name" msgstr "symbolische profielnaam" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Lagen en perimeters" @@ -8738,11 +8738,11 @@ msgstr "Overlapping" msgid "Flow" msgstr "Stroom" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Overige" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Output-opties" @@ -8754,11 +8754,11 @@ msgstr "Achtereenvolgens printen" msgid "Extruder clearance" msgstr "Extruderruimte" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Outputbestand" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Scripts voor nabewerking" @@ -8766,19 +8766,20 @@ msgstr "Scripts voor nabewerking" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Opmerkingen" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "Afhankelijkheden" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "Profielafhankelijkheden" @@ -8859,7 +8860,7 @@ msgid "Ramming settings" msgstr "Ramming-instellingen" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "Custom G-code" @@ -8906,8 +8907,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Grootte en coördinaten" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "Mogelijkheden" @@ -8976,11 +8977,11 @@ msgstr "Draaiing" msgid "Tilt time" msgstr "Draaitijd" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Correcties" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "Belichtingstijd" @@ -9158,42 +9159,46 @@ msgstr "Weet u zeker dat u de geselecteerde preset %1% wilt?" msgid "%1% Preset" msgstr "Preset %1%" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Stel in" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Zoeken" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Alleen hele woorden" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "Machinelimieten worden opgenomen in de G-code en gebruikt voor de geschatte " "printtijd." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9203,7 +9208,7 @@ msgstr "" "gebruikt om de printtijd te schatten, waardoor ze niet nauwkeurig kunnen " "zijn bij een printer met andere machinelimieten." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9211,12 +9216,12 @@ msgstr "" "Machinelimieten zijn niet ingesteld, waardoor de geschatte printtijd niet " "nauwkeurig is." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "Vergrendeld" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9224,12 +9229,12 @@ msgstr "" "geeft aan dat de instellingen gelijk zijn aan de systeemwaarden voor de " "huidige optiegroep" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "Ontgrendeld" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9241,12 +9246,12 @@ msgstr "" "Klik op het ontgrendeld-pictogram om de instelling te resetten naar de " "systeemwaarden voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "Wit bolletje" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9254,12 +9259,12 @@ msgstr "" "de linkerknop geeft aan dat het niet een systeempreset is,\n" "de rechterknop geeft aan of de instelling is gewijzigd." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "Pijltje terug" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9271,7 +9276,7 @@ msgstr "" "Klik op het pijltje-terug-pictogram om alle instellingen te resetten naar de " "laatst opgeslagen preset voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9279,7 +9284,7 @@ msgstr "" "Vergrendeld-pictogram geeft aan dat de instellingen gelijk zijn aan de " "systeemwaarde van de huidige optiegroep" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9291,11 +9296,11 @@ msgstr "" "Klik om alle instellingen voor de huidige optiegroep te resetten naar " "systeemwaarden." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Het witte bolletje geeft aan dat het geen systeempreset betreft." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9303,7 +9308,7 @@ msgstr "" "Het witte bolletje geeft aan dat de instelling gelijk is aan de laatst " "opgeslagen preset voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9316,14 +9321,14 @@ msgstr "" "Klik om alle instellingen terug te zetten voor de huidige optiegroep naar de " "laatst opgeslagen preset." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" "Vergrendeld-pictogram geeft aan dat de waarde gelijk is aan de systeemwaarde." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9333,7 +9338,7 @@ msgstr "" "aan de systeemwaarde.\n" "Klik om de huidige waarde te resetten naar de systeemwaarde." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9341,7 +9346,7 @@ msgstr "" "Het witte bolletje geeft aan dat de waarde gelijk is aan de laatst " "opgeslagen preset." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9351,31 +9356,31 @@ msgstr "" "gelijk is aan de laatst opgeslagen preset.\n" "Klik om de waarde te resetten naar de laatst opgeslagen preset." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Materiaal" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "Materiaal-printprofiel" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Supportkop" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Supportpijler" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "Verbindingen van de supporttakken en kruisingen" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Automatisch genereren" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9384,74 +9389,74 @@ msgstr "" "\"%1%\" is uitgeschakeld omdat \"%2%\" aanstaat in \"%3%\"-categorie.\n" "Om \"%1%\" aan te zetten moet \"%2%\" uit staan" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Objectverhoging" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Basisplaat rondom object" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Ongedefinieerd" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "Onopgeslagen wijzigingen" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "Wisselen van presets: niet-opgeslagen wijzigingen" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Oude waarde" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Nieuwe waarde" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "Behoud" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "Omzetten" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "Niet opslaan" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Afwijzen" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Opslaan" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9459,11 +9464,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "PrusaSlicer onthoudt je keuze." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9472,56 +9477,57 @@ msgstr "" "Kijk naar \"Voorkeuren\" en check \"%1%\"\n" "om weer te vragen over niet-opgeslagen wijzigingen." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "Sommige velden zijn te lang om te passen. Rechtermuisklik toont de volledige " "tekst." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "Alle gewijzigde instellingen worden niet opgeslagen" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "Gewijzigde instellingen worden niet opgeslagen." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "Geselecteerde opties opslaan." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "Behoud de geselecteerde instellingen." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "Ze de geselecteerde instelling om in de nieuw geselecteerde preset." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "Geselecteerde opties voor preset \"%1%\" opslaan." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" "Zet de geselecteerde optie om in de nieuw geselecteerde preset \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "De volgende preset is aangepast" msgstr[1] "De volgende presets zijn aangepast" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "Preset \"%1%\" heeft de volgende niet-opgeslagen wijzigingen:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9530,7 +9536,7 @@ msgstr "" "Preset \"%1%\" is niet geschikt voor het nieuwe printerprofiel en heeft de " "volgende niet-opgeslagen wijzigingen:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9539,40 +9545,40 @@ msgstr "" "Preset \"%1%\" is niet geschikt voor het nieuwe printprofiel en heeft de " "volgende niet-opgeslagen wijzigingen:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "Aantal extruders" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "Toon alle presets (inclusief incompatibele)" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "Linker presetwaarde" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "Rechter presetwaarde" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "Een van de presets niet gevonden" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "Vergeleken presets hebben verschillende soorten printers" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "Presets zijn gelijk" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." @@ -9581,11 +9587,11 @@ msgstr "" "Klik op deze knop om dezelfde preset te selecteren voor de rechter en linker " "preset." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "Ongedefinieerde categorie" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "Ongedefinieerde groep" @@ -10446,28 +10452,28 @@ msgstr "validatie mislukt" msgid "write calledback failed" msgstr "terugschrijven mislukt" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Alle objecten bevinden zich buiten het printvolume." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "De ingevoerde instellingen resulteren in een lege print." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "Sommige objecten staan te dicht op elkaar. De extruder zal er tegenaan " "botsen." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Sommige objecten zijn te groot en kunnen niet geprint worden zonder " "botsingen." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10477,14 +10483,14 @@ msgstr "" "alle objecten op één na, of sta achtereenvolgens printen toe bij " "\"complete_objects\"." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" "De spiraalmodus kan alleen gebruikt worden met enkel-materiaal objecten." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10492,7 +10498,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt als alle extruders dezelfde nozzle- " "en filamentdiameter hebben." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10500,7 +10506,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor Marlin, RepRap/Sprinter, " "RepRapFirmware en Repetier firmwaretypes." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10508,19 +10514,19 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt met de relatieve extruderinstelling " "('use_relative_e_distances' = 1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "Druippreventie wordt niet ondersteund als het afveegblok is geactiveerd." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "Het afveegblok niet ondersteunt bij volumetrische extrusiewaarden " "('use_volumetric_e' = 0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10528,7 +10534,7 @@ msgstr "" "Het afveegblok wordt momenteel niet ondersteund voor multi-materiaal " "achtereenvolgens printen." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10536,7 +10542,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als deze een " "gelijke laagdikte hebben" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10544,7 +10550,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als deze op " "een gelijk aantal raftlagen zijn geplaatst" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10552,7 +10558,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als de " "instelling 'support_material_contact_distance' gelijk staat" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10560,7 +10566,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als ze " "tegelijk gesliced worden." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10568,24 +10574,24 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt als alle objecten dezelfde variabele " "laagdikte hebben" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Een of meer objecten staan ingesteld op een extruder die de printer niet " "heeft." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm is te weinig om te printen bij een laagdikte van %3% mm" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Te veel %1%=%2% mm om te printen met een nozzlediameter van %3% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10597,7 +10603,7 @@ msgstr "" "dezelfde diameter hebben ('support_material_extruder' = 0 of " "'support_material_interface_extruder' = 0)." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10605,7 +10611,7 @@ msgstr "" "Om het afveegblok te laten samenwerken met oplosbare support, moeten de " "supportlagen gesynchroniseerd worden met de objectlagen." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10616,28 +10622,47 @@ msgstr "" "worden met de huidige extruder zonder toolwissel (Zet zowel " "'support_material_extruder' en 'support_material_interface_extruder' op 0)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "" "Laagdikte van de eerste laag kan niet groter zijn dan de nozzlediameter" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "Laagdikte kan niet groter zijn dan de nozzlediameter" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Vullingslagen" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "Genereer skirt en brim" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G-code exporteren" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G-code genereren" diff --git a/resources/localization/pl/PrusaSlicer.mo b/resources/localization/pl/PrusaSlicer.mo index 4fc3443343..8172f0f752 100644 Binary files a/resources/localization/pl/PrusaSlicer.mo and b/resources/localization/pl/PrusaSlicer.mo differ diff --git a/resources/localization/pl/PrusaSlicer_pl.po b/resources/localization/pl/PrusaSlicer_pl.po index c5bf7bfd48..3cff5ff826 100644 --- a/resources/localization/pl/PrusaSlicer_pl.po +++ b/resources/localization/pl/PrusaSlicer_pl.po @@ -7,7 +7,7 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n" "%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n" "%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n" -"X-Generator: Phrase (phrase.com)\n" +"X-Generator: Prusalator\n" #: src/slic3r/GUI/Tab.cpp:4707 #, boost-format @@ -18,6 +18,22 @@ msgstr "" "\"%1%\" jest wyłączony ponieważ \"%2%\" znajduje siÄ™ w kategorii \"%3%\".\n" "Aby włączyć \"%1%\", wyłącz \"%2%\"." +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"Odnaleziono \"G92 E0\" w kodzie before_layer_gcode, co jest niekompatybilne " +"z bezwzglÄ™dnym adresowaniem ekstrudera." + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"Odnaleziono \"G92 E0\" w kodzie layer_gcode, co jest niekompatybilne z " +"wzglÄ™dnym adresowaniem ekstrudera." + #: src/libslic3r/PrintConfig.cpp:464 src/libslic3r/PrintConfig.cpp:1087 #: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1751 #: src/libslic3r/PrintConfig.cpp:1814 src/libslic3r/PrintConfig.cpp:2065 @@ -134,6 +150,12 @@ msgstr[1] "%1% (%2$d powÅ‚ok)" msgstr[2] "%1% (%2$d powÅ‚ok)" msgstr[3] "%1% (%2$d powÅ‚ok)" +#. TRN Remove/Delete +#: src/slic3r/GUI/Tab.cpp:3736 +#, boost-format +msgid "%1% Preset" +msgstr "%1% Zestaw ustawieÅ„" + #: src/slic3r/GUI/ConfigWizard.cpp:752 #, boost-format msgid "" @@ -143,12 +165,6 @@ msgstr "" "%1% oznaczone symbolem * sÄ… niekompatybilne z niektórymi " "zainstalowanymi drukarkami." -#. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3736 -#, boost-format -msgid "%1% Preset" -msgstr "%1% Zestaw ustawieÅ„" - #: src/slic3r/GUI/GUI.cpp:317 #, boost-format msgid "%1% was substituted with %2%" @@ -210,6 +226,16 @@ msgstr "%s - BREAKING CHANGE" msgid "%s - Drop project file" msgstr "%s - Upuść plik projektu" +#: src/slic3r/GUI/ConfigWizard.cpp:550 +#, c-format, boost-format +msgid "%s Family" +msgstr "Rodzina %s" + +#: src/slic3r/GUI/GUI_App.cpp:2245 +#, c-format, boost-format +msgid "%s View Mode" +msgstr "Tryb %s" + #: src/slic3r/GUI/UpdateDialogs.cpp:213 #, c-format, boost-format msgid "%s configuration is incompatible" @@ -225,11 +251,6 @@ msgstr "%s nie może być wartoÅ›ciÄ… procentowÄ…" msgid "%s error" msgstr "błąd %s" -#: src/slic3r/GUI/ConfigWizard.cpp:550 -#, c-format, boost-format -msgid "%s Family" -msgstr "Rodzina %s" - #: src/slic3r/GUI/MsgDialog.cpp:233 #, c-format, boost-format msgid "%s has a warning" @@ -240,6 +261,17 @@ msgstr "%s ma ostrzeżenie" msgid "%s has encountered an error" msgstr "%s napotkaÅ‚ błąd" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 +#, c-format, boost-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. " +"If you are sure you have enough RAM on your system, this may also be a bug " +"and we would be glad if you reported it." +msgstr "" +"Błąd %s . Prawdopodobnie wystÄ…piÅ‚ przez brak pamiÄ™ci. JeÅ›li masz pewność, że " +"ilość RAMu jest wystarczajÄ…ca, to może to być bug, a którego zgÅ‚oszenie " +"bÄ™dziemy wdziÄ™czni." + #: src/slic3r/GUI/GUI_App.cpp:698 #, c-format, boost-format msgid "" @@ -255,17 +287,6 @@ msgstr "" "\n" "Aplikacja zostanie zamkniÄ™ta." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:79 -#, c-format, boost-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. " -"If you are sure you have enough RAM on your system, this may also be a bug " -"and we would be glad if you reported it." -msgstr "" -"Błąd %s . Prawdopodobnie wystÄ…piÅ‚ przez brak pamiÄ™ci. JeÅ›li masz pewność, że " -"ilość RAMu jest wystarczajÄ…ca, to może to być bug, a którego zgÅ‚oszenie " -"bÄ™dziemy wdziÄ™czni." - #: src/slic3r/GUI/UpdateDialogs.cpp:304 #, c-format, boost-format msgid "%s has no configuration updates available." @@ -313,11 +334,6 @@ msgstr "" "Kontynuuj do %s , które pozwoli ustawić nowe Zestawy i wybrać automatycznÄ… " "aktualizacjÄ™ wbudowanych Zestawów." -#: src/slic3r/GUI/GUI_App.cpp:2245 -#, c-format, boost-format -msgid "%s View Mode" -msgstr "Tryb %s" - #: src/slic3r/GUI/MsgDialog.cpp:232 #, c-format, boost-format msgid "%s warning" @@ -472,22 +488,14 @@ msgstr "&Okno" msgid "(All)" msgstr "(Wszystko)" -#: src/slic3r/GUI/Plater.cpp:1401 -msgid "(including spool)" -msgstr "(wliczajÄ…c szpulÄ™)" - -#: src/libslic3r/PrintConfig.cpp:1985 -msgid "(minimum)" -msgstr "(minimum)" +#: src/slic3r/GUI/MainFrame.cpp:1293 +msgid "(Re)Slice No&w" +msgstr "(Pono&wne) CiÄ™cie" #: src/slic3r/GUI/KBShortcutsDialog.cpp:81 msgid "(Re)slice" msgstr "(Ponowne) CiÄ™cie" -#: src/slic3r/GUI/MainFrame.cpp:1293 -msgid "(Re)Slice No&w" -msgstr "(Pono&wne) CiÄ™cie" - #: src/libslic3r/GCode.cpp:573 msgid "(Some lines not shown)" msgstr "(Niektórych linii nie pokazano)" @@ -496,6 +504,14 @@ msgstr "(Niektórych linii nie pokazano)" msgid "(Unknown)" msgstr "(Nieznane)" +#: src/slic3r/GUI/Plater.cpp:1401 +msgid "(including spool)" +msgstr "(wliczajÄ…c szpulÄ™)" + +#: src/libslic3r/PrintConfig.cpp:1985 +msgid "(minimum)" +msgstr "(minimum)" + #: src/slic3r/GUI/MainFrame.cpp:1625 msgid ") not found." msgstr ") nie znaleziono." @@ -556,10 +572,6 @@ msgstr "3 (ciężki)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4438 -msgid "3D editor view" -msgstr "Edytowanie 3D" - #: src/libslic3r/PrintConfig.cpp:1153 msgid "3D Honeycomb" msgstr "Plaster miodu 3D" @@ -568,6 +580,10 @@ msgstr "Plaster miodu 3D" msgid "3D Mouse disconnected." msgstr "Odłączono 3D Mouse." +#: src/slic3r/GUI/Plater.cpp:4438 +msgid "3D editor view" +msgstr "Edytowanie 3D" + #: src/slic3r/GUI/Mouse3DController.cpp:453 msgid "3Dconnexion settings" msgstr "Ustawienia 3Dconnexion" @@ -608,10 +624,6 @@ msgstr "" "Zostanie utworzona kopia obecnego zestawu ustawieÅ„ i odłączona od ustawieÅ„ " "systemowych." -#: src/slic3r/GUI/ConfigWizard.cpp:2717 -msgid "A new filament was installed and it will be activated." -msgstr "Zainstalowano nowy filament i zostanie on aktywowany." - #: src/slic3r/GUI/ConfigWizard.cpp:2691 msgid "A new Printer was installed and it will be activated." msgstr "Zainstalowano nowÄ… drukarkÄ™ i zostanie ona aktywowana." @@ -620,6 +632,10 @@ msgstr "Zainstalowano nowÄ… drukarkÄ™ i zostanie ona aktywowana." msgid "A new SLA material was installed and it will be activated." msgstr "Zainstalowano nowy materiaÅ‚ SLA i zostanie on aktywowany." +#: src/slic3r/GUI/ConfigWizard.cpp:2717 +msgid "A new filament was installed and it will be activated." +msgstr "Zainstalowano nowy filament i zostanie on aktywowany." + #: src/slic3r/GUI/ConfigWizard.cpp:2596 msgid "A new vendor was installed and one of its printers will be activated" msgid_plural "" @@ -664,6 +680,14 @@ msgstr "" msgid "A toolpath outside the print area was detected." msgstr "Wykryto Å›cieżkÄ™ narzÄ™dzia poza obszarem roboczym." +#: src/libslic3r/PrintConfig.cpp:291 +msgid "API Key / Password" +msgstr "Klucz API / hasÅ‚o" + +#: src/libslic3r/PrintConfig.cpp:351 +msgid "API key" +msgstr "Klucz API" + #: src/slic3r/Config/Snapshot.cpp:601 msgid "Abort" msgstr "Przerwij" @@ -673,10 +697,6 @@ msgstr "Przerwij" msgid "About %s" msgstr "O %s" -#: src/slic3r/GUI/GCodeViewer.cpp:3182 -msgid "above" -msgstr "ponad" - #: src/libslic3r/PrintConfig.cpp:2161 msgid "Above Z" msgstr "Powyżej Z" @@ -709,10 +729,6 @@ msgstr "Aktywacja" msgid "Active" msgstr "Aktywny" -#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 -msgid "active" -msgstr "aktywny" - #: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Adaptive" msgstr "Adaptacyjny" @@ -743,6 +759,60 @@ msgid "Add \"%1%\" as a next preset for the the physical printer \"%2%\"" msgstr "" "Dodaj \"%1%\" jako kolejny zestaw ustawieÅ„ dla fizycznej drukarki \"%2%\"" +#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 +msgid "Add Generic Subobject" +msgstr "Dodaj Standardowy Model PodrzÄ™dny" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 +msgid "Add Height Range" +msgstr "Dodaj zakres wysokoÅ›ci" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Add Instance of the selected object" +msgstr "Dodaj instancjÄ™ wybranego modelu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 +msgid "Add Layers" +msgstr "Dodaj Warstwy" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 +msgid "Add Settings Bundle for Height range" +msgstr "Dodaj paczkÄ™ ustawieÅ„ dla zakresu wysokoÅ›ci" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 +msgid "Add Settings Bundle for Object" +msgstr "Dodaj paczkÄ™ ustawieÅ„ dla modelu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 +msgid "Add Settings Bundle for Sub-object" +msgstr "Dodaj paczkÄ™ ustawieÅ„ dla modelu podrzÄ™dnego" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 +msgid "Add Settings for Layers" +msgstr "Dodaj ustawienia dla warstw" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 +msgid "Add Settings for Object" +msgstr "Dodaj ustawienia dla modelu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 +msgid "Add Settings for Sub-object" +msgstr "Dodaj ustawienia dla modelu podrzÄ™dnego" + +#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 +msgid "Add Shape" +msgstr "Dodaj ksztaÅ‚t" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shape from Gallery" +msgstr "Dodaj KsztaÅ‚t z Galerii" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 +msgid "Add Shapes from Gallery" +msgstr "Dodaj KsztaÅ‚ty z Galerii" + #: src/libslic3r/PrintConfig.cpp:3607 msgid "Add a pad underneath the supported model" msgstr "Dodaj podkÅ‚adkÄ™ pod podporami modelu" @@ -812,33 +882,15 @@ msgstr "Dodaj zmianÄ™ ekstrudera - kliknij lewym przyciskiem" msgid "Add extruder to sequence" msgstr "Dodaj ekstruder do sekwencji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1638 -msgid "Add Generic Subobject" -msgstr "Dodaj Standardowy Model PodrzÄ™dny" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3010 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3038 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3058 -msgid "Add Height Range" -msgstr "Dodaj zakres wysokoÅ›ci" - #: src/slic3r/GUI/GLCanvas3D.cpp:4541 src/slic3r/GUI/GUI_Factories.cpp:1084 #: src/slic3r/GUI/GUI_Factories.cpp:1108 src/slic3r/GUI/GUI_Factories.cpp:1119 msgid "Add instance" msgstr "Dodaj instancjÄ™" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 -msgid "Add Instance of the selected object" -msgstr "Dodaj instancjÄ™ wybranego modelu" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:164 msgid "Add layer range" msgstr "Dodaj zakres warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2260 -msgid "Add Layers" -msgstr "Dodaj Warstwy" - #: src/slic3r/GUI/GUI_Factories.cpp:162 msgid "Add modifier" msgstr "Dodaj modyfikator" @@ -898,42 +950,6 @@ msgstr "Dodaj wybrany ksztaÅ‚t(y) do stoÅ‚u" msgid "Add settings" msgstr "Dodaj ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1339 -msgid "Add Settings Bundle for Height range" -msgstr "Dodaj paczkÄ™ ustawieÅ„ dla zakresu wysokoÅ›ci" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1341 -msgid "Add Settings Bundle for Object" -msgstr "Dodaj paczkÄ™ ustawieÅ„ dla modelu" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1340 -msgid "Add Settings Bundle for Sub-object" -msgstr "Dodaj paczkÄ™ ustawieÅ„ dla modelu podrzÄ™dnego" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1298 -msgid "Add Settings for Layers" -msgstr "Dodaj ustawienia dla warstw" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1300 -msgid "Add Settings for Object" -msgstr "Dodaj ustawienia dla modelu" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1299 -msgid "Add Settings for Sub-object" -msgstr "Dodaj ustawienia dla modelu podrzÄ™dnego" - -#: src/slic3r/GUI/GUI_Factories.cpp:901 src/slic3r/GUI/GUI_ObjectList.cpp:1696 -msgid "Add Shape" -msgstr "Dodaj ksztaÅ‚t" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shape from Gallery" -msgstr "Dodaj KsztaÅ‚t z Galerii" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1727 -msgid "Add Shapes from Gallery" -msgstr "Dodaj KsztaÅ‚ty z Galerii" - #: src/libslic3r/PrintConfig.cpp:686 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -988,14 +1004,14 @@ msgstr "Dodaj/usuÅ„ zestawy ustawieÅ„" msgid "Add/Remove printers" msgstr "Dodaj/usuÅ„ drukarki" -#: src/slic3r/GUI/Tab.cpp:1369 -msgid "Additional information:" -msgstr "Dodatkowe informacje:" - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:63 msgid "Additional Settings" msgstr "Ustawienia dodatkowe" +#: src/slic3r/GUI/Tab.cpp:1369 +msgid "Additional information:" +msgstr "Dodatkowe informacje:" + #: src/slic3r/GUI/ConfigWizard.cpp:1236 msgid "" "Additionally a backup snapshot of the whole configuration is created before " @@ -1008,26 +1024,19 @@ msgstr "" msgid "Address" msgstr "Adres" -#: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 -#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 -#: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4661 -#: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 -#: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 -#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 -#: src/libslic3r/PrintConfig.cpp:2490 src/libslic3r/PrintConfig.cpp:3028 -#: src/libslic3r/PrintConfig.cpp:3224 +#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 +msgctxt "Mode" msgid "Advanced" -msgstr "Zaawansowane" - -#: src/slic3r/GUI/ConfigWizard.cpp:1280 -msgid "Advanced mode" -msgstr "Tryb Zaawansowany" +msgstr "Zaawansowany" #: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Advanced View Mode" msgstr "Widok Zaawansowany" +#: src/slic3r/GUI/ConfigWizard.cpp:1280 +msgid "Advanced mode" +msgstr "Tryb Zaawansowany" + #: src/slic3r/GUI/FirmwareDialog.cpp:851 msgid "Advanced: Output log" msgstr "Zaawansowane: log wyjÅ›ciowy" @@ -1052,14 +1061,14 @@ msgstr "" msgid "After layer change G-code" msgstr "G-code wykonywany po zmianie warstwy" -#: src/libslic3r/PrintConfig.cpp:4322 -msgid "Align the model to the given point." -msgstr "Wyrównaj model z danym punktem." - #: src/libslic3r/PrintConfig.cpp:4321 msgid "Align XY" msgstr "Wyrównaj XY" +#: src/libslic3r/PrintConfig.cpp:4322 +msgid "Align the model to the given point." +msgstr "Wyrównaj model z danym punktem." + #: src/libslic3r/PrintConfig.cpp:2223 msgid "Aligned" msgstr "Wyrównany" @@ -1123,10 +1132,6 @@ msgstr "Wszystkie zestawy ustawieÅ„ użytkownika zostanÄ… usuniÄ™te" msgid "All walls" msgstr "Wszystkie Å›ciany" -#: src/libslic3r/miniz_extension.cpp:121 -msgid "allocation failed" -msgstr "niepowodzenie alokacji" - #: src/slic3r/GUI/Preferences.cpp:208 src/slic3r/GUI/Preferences.cpp:212 msgid "Allow just a single PrusaSlicer instance" msgstr "Zezwalaj tylko na pojedynczÄ… instancjÄ™ PrusaSlicer" @@ -1219,6 +1224,10 @@ msgstr "" "Obiekt posiada niestandardowe modyfikatory wymuszajÄ…ce podpory, które nie " "bÄ™dÄ… używane, ponieważ generowanie podpór jest wyłączone." +#: src/slic3r/GUI/GLCanvas3D.cpp:6367 +msgid "An object outside the print area was detected." +msgstr "Wykryto model poza obszarem roboczym." + #: src/slic3r/GUI/GLCanvas3D.cpp:6372 msgid "" "An object outside the print area was detected.\n" @@ -1227,10 +1236,6 @@ msgstr "" "Wykryto model poza obszarem roboczym.\n" "Rozwiąż problem, aby kontynuować ciÄ™cie." -#: src/slic3r/GUI/GLCanvas3D.cpp:6367 -msgid "An object outside the print area was detected." -msgstr "Wykryto model poza obszarem roboczym." - #: src/slic3r/GUI/Jobs/PlaterJob.cpp:13 msgid "An unexpected error occured" msgstr "WystÄ…piÅ‚ nieoczekiwany błąd" @@ -1251,14 +1256,6 @@ msgstr "" "Każda modyfikacja powinna zostać zapisana jako nowy zestaw ustawieÅ„ " "dziedziczony z obecnego." -#: src/libslic3r/PrintConfig.cpp:351 -msgid "API key" -msgstr "Klucz API" - -#: src/libslic3r/PrintConfig.cpp:291 -msgid "API Key / Password" -msgstr "Klucz API / hasÅ‚o" - #: src/slic3r/GUI/GUI_App.cpp:2232 msgid "Application preferences" msgstr "Preferencje aplikacji" @@ -1281,18 +1278,10 @@ msgstr "Automatycznie stosuj zmianÄ™ koloru" msgid "Apply to all the remaining small objects being loaded." msgstr "Zastosuj do wszystkich pozostaÅ‚ych maÅ‚ych obiektów, które sÄ… Å‚adowane." -#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 -msgid "approximate seconds" -msgstr "szacowane sekundy" - #: src/libslic3r/PrintConfig.cpp:709 src/libslic3r/PrintConfig.cpp:1156 msgid "Archimedean Chords" msgstr "Spirala Archimedesa" -#: src/libslic3r/miniz_extension.cpp:147 -msgid "archive is too large" -msgstr "archiwum jest zbyt duże" - #: src/slic3r/GUI/Tab.cpp:3731 #, boost-format msgid "Are you sure you want to %1% the selected preset?" @@ -1324,6 +1313,10 @@ msgstr "" msgid "Are you sure you want to delete \"%1%\" printer?" msgstr "Czy na pewno chcesz usunąć drukarkÄ™ \"%1%\"?" +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "Czy na pewno chcesz usunąć wszystkie zamienniki?" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1132 msgid "Are you sure you want to do it?" msgstr "Czy na pewno chcesz to zrobić?" @@ -1577,14 +1570,22 @@ msgstr "Wycofaj przy nieznanej konfiguracji" msgid "Balanced" msgstr "Zbalansowana" -#: src/slic3r/GUI/MainFrame.cpp:655 -msgid "based on Slic3r" -msgstr "bazuje na projekcie Slic3r" - #: src/slic3r/GUI/Tab.cpp:1989 msgid "Bed" msgstr "Stół" +#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape" +msgstr "KsztaÅ‚t stoÅ‚u" + +#: src/slic3r/GUI/ConfigWizard.cpp:1396 +msgid "Bed Shape and Size" +msgstr "KsztaÅ‚t i rozmiar stoÅ‚u roboczego" + +#: src/slic3r/GUI/ConfigWizard.cpp:1581 +msgid "Bed Temperature:" +msgstr "Temperatura stoÅ‚u:" + #: src/libslic3r/PrintConfig.cpp:241 msgid "Bed custom model" msgstr "WÅ‚asny model stoÅ‚u" @@ -1601,18 +1602,10 @@ msgstr "Anulowano wypeÅ‚nianie stoÅ‚u." msgid "Bed filling done." msgstr "WypeÅ‚nianie stoÅ‚u zakoÅ„czone." -#: src/slic3r/GUI/BedShapeDialog.hpp:95 src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape" -msgstr "KsztaÅ‚t stoÅ‚u" - #: src/libslic3r/PrintConfig.cpp:231 msgid "Bed shape" msgstr "KsztaÅ‚t stoÅ‚u" -#: src/slic3r/GUI/ConfigWizard.cpp:1396 -msgid "Bed Shape and Size" -msgstr "KsztaÅ‚t i rozmiar stoÅ‚u roboczego" - #: src/libslic3r/PrintConfig.cpp:396 msgid "Bed temperature" msgstr "Temperatura stoÅ‚u" @@ -1625,10 +1618,6 @@ msgstr "" "Temperatura stoÅ‚u dla warstw powyżej pierwszej. Ustaw 0, aby wyłączyć " "kontrolowanie temperatury w pliku wyjÅ›ciowym." -#: src/slic3r/GUI/ConfigWizard.cpp:1581 -msgid "Bed Temperature:" -msgstr "Temperatura stoÅ‚u:" - #: src/slic3r/GUI/Tab.cpp:2422 src/libslic3r/GCode.cpp:709 #: src/libslic3r/PrintConfig.cpp:402 msgid "Before layer change G-code" @@ -1638,14 +1627,14 @@ msgstr "G-code wykonywany przed zmianÄ… warstwy" msgid "Before roll back" msgstr "Przez zmianÄ…" -#: src/slic3r/GUI/Plater.cpp:579 -msgid "Below object" -msgstr "Pod modelem" - #: src/libslic3r/PrintConfig.cpp:2170 msgid "Below Z" msgstr "Poniżej Z" +#: src/slic3r/GUI/Plater.cpp:579 +msgid "Below object" +msgstr "Pod modelem" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:21 msgid "Best surface quality" msgstr "Najlepsza jakość powierzchni" @@ -1685,13 +1674,14 @@ msgstr "Pojemność butelki" msgid "Bottle weight" msgstr "Waga butelki" -#. TRN To be shown in the main menu View->Bottom -#. TRN To be shown in Print Settings "Bottom solid layers" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:1121 src/libslic3r/PrintConfig.cpp:423 -#: src/libslic3r/PrintConfig.cpp:432 +#: src/slic3r/GUI/OptionsGroup.cpp:352 +msgctxt "Layers" msgid "Bottom" -msgstr "Dolne" +msgstr "Spód" + +#: src/slic3r/GUI/MainFrame.cpp:1121 +msgid "Bottom View" +msgstr "Widok od doÅ‚u" #: src/libslic3r/PrintConfig.cpp:2566 msgid "Bottom contact Z distance" @@ -1718,10 +1708,6 @@ msgstr "Dolna powÅ‚oka ma %1% mm gruboÅ›ci dla warstwy o wysokoÅ›ci %2% mm." msgid "Bottom solid layers" msgstr "Zwarte warstwy dolne" -#: src/slic3r/GUI/MainFrame.cpp:1121 -msgid "Bottom View" -msgstr "Widok od doÅ‚u" - #: src/slic3r/GUI/GUI_Factories.cpp:461 src/slic3r/GUI/GUI_Factories.cpp:501 #: src/slic3r/GUI/GUI_Factories.cpp:505 msgid "Box" @@ -1820,10 +1806,6 @@ msgstr "Rozmiar pÄ™dzla" msgid "Bucket fill" msgstr "Wiaderko z farbÄ…" -#: src/libslic3r/miniz_extension.cpp:141 -msgid "buffer too small" -msgstr "niewystarczajÄ…cy bufor" - #: src/slic3r/GUI/GUI_App.cpp:1660 msgid "" "But since this version of PrusaSlicer we don't show this information in " @@ -1847,18 +1829,30 @@ msgstr "" "DomyÅ›lnie nowe drukarki bÄ™dÄ… nazywane \"Printer N\" podczas tworzenia.\n" "Uwaga: można to zmienić później w ustawieniach fizycznych drukarki." -#: src/slic3r/GUI/PresetHints.cpp:191 -msgid "by the print profile maximum" -msgstr "maksimum zależny od profilu wydruku" +#: src/slic3r/GUI/NotificationManager.cpp:890 +msgid "CANCELED" +msgstr "ANULOWANE" + +#: src/slic3r/GUI/NotificationManager.cpp:895 +msgid "COMPLETED" +msgstr "ZAKOŃCZONE" + +#: src/libslic3r/miniz_extension.cpp:117 +msgid "CRC-32 check failed" +msgstr "Weryfikacja CRC-32 nie powiodÅ‚a siÄ™" + +#: src/slic3r/Utils/Http.cpp:91 +msgid "" +"CURL init has failed. PrusaSlicer will be unable to establish network " +"connections. See logs for additional details." +msgstr "" +"Niepowodzenie inicjalizacji CURL. PrusaSlicer nie bÄ™dzie w stanie nawiÄ…zać " +"połączenia przez sieć. Szczegóły w logach." #: src/slic3r/GUI/Preferences.cpp:314 msgid "Camera" msgstr "Widok" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 -msgid "Camera view" -msgstr "Widok kamery" - #: resources/data/hints.ini: [hint:Camera Views] msgid "" "Camera Views\n" @@ -1869,6 +1863,10 @@ msgstr "" "Czy wiesz, że możesz użyć klawiszy numerycznych 0-6, aby szybko " "przełączać siÄ™ miÄ™dzy predefiniowanymi kÄ…tami widoku?" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +msgid "Camera view" +msgstr "Widok kamery" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:322 msgid "Can't apply when proccess preview." msgstr "Nie można zastosować podczas przetwarzania podglÄ…du." @@ -1891,10 +1889,6 @@ msgstr "Anuluj wybrane" msgid "Cancel upload" msgstr "Anuluj przesyÅ‚anie" -#: src/slic3r/GUI/NotificationManager.cpp:890 -msgid "CANCELED" -msgstr "ANULOWANE" - #: src/slic3r/GUI/PrintHostDialogs.cpp:375 msgid "Cancelled" msgstr "Anulowano" @@ -1994,30 +1988,10 @@ msgstr "Pliki certyfikatów (*.crt, *.pem)|*.crt;*.pem|Wszystkie pliki|*.*" msgid "Change \"%1%\" to \"%2%\" for this physical printer \"%3%\"" msgstr "ZmieÅ„ \"%1%\" na \"%2%\" dla fizycznej drukarki \"%3%\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Change camera type (perspective, orthographic)" -msgstr "ZmieÅ„ rodzaj widoku (perspektywiczny/ortograficzny)" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 -msgid "Change drainage hole diameter" -msgstr "ZmieÅ„ Å›rednicÄ™ otworu odpÅ‚ywowego" - -#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 -msgid "Change extruder" -msgstr "Zmiana ekstrudera" - #: src/slic3r/GUI/GUI_ObjectList.cpp:616 msgid "Change Extruder" msgstr "ZmieÅ„ Ekstruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1613 -msgid "Change extruder (N/A)" -msgstr "ZmieÅ„ ekstruder (N/A)" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:722 -msgid "Change extruder color" -msgstr "ZmieÅ„ kolor ekstrudera" - #: src/slic3r/GUI/GUI_ObjectList.cpp:4267 msgid "Change Extruders" msgstr "ZmieÅ„ Ekstrudery" @@ -2031,6 +2005,26 @@ msgstr "ZmieÅ„ OpcjÄ™ %s" msgid "Change Part Type" msgstr "ZmieÅ„ Rodzaj Elementu" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +msgid "Change camera type (perspective, orthographic)" +msgstr "ZmieÅ„ rodzaj widoku (perspektywiczny/ortograficzny)" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:666 +msgid "Change drainage hole diameter" +msgstr "ZmieÅ„ Å›rednicÄ™ otworu odpÅ‚ywowego" + +#: src/slic3r/GUI/DoubleSlider.cpp:1612 src/slic3r/GUI/GUI_Factories.cpp:740 +msgid "Change extruder" +msgstr "Zmiana ekstrudera" + +#: src/slic3r/GUI/DoubleSlider.cpp:1613 +msgid "Change extruder (N/A)" +msgstr "ZmieÅ„ ekstruder (N/A)" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:722 +msgid "Change extruder color" +msgstr "ZmieÅ„ kolor ekstrudera" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:702 msgid "Change point head diameter" msgstr "ZmieÅ„ Å›rednicÄ™ łącznika" @@ -2067,6 +2061,10 @@ msgstr "" "Zmiana niektórych opcji spowoduje ponowne uruchomienie aplikacji.\n" "Utracisz zawartość stoÅ‚u." +#: src/slic3r/GUI/GUI_App.cpp:2219 +msgid "Check for Configuration Updates" +msgstr "Sprawdź aktualizacje konfiguracji" + #: src/slic3r/GUI/ConfigWizard.cpp:1214 msgid "Check for application updates" msgstr "Sprawdź aktualizacje aplikacji" @@ -2075,9 +2073,9 @@ msgstr "Sprawdź aktualizacje aplikacji" msgid "Check for configuration updates" msgstr "Sprawdzaj aktualizacje konfiguracji" -#: src/slic3r/GUI/GUI_App.cpp:2219 -msgid "Check for Configuration Updates" -msgstr "Sprawdź aktualizacje konfiguracji" +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 +msgid "Choose SLA archive:" +msgstr "Wybierz archiwum SLA:" #: src/slic3r/GUI/BedShapeDialog.cpp:552 msgid "Choose a file to import bed texture from (PNG/SVG):" @@ -2095,6 +2093,10 @@ msgstr "Wybierz plik STL, z którego ma być zaimportowany model stoÅ‚u:" msgid "Choose an STL file to import bed shape from:" msgstr "Wybierz plik STL, z którego ma być zaimportowany ksztaÅ‚t stoÅ‚u:" +#: src/slic3r/GUI/GalleryDialog.cpp:453 +msgid "Choose one PNG file:" +msgstr "Wybierz jeden plik PNG:" + #: src/slic3r/GUI/GUI_App.cpp:1836 msgid "Choose one file (3MF/AMF):" msgstr "Wybierz jeden plik (3MF/AMF):" @@ -2111,14 +2113,6 @@ msgstr "Wybierz jeden lub wiÄ™cej plików (STL, OBJ):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wybierz jeden lub wiÄ™cej plików (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GalleryDialog.cpp:453 -msgid "Choose one PNG file:" -msgstr "Wybierz jeden plik PNG:" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:36 -msgid "Choose SLA archive:" -msgstr "Wybierz archiwum SLA:" - #: src/slic3r/GUI/ConfigWizard.cpp:1361 msgid "Choose the type of firmware used by your printer." msgstr "Wybierz rodzaj firmware używanego przez TwojÄ… drukarkÄ™." @@ -2133,10 +2127,6 @@ msgstr "KoÅ‚o" msgid "Circular" msgstr "OkrÄ…gÅ‚y" -#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 -msgid "Clear all" -msgstr "Wyczyść wszystko" - #: src/slic3r/GUI/Preferences.cpp:295 msgid "Clear Undo / Redo stack on new project" msgstr "Wyczyść stos akcji Cofnij / Ponów w nowym projekcie" @@ -2148,6 +2138,10 @@ msgstr "" "Wyczyść stos akcji Cofnij / Ponów w nowym projekcie lub gdy obecny projekt " "jest wczytywany." +#: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:121 +msgid "Clear all" +msgstr "Wyczyść wszystko" + #: src/slic3r/GUI/GLCanvas3D.cpp:4689 src/slic3r/GUI/GLCanvas3D.cpp:4728 msgid "Click right mouse button to open/close History" msgstr "Kliknij prawym przyciskiem myszy, aby otworzyć/zamknąć historiÄ™" @@ -2200,11 +2194,6 @@ msgstr "Zamknij" msgid "Close holes" msgstr "Zamknij otwory" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 -#: src/libslic3r/PrintConfig.cpp:3759 -msgid "Closing distance" -msgstr "Dystans domykania" - #: src/slic3r/GUI/MainFrame.cpp:232 msgid "Closing PrusaSlicer while some presets are modified." msgstr "" @@ -2214,6 +2203,11 @@ msgstr "" msgid "Closing PrusaSlicer. Current project is modified." msgstr "Zamykanie PrusaSlicer. Bieżący projekt zostaÅ‚ zmodyfikowany." +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:34 +#: src/libslic3r/PrintConfig.cpp:3759 +msgid "Closing distance" +msgstr "Dystans domykania" + #: src/libslic3r/PrintConfig.cpp:2667 msgid "Closing radius" msgstr "PromieÅ„ zamykania" @@ -2230,6 +2224,15 @@ msgstr "ZwiÅ„/rozwiÅ„ pasek narzÄ™dzi" msgid "Color" msgstr "Kolor" +#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 +msgid "Color Change G-code" +msgstr "G-code dla zmiany koloru" + +#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:957 +msgid "Color Print" +msgstr "Zmiana Koloru" + #: src/slic3r/GUI/GCodeViewer.cpp:3487 src/slic3r/GUI/GCodeViewer.cpp:3543 msgid "Color change" msgstr "Zmiana koloru" @@ -2244,10 +2247,6 @@ msgstr "Zmiana koloru (\"%1%\")" msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Zmiana koloru (\"%1%\") dla ekstrudera %2%" -#: src/slic3r/GUI/Tab.cpp:2462 src/libslic3r/GCode.cpp:713 -msgid "Color Change G-code" -msgstr "G-code dla zmiany koloru" - #: src/libslic3r/PrintConfig.cpp:2432 msgid "Color change G-code" msgstr "G-code dla zmiany koloru" @@ -2256,11 +2255,6 @@ msgstr "G-code dla zmiany koloru" msgid "Color changes" msgstr "Zmiany koloru" -#: src/slic3r/GUI/GCodeViewer.cpp:3304 src/slic3r/GUI/GUI_Preview.cpp:225 -#: src/slic3r/GUI/GUI_Preview.cpp:957 -msgid "Color Print" -msgstr "Zmiana Koloru" - #: src/libslic3r/PrintConfig.cpp:537 msgid "Colorprint height" msgstr "Wysokość (warstwa) zmiany koloru" @@ -2295,12 +2289,12 @@ msgid "Comment:" msgstr "Komentarz:" #: src/slic3r/GUI/MainFrame.cpp:1417 -msgid "Compare presets" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +msgid "Compare Presets" msgstr "Porównaj zestawy ustawieÅ„" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 -msgid "Compare Presets" +msgid "Compare presets" msgstr "Porównaj zestawy ustawieÅ„" #: src/slic3r/GUI/Tab.cpp:216 @@ -2335,14 +2329,6 @@ msgstr "Druk sekwencyjny (model po modelu)" msgid "Completed" msgstr "ZakoÅ„czono" -#: src/slic3r/GUI/NotificationManager.cpp:895 -msgid "COMPLETED" -msgstr "ZAKOŃCZONE" - -#: src/libslic3r/miniz_extension.cpp:113 -msgid "compression failed" -msgstr "niepowodzenie kompresji" - #: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:1151 #: src/libslic3r/PrintConfig.cpp:2722 msgid "Concentric" @@ -2360,6 +2346,22 @@ msgstr "Asystent Ko&nfiguracji" msgid "Configuration Assistant" msgstr "Asystent konfiguracji" +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 +msgid "Configuration Snapshots" +msgstr "Zrzuty konfiguracji" + +#: src/slic3r/Utils/PresetUpdater.cpp:777 +msgid "" +"Configuration Updates causes a lost of preset modification.\n" +"So, check unsaved changes and save them if necessary." +msgstr "" +"Aktualizacja konfiguracji spowoduje utratÄ™ zmian w zestawach ustawieÅ„.\n" +"Sprawdź niezapisane zmiany i w razie potrzeby zapisz je." + +#: src/slic3r/GUI/ConfigWizard.cpp:3039 +msgid "Configuration Wizard" +msgstr "Asystent Konfiguracji" + #: src/slic3r/GUI/GUI.cpp:355 msgid "" "Configuration bundle was loaded, however some configuration values were not " @@ -2401,10 +2403,6 @@ msgstr "" "systemowych i użytkownika? Zrzuty konfiguracji można przeglÄ…dać i " "przechodzić miÄ™dzy nimi w menu Konfiguracja - Zrzuty konfiguracji." -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:123 -msgid "Configuration Snapshots" -msgstr "Zrzuty konfiguracji" - #: src/slic3r/GUI/UpdateDialogs.cpp:94 src/slic3r/GUI/UpdateDialogs.cpp:261 msgid "Configuration update" msgstr "Aktualizacja konfiguracji" @@ -2421,18 +2419,6 @@ msgstr "DostÄ™pna jest aktualizacja konfiguracji." msgid "Configuration updates" msgstr "Aktualizacje konfiguracji" -#: src/slic3r/Utils/PresetUpdater.cpp:777 -msgid "" -"Configuration Updates causes a lost of preset modification.\n" -"So, check unsaved changes and save them if necessary." -msgstr "" -"Aktualizacja konfiguracji spowoduje utratÄ™ zmian w zestawach ustawieÅ„.\n" -"Sprawdź niezapisane zmiany i w razie potrzeby zapisz je." - -#: src/slic3r/GUI/ConfigWizard.cpp:3039 -msgid "Configuration Wizard" -msgstr "Asystent Konfiguracji" - #: src/slic3r/GUI/FirmwareDialog.cpp:916 msgid "Confirmation" msgstr "Potwierdzenie" @@ -2499,10 +2485,6 @@ msgstr "Połączenie z FlashAir dziaÅ‚a poprawnie a przesyÅ‚anie jest włączone msgid "Connection to OctoPrint works correctly." msgstr "Połączenie z OctoPrint pomyÅ›lne." -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 -msgid "Connection to printers connected via the print host failed." -msgstr "Niepowodzenie połączenia z drukarkÄ… podłączonÄ… do serwera druku." - #: src/slic3r/Utils/OctoPrint.cpp:292 msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "Połączenie z Prusa SL1 / SL1S dziaÅ‚a prawidÅ‚owo." @@ -2515,9 +2497,9 @@ msgstr "Połączenie z PrusaLink dziaÅ‚a prawidÅ‚owo." msgid "Connection to Repetier works correctly." msgstr "Połączenie z Repetier dziaÅ‚a poprawnie." -#: src/slic3r/GUI/DoubleSlider.cpp:1458 -msgid "continue" -msgstr "kontynuuj" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:268 +msgid "Connection to printers connected via the print host failed." +msgstr "Niepowodzenie połączenia z drukarkÄ… podłączonÄ… do serwera druku." #: src/slic3r/Config/Snapshot.cpp:601 msgid "Continue" @@ -2601,25 +2583,26 @@ msgstr "Pozycja rurki chÅ‚odzÄ…cej" msgid "Copies of the selected object" msgstr "Kopie wybranego modelu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4520 +#: src/slic3r/GUI/SavePresetDialog.cpp:221 +msgctxt "PresetName" msgid "Copy" -msgstr "Kopiuj" +msgstr "Kopia" + +#: src/slic3r/GUI/AboutDialog.cpp:308 +msgid "Copy Version Info" +msgstr "Skopiuj informacje o wersji" #: src/slic3r/GUI/MainFrame.cpp:1343 msgid "Copy selection to clipboard" msgstr "Skopiuj zaznaczenie do schowka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 -msgid "Copy to clipboard" -msgstr "Skopiuj do schowka" - #: src/slic3r/GUI/SysInfoDialog.cpp:169 msgid "Copy to Clipboard" msgstr "Kopiuj do Schowka" -#: src/slic3r/GUI/AboutDialog.cpp:308 -msgid "Copy Version Info" -msgstr "Skopiuj informacje o wersji" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:99 +msgid "Copy to clipboard" +msgstr "Skopiuj do schowka" #: src/slic3r/Utils/PresetUpdater.cpp:61 #, boost-format @@ -2770,10 +2753,6 @@ msgstr "" "finalnÄ… rozdzielczość wydruku, wiÄ™c zalecane jest ustawienie tej wartoÅ›ci na " "rozsÄ…dnie niskim poziomie." -#: src/libslic3r/miniz_extension.cpp:117 -msgid "CRC-32 check failed" -msgstr "Weryfikacja CRC-32 nie powiodÅ‚a siÄ™" - #: src/libslic3r/PrintConfig.cpp:3682 msgid "Create pad around object and ignore the support elevation" msgstr "Dodaj podkÅ‚adkÄ™ wokół modelu i zignoruj podniesienie na podporach" @@ -2815,14 +2794,6 @@ msgstr "Ctrl + kółko myszy" msgid "Cubic" msgstr "SzeÅ›cienny" -#: src/slic3r/Utils/Http.cpp:91 -msgid "" -"CURL init has failed. PrusaSlicer will be unable to establish network " -"connections. See logs for additional details." -msgstr "" -"Niepowodzenie inicjalizacji CURL. PrusaSlicer nie bÄ™dzie w stanie nawiÄ…zać " -"połączenia przez sieć. Szczegóły w logach." - #: src/slic3r/GUI/wxExtensions.cpp:645 #, c-format, boost-format msgid "Current mode is %s" @@ -2940,10 +2911,6 @@ msgstr "Martwa strefa:" msgid "Decimate ratio" msgstr "Współczynnik dziesiÄ…tkowania" -#: src/libslic3r/miniz_extension.cpp:111 -msgid "decompression failed or archive is corrupted" -msgstr "niepowodzenie rozpakowywania lub uszkodzone archiwum" - #: src/slic3r/GUI/Plater.cpp:5517 msgid "Decrease Instances" msgstr "Zmniejsz ilość instancji" @@ -2954,16 +2921,9 @@ msgstr "Zmniejsz ilość instancji" msgid "Default" msgstr "DomyÅ›lnie" -#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 -#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 -msgid "default" -msgstr "domyÅ›lnie" +#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 +msgid "Default SLA material profile" +msgstr "DomyÅ›lny profil materiaÅ‚u SLA" #: src/libslic3r/PrintConfig.cpp:1072 msgid "" @@ -2978,18 +2938,10 @@ msgstr "" msgid "Default color" msgstr "DomyÅ›lny kolor" -#: src/slic3r/GUI/GCodeViewer.cpp:3388 -msgid "default color" -msgstr "domyÅ›lny kolor" - #: src/libslic3r/PrintConfig.cpp:837 msgid "Default extrusion width" msgstr "DomyÅ›lna szerokość linii" -#: src/slic3r/GUI/Tab.cpp:1386 -msgid "default filament profile" -msgstr "domyÅ›lny profil filamentu" - #: src/libslic3r/PrintConfig.cpp:622 msgid "Default filament profile" msgstr "DomyÅ›lny profil filamentu" @@ -3004,10 +2956,6 @@ msgstr "" "wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil " "filamentu." -#: src/slic3r/GUI/Tab.cpp:1383 -msgid "default print profile" -msgstr "domyÅ›lny profil druku" - #: src/libslic3r/PrintConfig.cpp:629 msgid "Default print profile" msgstr "DomyÅ›lny profil druku" @@ -3023,22 +2971,6 @@ msgstr "" "obecnego profilu drukarki automatycznie zostanie wybrany ten profil " "filamentu." -#: src/slic3r/GUI/Tab.cpp:1400 -msgid "default SLA material profile" -msgstr "domyÅ›lny profil materiaÅ‚u SLA" - -#: src/libslic3r/PrintConfig.cpp:3395 src/libslic3r/PrintConfig.cpp:3406 -msgid "Default SLA material profile" -msgstr "DomyÅ›lny profil materiaÅ‚u SLA" - -#: src/slic3r/GUI/Tab.cpp:1404 -msgid "default SLA print profile" -msgstr "domyÅ›lny profil druku SLA" - -#: src/slic3r/GUI/Field.cpp:190 -msgid "default value" -msgstr "wartość domyÅ›lna" - #: src/slic3r/GUI/ConfigWizard.cpp:1177 msgid "Define a custom printer profile" msgstr "Zdefiniuj wÅ‚asny profil drukarki" @@ -3059,10 +2991,6 @@ msgstr "" msgid "Delay after unloading" msgstr "Opóźnienie po rozÅ‚adowaniu" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "delete" -msgstr "usuÅ„" - #: src/slic3r/GUI/GalleryDialog.cpp:118 src/slic3r/GUI/GalleryDialog.cpp:508 #: src/slic3r/GUI/GLCanvas3D.cpp:4480 src/slic3r/GUI/GUI_Factories.cpp:444 #: src/slic3r/GUI/Tab.cpp:3734 @@ -3073,11 +3001,6 @@ msgstr "UsuÅ„" msgid "Delete &All" msgstr "UsuÅ„ &wszystko" -#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 -msgid "Delete all" -msgstr "UsuÅ„ wszystko" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1901 msgid "Delete All Instances from Object" msgstr "UsuÅ„ wszystkie instancje modelu" @@ -3086,22 +3009,6 @@ msgstr "UsuÅ„ wszystkie instancje modelu" msgid "Delete All Objects" msgstr "UsuÅ„ wszystkie obiekty" -#: src/slic3r/GUI/DoubleSlider.cpp:2012 -msgid "Delete color change" -msgstr "UsuÅ„ zmianÄ™ koloru" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 -msgid "Delete color change marker for current layer" -msgstr "UsuÅ„ punkt zmiany filamentu na obecnej warstwie" - -#: src/slic3r/GUI/DoubleSlider.cpp:2015 -msgid "Delete custom G-code" -msgstr "UsuÅ„ wÅ‚asny G-code" - -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 -msgid "Delete drainage hole" -msgstr "UsuÅ„ otwór odpÅ‚ywowy" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1917 msgid "Delete Height Range" msgstr "UsuÅ„ zakres wysokoÅ›ci" @@ -3114,33 +3021,15 @@ msgstr "UsuÅ„ instancjÄ™" msgid "Delete Object" msgstr "UsuÅ„ Model" -#: src/slic3r/GUI/GalleryDialog.cpp:118 -msgid "Delete one or more custom shape. You can't delete system shapes" -msgstr "" -"UsuÅ„ jeden lub wiÄ™cej niestandardowych ksztaÅ‚tów. Nie można usuwać ksztaÅ‚tów " -"systemowych." - #: src/slic3r/GUI/GUI_ObjectSettings.cpp:105 #, c-format, boost-format msgid "Delete Option %s" msgstr "UsuÅ„ OpcjÄ™ %s" -#: src/slic3r/GUI/DoubleSlider.cpp:2014 -msgid "Delete pause print" -msgstr "UsuÅ„ pauzÄ™" - -#: src/slic3r/GUI/PresetComboBoxes.cpp:733 -msgid "Delete physical printer" -msgstr "UsuÅ„ fizycznÄ… drukarkÄ™" - #: src/slic3r/GUI/PresetComboBoxes.cpp:340 msgid "Delete Physical Printer" msgstr "UsuÅ„ fizycznÄ… drukarkÄ™" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 -msgid "Delete selected" -msgstr "UsuÅ„ zaznaczone" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2934 msgid "Delete Selected" msgstr "UsuÅ„ Zaznaczone" @@ -3161,6 +3050,45 @@ msgstr "UsuÅ„ ustawienia" msgid "Delete Subobject" msgstr "UsuÅ„ Model PodrzÄ™dny" +#: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 +#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4094 +msgid "Delete all" +msgstr "UsuÅ„ wszystko" + +#: src/slic3r/GUI/DoubleSlider.cpp:2012 +msgid "Delete color change" +msgstr "UsuÅ„ zmianÄ™ koloru" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:238 +msgid "Delete color change marker for current layer" +msgstr "UsuÅ„ punkt zmiany filamentu na obecnej warstwie" + +#: src/slic3r/GUI/DoubleSlider.cpp:2015 +msgid "Delete custom G-code" +msgstr "UsuÅ„ wÅ‚asny G-code" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:402 +msgid "Delete drainage hole" +msgstr "UsuÅ„ otwór odpÅ‚ywowy" + +#: src/slic3r/GUI/GalleryDialog.cpp:118 +msgid "Delete one or more custom shape. You can't delete system shapes" +msgstr "" +"UsuÅ„ jeden lub wiÄ™cej niestandardowych ksztaÅ‚tów. Nie można usuwać ksztaÅ‚tów " +"systemowych." + +#: src/slic3r/GUI/DoubleSlider.cpp:2014 +msgid "Delete pause print" +msgstr "UsuÅ„ pauzÄ™" + +#: src/slic3r/GUI/PresetComboBoxes.cpp:733 +msgid "Delete physical printer" +msgstr "UsuÅ„ fizycznÄ… drukarkÄ™" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:95 +msgid "Delete selected" +msgstr "UsuÅ„ zaznaczone" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:522 msgid "Delete support point" msgstr "UsuÅ„ punkt podpory" @@ -3237,10 +3165,6 @@ msgstr "Odznacza wszystkie modele" msgid "Desktop Integration" msgstr "Integracja z pulpitem" -#: src/slic3r/GUI/NotificationManager.hpp:768 -msgid "Desktop integration failed." -msgstr "Integracja z pulpitem nie powiodÅ‚a siÄ™." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:466 msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" @@ -3252,6 +3176,10 @@ msgstr "" "\n" "NaciÅ›nij \"Wykonaj\", aby kontynuować." +#: src/slic3r/GUI/NotificationManager.hpp:768 +msgid "Desktop integration failed." +msgstr "Integracja z pulpitem nie powiodÅ‚a siÄ™." + #: src/slic3r/GUI/NotificationManager.hpp:766 msgid "Desktop integration was successful." msgstr "Integracja z pulpitem zakoÅ„czyÅ‚a siÄ™ sukcesem." @@ -3345,10 +3273,6 @@ msgstr "" "\"Warstwy i obrysy\" i ustaw parametry w prawym panelu. Przeczytaj wiÄ™cej w " "dokumentacji." -#: src/slic3r/GUI/Plater.cpp:3652 -msgid "differs from the original file" -msgstr "różni siÄ™ od oryginalnego pliku" - #: src/libslic3r/PrintConfig.cpp:2231 msgid "Direction" msgstr "Kierunek" @@ -3522,17 +3446,13 @@ msgstr "Czy chcesz zapisać zmiany w \"%1%\"?" msgid "Do you want to save your manually edited support points?" msgstr "Czy chcesz zapisać rÄ™cznie edytowane punkty podpór?" -#: src/slic3r/GUI/ConfigWizard.cpp:2463 -msgid "Do you want to select default filaments for these FFF printer models?" -msgstr "Czy chcesz ustawić domyÅ›lne filamenty dla tych modeli drukarek FFF?" - #: src/slic3r/GUI/ConfigWizard.cpp:2481 msgid "Do you want to select default SLA materials for these printer models?" msgstr "Czy chcesz ustawić domyÅ›lne materiaÅ‚y SLA dla tych modeli drukarek?" -#: src/slic3r/GUI/Plater.cpp:5202 -msgid "does not contain valid gcode." -msgstr "nie zawiera prawidÅ‚owego g-code." +#: src/slic3r/GUI/ConfigWizard.cpp:2463 +msgid "Do you want to select default filaments for these FFF printer models?" +msgstr "Czy chcesz ustawić domyÅ›lne filamenty dla tych modeli drukarek FFF?" #: src/libslic3r/PrintConfig.cpp:4353 msgid "Don't arrange" @@ -3627,10 +3547,37 @@ msgstr "Dynamicznie" msgid "E&xport" msgstr "&Eksport" +#: src/slic3r/GUI/NotificationManager.cpp:885 +msgid "ERROR" +msgstr "BÅÄ„D" + +#: src/slic3r/GUI/NotificationManager.cpp:1447 +#: src/slic3r/GUI/NotificationManager.cpp:1454 +#: src/slic3r/GUI/NotificationManager.cpp:1470 +#: src/slic3r/GUI/NotificationManager.cpp:1476 +#: src/slic3r/GUI/NotificationManager.cpp:1547 +msgid "ERROR:" +msgstr "BÅÄ„D:" + +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 +msgid "" +"ERROR: Please close all manipulators available from the left toolbar first" +msgstr "" +"ERROR: Najpierw zamknij wszystkie manipulatory dostÄ™pne z lewego paska " +"narzÄ™dzi." + +#: src/slic3r/GUI/Jobs/Job.cpp:111 +msgid "ERROR: not enough resources to execute a new job." +msgstr "BÅÄ„D: brak zasobów do wykonania nowego zadania." + #: src/slic3r/GUI/ImGuiWrapper.cpp:527 msgid "Edit" msgstr "Edytuj" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 +msgid "Edit Height Range" +msgstr "Edytuj Zakres WysokoÅ›ci" + #: src/slic3r/GUI/DoubleSlider.cpp:2004 msgid "Edit color" msgstr "Edytuj kolor" @@ -3643,10 +3590,6 @@ msgstr "Edytuj kolor - kliknij prawym przyciskiem na kolorowy segment suwaka" msgid "Edit custom G-code" msgstr "Edytuj wÅ‚asny G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3172 -msgid "Edit Height Range" -msgstr "Edytuj Zakres WysokoÅ›ci" - #: src/slic3r/GUI/DoubleSlider.cpp:2005 msgid "Edit pause print message" msgstr "Edytuj komunikat wstrzymania wydruku" @@ -3679,10 +3622,6 @@ msgstr "ObsÅ‚ugiwana wektoryzacja wÅ‚asna:" msgid "Ejec&t SD Card / Flash Drive" msgstr "WysuÅ„ kar&tÄ™ SD / pamięć flash" -#: src/slic3r/GUI/NotificationManager.cpp:701 -msgid "Eject drive" -msgstr "WysuÅ„ noÅ›nik" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:91 msgid "Eject SD card / Flash drive" msgstr "WysuÅ„ kartÄ™ SD / pamięć flash" @@ -3691,6 +3630,10 @@ msgstr "WysuÅ„ kartÄ™ SD / pamięć flash" msgid "Eject SD card / Flash drive after the G-code was exported to it." msgstr "WysuÅ„ kartÄ™ SD / pamięć flash po wyeksportowaniu na niÄ… G-code." +#: src/slic3r/GUI/NotificationManager.cpp:701 +msgid "Eject drive" +msgstr "WysuÅ„ noÅ›nik" + #: src/slic3r/GUI/Plater.cpp:2202 #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -3989,9 +3932,9 @@ msgstr "" msgid "Error" msgstr "Błąd" -#: src/slic3r/GUI/NotificationManager.cpp:885 -msgid "ERROR" -msgstr "BÅÄ„D" +#: src/slic3r/GUI/PrintHostDialogs.cpp:253 +msgid "Error Message" +msgstr "Komunikat o błędzie" #: src/slic3r/GUI/FirmwareDialog.cpp:650 #, c-format, boost-format @@ -4010,10 +3953,6 @@ msgstr "Błąd podczas zamiany" msgid "Error loading shaders" msgstr "Błąd Å‚adowania modułów cieniujÄ…cych" -#: src/slic3r/GUI/PrintHostDialogs.cpp:253 -msgid "Error Message" -msgstr "Komunikat o błędzie" - #: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " @@ -4052,30 +3991,11 @@ msgstr "Błąd!" msgid "Error! Invalid model" msgstr "Błąd! NieprawidÅ‚owy model" -#: src/slic3r/GUI/NotificationManager.cpp:1447 -#: src/slic3r/GUI/NotificationManager.cpp:1454 -#: src/slic3r/GUI/NotificationManager.cpp:1470 -#: src/slic3r/GUI/NotificationManager.cpp:1476 -#: src/slic3r/GUI/NotificationManager.cpp:1547 -msgid "ERROR:" -msgstr "BÅÄ„D:" - #: src/slic3r/GUI/FirmwareDialog.cpp:652 #, c-format, boost-format msgid "Error: %s" msgstr "Błąd: %s" -#: src/slic3r/GUI/Jobs/Job.cpp:111 -msgid "ERROR: not enough resources to execute a new job." -msgstr "BÅÄ„D: brak zasobów do wykonania nowego zadania." - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:196 -msgid "" -"ERROR: Please close all manipulators available from the left toolbar first" -msgstr "" -"ERROR: Najpierw zamknij wszystkie manipulatory dostÄ™pne z lewego paska " -"narzÄ™dzi." - #: src/slic3r/GUI/Plater.cpp:301 src/slic3r/GUI/Plater.cpp:1339 #: src/slic3r/GUI/Plater.cpp:1426 msgid "Estimated printing time" @@ -4097,15 +4017,6 @@ msgstr "Wydarzenie" msgid "Everywhere" msgstr "WszÄ™dzie" -#: src/slic3r/GUI/PresetHints.cpp:59 -#, boost-format -msgid "except for the first %1% layers." -msgstr "za wyjÄ…tkiem pierwszych %1% warstw." - -#: src/slic3r/GUI/PresetHints.cpp:61 -msgid "except for the first layer." -msgstr "za wyjÄ…tkiem pierwszej warstwy." - #: src/libslic3r/Print.cpp:575 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" @@ -4154,14 +4065,14 @@ msgstr "" msgid "Expert" msgstr "Ekspert" -#: src/slic3r/GUI/ConfigWizard.cpp:1281 -msgid "Expert mode" -msgstr "Tryb Eksperta" - #: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Expert View Mode" msgstr "Tryb Widoku Eksperta" +#: src/slic3r/GUI/ConfigWizard.cpp:1281 +msgid "Expert mode" +msgstr "Tryb Eksperta" + #: src/slic3r/GUI/Plater.cpp:6492 msgid "Export" msgstr "Eksport" @@ -4182,6 +4093,63 @@ msgstr "Ekspor&t Å›cieżek narzÄ™dzi do OBJ" msgid "Export 3MF" msgstr "Eksport 3MF" +#: src/libslic3r/PrintConfig.cpp:4261 +msgid "Export AMF" +msgstr "Eksport AMF" + +#: src/slic3r/GUI/Plater.cpp:2853 +msgid "Export AMF file:" +msgstr "Eksport pliku AMF:" + +#: src/slic3r/GUI/MainFrame.cpp:1257 +msgid "Export Config &Bundle" +msgstr "Eks&port Paczki Konfiguracyjnej" + +#: src/slic3r/GUI/MainFrame.cpp:1260 +msgid "Export Config Bundle With Physical Printers" +msgstr "Eksport paczki konfiguracyjnej z drukarkami fizycznymi" + +#: src/slic3r/GUI/NotificationManager.cpp:1113 +msgid "Export G-Code." +msgstr "Eksport G-code." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 +#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +msgid "Export G-code" +msgstr "Eksport G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1235 +msgid "Export G-code to SD Card / Flash Drive" +msgstr "Eksport G-gode na kartÄ™ SD / pamięć flash" + +#: src/libslic3r/PrintConfig.cpp:4238 +msgid "Export OBJ" +msgstr "Eksport OBJ" + +#: src/slic3r/GUI/Plater.cpp:2865 +msgid "Export OBJ file:" +msgstr "Eksport pliku OBJ:" + +#: src/slic3r/GUI/MainFrame.cpp:1239 +msgid "Export Plate as &STL" +msgstr "Eksport stoÅ‚u jako &STL" + +#: src/slic3r/GUI/MainFrame.cpp:1242 +msgid "Export Plate as STL &Including Supports" +msgstr "Eksport stoÅ‚u z podporam&i do STL" + +#: src/libslic3r/PrintConfig.cpp:4250 +msgid "Export SLA" +msgstr "Eksport SLA" + +#: src/libslic3r/PrintConfig.cpp:4266 +msgid "Export STL" +msgstr "Eksport STL" + +#: src/slic3r/GUI/Plater.cpp:2846 +msgid "Export STL file:" +msgstr "Eksport pliku STL:" + #: src/slic3r/GUI/MainFrame.cpp:1260 msgid "Export all presets including physical printers to file" msgstr "" @@ -4191,14 +4159,6 @@ msgstr "" msgid "Export all presets to file" msgstr "Eksport wszystkich zestawów ustawieÅ„ do pliku" -#: src/libslic3r/PrintConfig.cpp:4261 -msgid "Export AMF" -msgstr "Eksport AMF" - -#: src/slic3r/GUI/Plater.cpp:2853 -msgid "Export AMF file:" -msgstr "Eksport pliku AMF:" - #: src/slic3r/GUI/GUI_Factories.cpp:715 msgid "Export as STL" msgstr "Eksport jako STL" @@ -4207,14 +4167,6 @@ msgstr "Eksport jako STL" msgid "Export config" msgstr "Eksport konfiguracji" -#: src/slic3r/GUI/MainFrame.cpp:1257 -msgid "Export Config &Bundle" -msgstr "Eks&port Paczki Konfiguracyjnej" - -#: src/slic3r/GUI/MainFrame.cpp:1260 -msgid "Export Config Bundle With Physical Printers" -msgstr "Eksport paczki konfiguracyjnej z drukarkami fizycznymi" - #: src/slic3r/GUI/MainFrame.cpp:1254 msgid "Export current configuration to file" msgstr "Eksport obecnej konfiguracji do pliku" @@ -4240,55 +4192,14 @@ msgid "" "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Eksport peÅ‚nych Å›cieżek źródÅ‚owych modeli i części do plików 3MF i AMF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 -msgid "Export G-code" -msgstr "Eksport G-code" - -#: src/slic3r/GUI/MainFrame.cpp:1235 -msgid "Export G-code to SD Card / Flash Drive" -msgstr "Eksport G-gode na kartÄ™ SD / pamięć flash" - -#: src/slic3r/GUI/NotificationManager.cpp:1113 -msgid "Export G-Code." -msgstr "Eksport G-code." - -#: src/libslic3r/PrintConfig.cpp:4238 -msgid "Export OBJ" -msgstr "Eksport OBJ" - -#: src/slic3r/GUI/Plater.cpp:2865 -msgid "Export OBJ file:" -msgstr "Eksport pliku OBJ:" - #: src/slic3r/Utils/FixModelByWin10.cpp:379 msgid "Export of a temporary 3mf file failed" msgstr "Niepowodzenie eksportu tymczasowego pliku 3MF" -#: src/slic3r/GUI/MainFrame.cpp:1239 -msgid "Export Plate as &STL" -msgstr "Eksport stoÅ‚u jako &STL" - -#: src/slic3r/GUI/MainFrame.cpp:1242 -msgid "Export Plate as STL &Including Supports" -msgstr "Eksport stoÅ‚u z podporam&i do STL" - -#: src/libslic3r/PrintConfig.cpp:4250 -msgid "Export SLA" -msgstr "Eksport SLA" - #: src/slic3r/GUI/Preferences.cpp:148 msgid "Export sources full pathnames to 3mf and amf" msgstr "Eksport peÅ‚nych Å›cieżek do 3MF i AMF" -#: src/libslic3r/PrintConfig.cpp:4266 -msgid "Export STL" -msgstr "Eksport STL" - -#: src/slic3r/GUI/Plater.cpp:2846 -msgid "Export STL file:" -msgstr "Eksport pliku STL:" - #: src/libslic3r/PrintConfig.cpp:4257 msgid "Export the model(s) as 3MF." msgstr "Eksport model(i) jako 3MF." @@ -4317,6 +4228,10 @@ msgstr "Eksport Å›cieżek narzÄ™dzi jako OBJ" msgid "Export." msgstr "Eksport" +#: src/libslic3r/Print.cpp:863 +msgid "Exporting G-code" +msgstr "Eksportowanie G-code" + #: src/slic3r/GUI/MainFrame.cpp:1809 msgid "Exporting configuration bundle" msgstr "Eksportowanie paczki konfiguracji" @@ -4325,10 +4240,6 @@ msgstr "Eksportowanie paczki konfiguracji" msgid "Exporting finished." msgstr "Eksport zakoÅ„czony." -#: src/libslic3r/Print.cpp:863 -msgid "Exporting G-code" -msgstr "Eksportowanie G-code" - #: src/slic3r/Utils/FixModelByWin10.cpp:221 #: src/slic3r/Utils/FixModelByWin10.cpp:362 msgid "Exporting source model" @@ -4355,10 +4266,6 @@ msgstr "Czas naÅ›wietlania" msgid "External perimeter" msgstr "Obrys zewnÄ™trzny" -#: src/slic3r/GUI/PresetHints.cpp:170 -msgid "external perimeters" -msgstr "obrysów zewnÄ™trznych" - #: src/libslic3r/PrintConfig.cpp:727 src/libslic3r/PrintConfig.cpp:739 msgid "External perimeters" msgstr "Obrysy zewnÄ™trzne" @@ -4404,6 +4311,10 @@ msgstr "Ekstruder %d" msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Ekstruder zostaÅ‚ zmieniony na ekstruder \"%1%\"" +#: src/libslic3r/PrintConfig.cpp:804 +msgid "Extruder Color" +msgstr "Kolor ekstrudera" + #: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "Extruder changed to" msgstr "Ekstruder zmieniony na" @@ -4412,10 +4323,6 @@ msgstr "Ekstruder zmieniony na" msgid "Extruder clearance" msgstr "OdstÄ™p od ekstrudera" -#: src/libslic3r/PrintConfig.cpp:804 -msgid "Extruder Color" -msgstr "Kolor ekstrudera" - #: src/libslic3r/PrintConfig.cpp:811 msgid "Extruder offset" msgstr "Margines ekstrudera" @@ -4437,22 +4344,10 @@ msgstr "Liczba ekstruderów" msgid "Extrusion" msgstr "Ekstruzja" -#: src/libslic3r/PrintConfig.cpp:821 -msgid "Extrusion axis" -msgstr "OÅ› ekstruzji" - -#: src/libslic3r/PrintConfig.cpp:827 -msgid "Extrusion multiplier" -msgstr "Współczynnik ekstruzji" - #: src/slic3r/GUI/ConfigWizard.cpp:1567 msgid "Extrusion Temperature:" msgstr "Temperatura ekstrudera:" -#: src/slic3r/GUI/Tab.cpp:1650 -msgid "Extrusion width" -msgstr "Szerokość ekstruzji" - #: src/slic3r/GUI/GUI_Factories.cpp:134 src/libslic3r/PrintConfig.cpp:728 #: src/libslic3r/PrintConfig.cpp:838 src/libslic3r/PrintConfig.cpp:1195 #: src/libslic3r/PrintConfig.cpp:1455 src/libslic3r/PrintConfig.cpp:1956 @@ -4461,6 +4356,22 @@ msgstr "Szerokość ekstruzji" msgid "Extrusion Width" msgstr "Szerokość Ekstruzji" +#: src/libslic3r/PrintConfig.cpp:821 +msgid "Extrusion axis" +msgstr "OÅ› ekstruzji" + +#: src/libslic3r/PrintConfig.cpp:827 +msgid "Extrusion multiplier" +msgstr "Współczynnik ekstruzji" + +#: src/slic3r/GUI/Tab.cpp:1650 +msgid "Extrusion width" +msgstr "Szerokość ekstruzji" + +#: src/slic3r/GUI/ConfigWizard.cpp:2097 +msgid "FFF Technology Printers" +msgstr "Drukarki FFF" + #: src/slic3r/GUI/Plater.cpp:213 msgid "Facets" msgstr "Powierzchnie" @@ -4469,10 +4380,6 @@ msgstr "Powierzchnie" msgid "Faded layers" msgstr "Warstwy przejÅ›ciowe" -#: src/libslic3r/miniz_extension.cpp:103 -msgid "failed finding central directory" -msgstr "nie odnaleziono katalogu centralnego" - #: src/slic3r/GUI/Plater.cpp:2516 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." @@ -4497,6 +4404,10 @@ msgstr "Niepowodzenie aktywacji zrzutu konfiguracji." msgid "Failed to drill some holes into the model" msgstr "Nie udaÅ‚o siÄ™ wywiercić niektórych otworów w modelu" +#: src/slic3r/GUI/GCodeViewer.cpp:3296 +msgid "Fan Speed (%)" +msgstr "PrÄ™dkość wentylatora (%)" + #: src/slic3r/GUI/Tab.cpp:2007 msgid "Fan settings" msgstr "Ustawienia wentylatora" @@ -4505,10 +4416,6 @@ msgstr "Ustawienia wentylatora" msgid "Fan speed" msgstr "PrÄ™dkość wentylatora" -#: src/slic3r/GUI/GCodeViewer.cpp:3296 -msgid "Fan Speed (%)" -msgstr "PrÄ™dkość wentylatora (%)" - #: src/slic3r/GUI/PresetHints.cpp:55 #, boost-format msgid "Fan speed will be ramped from zero at layer %1% to %2%%% at layer %3%." @@ -4565,19 +4472,41 @@ msgstr "Rodzaj funkcji" msgid "Feature types" msgstr "Rodzaje funkcji" -#: src/slic3r/GUI/ConfigWizard.cpp:2097 -msgid "FFF Technology Printers" -msgstr "Drukarki FFF" - #: src/slic3r/GUI/GCodeViewer.cpp:3696 src/slic3r/GUI/GCodeViewer.cpp:3722 #: src/slic3r/GUI/GUI.cpp:339 src/slic3r/GUI/Plater.cpp:818 #: src/slic3r/GUI/Tab.cpp:1962 src/slic3r/GUI/Tab.cpp:1963 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 -msgid "filament" -msgstr "filament" +#: src/slic3r/GUI/ConfigWizard.cpp:1489 +msgid "Filament Diameter:" +msgstr "Åšrednica Filamentu:" + +#: src/libslic3r/GCode.cpp:725 +msgid "Filament End G-code" +msgstr "G-code dla zakoÅ„czenia filamentu" + +#: src/slic3r/GUI/Tab.cpp:1861 +msgid "Filament Overrides" +msgstr "Nadpisywane Ustawienia" + +#: src/slic3r/GUI/ConfigWizard.cpp:2912 +msgid "Filament Profiles Selection" +msgstr "Wybór profili filamentu" + +#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 +#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 +#: src/slic3r/GUI/Tab.hpp:448 +msgid "Filament Settings" +msgstr "Ustawienia Filamentu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 +msgid "Filament Settings Tab" +msgstr "Ustawienia filamentu" + +#: src/libslic3r/GCode.cpp:718 +msgid "Filament Start G-code" +msgstr "G-code dla poczÄ…tku filamentu" #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Filament and Nozzle Diameters" @@ -4588,14 +4517,6 @@ msgstr "Åšrednice filamentu i dyszy" msgid "Filament at extruder %1%" msgstr "Filament w ekstruderze %1%" -#: src/slic3r/GUI/ConfigWizard.cpp:1489 -msgid "Filament Diameter:" -msgstr "Åšrednica Filamentu:" - -#: src/libslic3r/GCode.cpp:725 -msgid "Filament End G-code" -msgstr "G-code dla zakoÅ„czenia filamentu" - #: src/libslic3r/PrintConfig.cpp:936 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " @@ -4612,36 +4533,14 @@ msgstr "Czas Å‚adowania filamentu" msgid "Filament notes" msgstr "Notatki do filamentu" -#: src/slic3r/GUI/Tab.cpp:1861 -msgid "Filament Overrides" -msgstr "Nadpisywane Ustawienia" - #: src/libslic3r/PrintConfig.cpp:1920 msgid "Filament parking position" msgstr "Pozycja zatrzymania filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:2912 -msgid "Filament Profiles Selection" -msgstr "Wybór profili filamentu" - #: src/slic3r/GUI/Tab.cpp:2024 msgid "Filament properties" msgstr "WÅ‚aÅ›ciwoÅ›ci filamentu" -#: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 -#: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 -msgid "Filament Settings" -msgstr "Ustawienia Filamentu" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3768 src/slic3r/GUI/GLCanvas3D.cpp:4589 -msgid "Filament Settings Tab" -msgstr "Ustawienia filamentu" - -#: src/libslic3r/GCode.cpp:718 -msgid "Filament Start G-code" -msgstr "G-code dla poczÄ…tku filamentu" - #: src/libslic3r/PrintConfig.cpp:1011 msgid "Filament type" msgstr "Typ filamentu" @@ -4650,58 +4549,18 @@ msgstr "Typ filamentu" msgid "Filament unload time" msgstr "Czas rozÅ‚adowania filamentu" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 -msgid "filaments" -msgstr "filamenty" - #: src/slic3r/GUI/ConfigWizard.cpp:752 src/slic3r/GUI/ConfigWizard.cpp:2043 #: src/slic3r/GUI/ConfigWizard.cpp:2912 msgid "Filaments" msgstr "Filamenty" -#: src/libslic3r/miniz_extension.cpp:131 -msgid "file close failed" -msgstr "niepowodzenia zamykania pliku" - -#: src/libslic3r/miniz_extension.cpp:125 -msgid "file create failed" -msgstr "niepowodzenie tworzenia pliku" - -#: src/slic3r/GUI/Plater.cpp:3529 -msgid "File for the replace wasn't selected" -msgstr "Nie wybrano pliku do zamiany" - #: src/slic3r/GUI/MainFrame.cpp:1626 msgid "File Not Found" msgstr "Nie znaleziono pliku" -#: src/libslic3r/miniz_extension.cpp:145 -msgid "file not found" -msgstr "nie znaleziono pliku" - -#: src/libslic3r/miniz_extension.cpp:123 -msgid "file open failed" -msgstr "niepowodzenie otwierania pliku" - -#: src/libslic3r/miniz_extension.cpp:129 -msgid "file read failed" -msgstr "niepowodzenie odczytu pliku" - -#: src/libslic3r/miniz_extension.cpp:133 -msgid "file seek failed" -msgstr "niepowodzenie szukania pliku" - -#: src/libslic3r/miniz_extension.cpp:135 -msgid "file stat failed" -msgstr "niepowodzenie odczytu statystyk pliku" - -#: src/libslic3r/miniz_extension.cpp:95 -msgid "file too large" -msgstr "plik jest zbyt duży" - -#: src/libslic3r/miniz_extension.cpp:127 -msgid "file write failed" -msgstr "niepowodzenie zapisywania do pliku" +#: src/slic3r/GUI/Plater.cpp:3529 +msgid "File for the replace wasn't selected" +msgstr "Nie wybrano pliku do zamiany" #: src/slic3r/GUI/PrintHostDialogs.cpp:252 msgid "Filename" @@ -4779,14 +4638,6 @@ msgstr "ZakoÅ„czono" msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:787 -msgid "Firmware flasher" -msgstr "Flasher firmware" - -#: src/slic3r/GUI/FirmwareDialog.cpp:812 -msgid "Firmware image:" -msgstr "Obraz firmware:" - #: src/slic3r/GUI/Tab.cpp:3007 msgid "Firmware Retraction" msgstr "Retrakcja z firmware" @@ -4795,6 +4646,14 @@ msgstr "Retrakcja z firmware" msgid "Firmware Type" msgstr "Typ firmware" +#: src/slic3r/GUI/FirmwareDialog.cpp:787 +msgid "Firmware flasher" +msgstr "Flasher firmware" + +#: src/slic3r/GUI/FirmwareDialog.cpp:812 +msgid "Firmware image:" +msgstr "Obraz firmware:" + #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:116 msgid "First color" msgstr "Pierwszy kolor" @@ -4903,10 +4762,6 @@ msgstr "PrzepÅ‚yw" msgid "Flow rate" msgstr "PrzepÅ‚yw" -#: src/slic3r/GUI/PresetHints.cpp:188 -msgid "flow rate is maximized" -msgstr "przepÅ‚yw osiÄ…ga wartoÅ›ci szczytowe" - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:670 #, boost-format msgid "" @@ -4983,16 +4838,6 @@ msgstr "" msgid "For support enforcers only" msgstr "Tylko dla wymuszania podpór" -#. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4266 -msgid "" -"for the left button: indicates a non-system (or non-default) preset,\n" -"for the right button: indicates that the settings hasn't been modified." -msgstr "" -"dla lewego przycisku: wskazuje na niesystemowy (lub inny niż domyÅ›lny) " -"zestaw ustawieÅ„,\n" -"dla prawego przycisku: wskazuje, że ustawienia nie zostaÅ‚y zmodyfikowane." - #: src/slic3r/GUI/ConfigManipulation.cpp:142 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" @@ -5045,10 +4890,6 @@ msgstr "Znaleziono zarezerwowane sÅ‚owa kluczowe w" msgid "From" msgstr "Od" -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "from" -msgstr "z" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1949 msgid "From Object List You can't delete the last solid part from object." msgstr "Nie możesz usunąć ostatniej bryÅ‚y modelu z Listy Modeli." @@ -5065,10 +4906,6 @@ msgstr "Widok przodu" msgid "Full fan speed at layer" msgstr "PeÅ‚na prÄ™dkość wentylatora na warstwie " -#: src/slic3r/GUI/Tab.cpp:1412 -msgid "full profile name" -msgstr "peÅ‚na nazwa profilu" - #: src/slic3r/GUI/MainFrame.cpp:1435 msgid "Fullscreen" msgstr "PeÅ‚ny ekran" @@ -5083,6 +4920,12 @@ msgstr "" "Czy wiesz, że możesz przełączyć PrusaSlicer do trybu peÅ‚noekranowego? Użyj " "klawisza F11." +#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 +#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 +#: src/libslic3r/PrintConfig.cpp:1286 +msgid "Fuzzy Skin" +msgstr "Fuzzy Skin" + #: resources/data/hints.ini: [hint:Fuzzy skin] msgid "" "Fuzzy skin\n" @@ -5095,12 +4938,6 @@ msgstr "" "Å›cianach modeli za pomocÄ…funkcji \"Fuzzy Skin\"? Możesz także użyć " "modyfikatorów, aby zastosować efekt tylko do części modelu." -#: src/slic3r/GUI/GUI_Factories.cpp:130 src/libslic3r/PrintConfig.cpp:1260 -#: src/libslic3r/PrintConfig.cpp:1261 src/libslic3r/PrintConfig.cpp:1276 -#: src/libslic3r/PrintConfig.cpp:1286 -msgid "Fuzzy Skin" -msgstr "Fuzzy Skin" - #: src/slic3r/GUI/Tab.cpp:1500 msgid "Fuzzy skin (experimental)" msgstr "Fuzzy Skin (eksperymentalna)" @@ -5117,10 +4954,6 @@ msgstr "Grubość Fuzzy Skin" msgid "Fuzzy skin type." msgstr "Rodzaj Fuzzy Skin." -#: src/libslic3r/PrintConfig.cpp:1057 -msgid "g" -msgstr "g" - #: src/slic3r/GUI/MainFrame.cpp:1661 msgid "G-code" msgstr "G-code" @@ -5163,13 +4996,13 @@ msgstr "Miniaturki G-code" msgid "G-code viewer" msgstr "PrzeglÄ…darka G-code" -#: src/libslic3r/PrintConfig.cpp:1006 -msgid "g/cm³" -msgstr "g/cm³" +#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 +msgid "GNU Affero General Public License, version 3" +msgstr "Ogólna Licencja Publiczna (GPL) GNU Affero, wersja 3" -#: src/libslic3r/PrintConfig.cpp:3288 -msgid "g/ml" -msgstr "g/ml" +#: src/slic3r/GUI/Preferences.cpp:343 +msgid "GUI" +msgstr "GUI" #: src/slic3r/GUI/GUI_Factories.cpp:471 msgid "Gallery" @@ -5221,10 +5054,6 @@ msgstr "Generowanie podpór" msgid "Generate supports for the models" msgstr "Generowanie podpór dla modeli" -#: src/slic3r/GUI/Plater.cpp:4107 -msgid "generated warnings" -msgstr "wygenerowane ostrzeżenia" - #: src/libslic3r/Print.cpp:867 msgid "Generating G-code" msgstr "Generowanie G-code" @@ -5269,10 +5098,6 @@ msgstr "Generowanie bufora wierzchoÅ‚ków" msgid "Generic" msgstr "ŹródÅ‚owy" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Gizmo cut" -msgstr "CiÄ™cie przy pomocy \"uchwytów\"" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Gizmo FDM paint-on seam" msgstr "Uchwyt malowania szwu FDM" @@ -5281,14 +5106,6 @@ msgstr "Uchwyt malowania szwu FDM" msgid "Gizmo FDM paint-on supports" msgstr "Uchwyt malowania podpór FDM" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo move" -msgstr "Przemieszczanie przy pomocy \"uchwytów\"" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Gizmo move: Press to snap by 1mm" -msgstr "Przesuwanie uchwytem: naciÅ›nij, aby przyciÄ…gać co 1 mm" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Gizmo Multi Material painting" msgstr "Uchwyt malowania Multi Material" @@ -5297,6 +5114,26 @@ msgstr "Uchwyt malowania Multi Material" msgid "Gizmo Place face on bed" msgstr "PoÅ‚ożenie na pÅ‚aszczyźnie przy pomocy \"uchwytów\"" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Gizmo SLA hollow" +msgstr "Drążenie SLA z uchwytem" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +msgid "Gizmo SLA support points" +msgstr "Punkty podpór SLA przy pomocy \"uchwytów\"" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +msgid "Gizmo cut" +msgstr "CiÄ™cie przy pomocy \"uchwytów\"" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +msgid "Gizmo move" +msgstr "Przemieszczanie przy pomocy \"uchwytów\"" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Gizmo move: Press to snap by 1mm" +msgstr "Przesuwanie uchwytem: naciÅ›nij, aby przyciÄ…gać co 1 mm" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo rotate" msgstr "Obracanie przy pomocy \"uchwytów\"" @@ -5329,14 +5166,6 @@ msgstr "Skalowanie uchwytem: naciÅ›nij, aby przyciÄ…gać co 5%" msgid "Gizmo scale: Scale selection to fit print volume" msgstr "Skalowanie uchwytem: skaluj wybrane do rozmiarów obszaru roboczego" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Gizmo SLA hollow" -msgstr "Drążenie SLA z uchwytem" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Gizmo SLA support points" -msgstr "Punkty podpór SLA przy pomocy \"uchwytów\"" - #: src/slic3r/GUI/GLCanvas3D.cpp:2557 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:560 msgid "Gizmo-Move" @@ -5359,10 +5188,6 @@ msgstr "Uchwyt-Skaluj" msgid "Gizmos" msgstr "Uchwyty" -#: src/slic3r/GUI/AboutDialog.cpp:270 src/slic3r/GUI/GUI_App.cpp:268 -msgid "GNU Affero General Public License, version 3" -msgstr "Ogólna Licencja Publiczna (GPL) GNU Affero, wersja 3" - #: src/slic3r/GUI/ConfigWizard.cpp:1486 msgid "" "Good precision is required, so use a caliper and do multiple measurements " @@ -5383,14 +5208,36 @@ msgstr "Grupa" msgid "Group manipulation" msgstr "Manipulacja grupÄ…" -#: src/slic3r/GUI/Preferences.cpp:343 -msgid "GUI" -msgstr "GUI" - #: src/libslic3r/PrintConfig.cpp:1154 msgid "Gyroid" msgstr "Gyroidalny" +#: src/libslic3r/PrintConfig.cpp:352 +msgid "HTTP digest" +msgstr "HTTP digest" + +#: src/slic3r/Utils/Repetier.cpp:246 +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"Status HTTP: %1%\n" +"Treść wiadomoÅ›ci: \"%2%\"" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 +#: src/libslic3r/PrintConfig.cpp:307 +msgid "HTTPS CA File" +msgstr "Plik certyfikatu HTTPS CA" + +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"Plik HTTPS CA jest opcjonalny. Jest potrzebny jedynie w sytuacji, gdy " +"używasz HTTPS z certyfikatem samopodpisanym." + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:39 msgid "Head diameter" msgstr "Åšrednica łącznika" @@ -5561,14 +5408,14 @@ msgstr "Zmiana parametrów drążenia" msgid "Honeycomb" msgstr "Plaster miodu" -#: src/slic3r/GUI/Tab.cpp:1469 -msgid "Horizontal shells" -msgstr "PowÅ‚oka pozioma" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:254 msgid "Horizontal Slider" msgstr "Suwak poziomy" +#: src/slic3r/GUI/Tab.cpp:1469 +msgid "Horizontal shells" +msgstr "PowÅ‚oka pozioma" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:219 #: src/slic3r/GUI/KBShortcutsDialog.cpp:223 msgid "Horizontal slider - Move active thumb Left" @@ -5633,40 +5480,14 @@ msgstr "Jak stosować limity" msgid "How to apply the Machine Limits" msgstr "Jak stosować limity maszynowe" -#: src/libslic3r/PrintConfig.cpp:352 -msgid "HTTP digest" -msgstr "HTTP digest" - -#: src/slic3r/Utils/Repetier.cpp:246 -#, boost-format -msgid "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" -msgstr "" -"Status HTTP: %1%\n" -"Treść wiadomoÅ›ci: \"%2%\"" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:404 -#: src/libslic3r/PrintConfig.cpp:307 -msgid "HTTPS CA File" -msgstr "Plik certyfikatu HTTPS CA" - -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:364 -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"Plik HTTPS CA jest opcjonalny. Jest potrzebny jedynie w sytuacji, gdy " -"używasz HTTPS z certyfikatem samopodpisanym." +#: src/slic3r/GUI/PrintHostDialogs.cpp:247 +msgid "ID" +msgstr "ID" #: src/slic3r/GUI/Preferences.cpp:694 msgid "Icon size in a respect to the default size" msgstr "Rozmiar ikon w odniesieniu do domyÅ›lnego" -#: src/slic3r/GUI/PrintHostDialogs.cpp:247 -msgid "ID" -msgstr "ID" - #: src/libslic3r/PrintConfig.cpp:2511 msgid "" "If checked, supports will be generated automatically based on the overhang " @@ -5702,6 +5523,43 @@ msgstr "" "ustawieÅ„ w tle. BÄ™dÄ… one pobierane do folderu tymczasowego. Opcja " "aktualizacji ustawieÅ„ bÄ™dzie oferowana przy starcie aplikacji." +#: src/slic3r/GUI/Preferences.cpp:289 +msgid "If enabled, PrusaSlicer will be open at the position it was closed" +msgstr "" +"JeÅ›li włączone, PrusaSlicer zostanie uruchomiony z poÅ‚ożeniem okna, w którym " +"zostaÅ‚ zamkniÄ™ty." + +#: src/slic3r/GUI/Preferences.cpp:384 +msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." +msgstr "JeÅ›li włączone, PrusaSlicer nie bÄ™dzie otwierać linków w przeglÄ…darce." + +#: src/slic3r/GUI/Preferences.cpp:410 +msgid "" +"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " +"will be used." +msgstr "" +"JeÅ›li włączone, zakÅ‚adki ustawieÅ„ zostanÄ… umieszczone jako elementy menu. " +"JeÅ›li wyłączone, widoczny bÄ™dzie stary interfejs." + +#: src/slic3r/GUI/Preferences.cpp:177 +msgid "" +"If enabled, Slic3r downloads updates of built-in system presets in the " +"background. These updates are downloaded into a separate temporary location. " +"When a new preset version becomes available it is offered at application " +"startup." +msgstr "" +"Włączenie powoduje pobieranie wbudowanych systemowych zestawów ustawieÅ„ w " +"tle. Te ustawienia sÄ… pobierane do oddzielnej lokalizacji tymczasowej. JeÅ›li " +"pojawi siÄ™ nowa wersja to opcja jej instalacji pojawi siÄ™ przy starcie " +"aplikacji." + +#: src/slic3r/GUI/Preferences.cpp:498 +msgid "" +"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." +msgstr "" +"JeÅ›li włączone, interfejs bÄ™dzie używać kolorów trybu ciemnego. JeÅ›li " +"wyłączone, widoczny bÄ™dzie stary interfejs." + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:174 msgid "If enabled, a repetition of the next random color will be allowed." msgstr "" @@ -5715,6 +5573,14 @@ msgstr "" "JeÅ›li ta opcja bÄ™dzie aktywna, to wszystkie ekstrudery bÄ™dÄ… czyszczone na " "przedniej krawÄ™dzi stoÅ‚u na poczÄ…tku wydruku." +#: src/slic3r/GUI/Preferences.cpp:150 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"JeÅ›li włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie " +"odnaleźć i wczytać pliki." + #: src/slic3r/GUI/ConfigWizard.cpp:1250 msgid "" "If enabled, allows the Reload from disk command to automatically find and " @@ -5727,14 +5593,6 @@ msgstr "" "JeÅ›li wyłączone, to polecenie bÄ™dzie otwierać okno dialogowe, w którym " "wskażesz plik źródÅ‚owy." -#: src/slic3r/GUI/Preferences.cpp:150 -msgid "" -"If enabled, allows the Reload from disk command to automatically find and " -"load the files when invoked." -msgstr "" -"JeÅ›li włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie " -"odnaleźć i wczytać pliki." - #: src/slic3r/GUI/Preferences.cpp:509 msgid "" "If enabled, application will use the standard Windows system menu,\n" @@ -5766,16 +5624,6 @@ msgstr "" "podglÄ…dzie dotyczÄ… tylko górnej warstwy G-code. JeÅ›li wyłączone, to zmiany " "dokonywane za pomocÄ… suwaka sekwencyjnego w podglÄ…dzie dotyczÄ… caÅ‚ego G-code." -#: src/slic3r/GUI/Preferences.cpp:289 -msgid "If enabled, PrusaSlicer will be open at the position it was closed" -msgstr "" -"JeÅ›li włączone, PrusaSlicer zostanie uruchomiony z poÅ‚ożeniem okna, w którym " -"zostaÅ‚ zamkniÄ™ty." - -#: src/slic3r/GUI/Preferences.cpp:384 -msgid "If enabled, PrusaSlicer will not open hyperlinks in your browser." -msgstr "JeÅ›li włączone, PrusaSlicer nie bÄ™dzie otwierać linków w przeglÄ…darce." - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:166 msgid "If enabled, random sequence of the selected extruders will be used." msgstr "" @@ -5790,6 +5638,14 @@ msgstr "" msgid "If enabled, reverses the direction of zoom with mouse wheel" msgstr "JeÅ›li włączone, kierunek kółka myszy zostanie odwrócony" +#: src/slic3r/GUI/Preferences.cpp:260 +msgid "" +"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." +"gcode files." +msgstr "" +"JeÅ›li włączone, ustawia podglÄ…d G-code w PrusaSlicer jako domyÅ›lnÄ… aplikacjÄ™ " +"do otwierania plików .gcode" + #: src/slic3r/GUI/Preferences.cpp:159 msgid "If enabled, sets PrusaSlicer as default application to open .3mf files." msgstr "" @@ -5802,34 +5658,6 @@ msgstr "" "JeÅ›li włączone, ustawia PrusaSlicer jako domyÅ›lnÄ… aplikacjÄ™ do otwierania " "plików .stl." -#: src/slic3r/GUI/Preferences.cpp:260 -msgid "" -"If enabled, sets PrusaSlicer G-code Viewer as default application to open ." -"gcode files." -msgstr "" -"JeÅ›li włączone, ustawia podglÄ…d G-code w PrusaSlicer jako domyÅ›lnÄ… aplikacjÄ™ " -"do otwierania plików .gcode" - -#: src/slic3r/GUI/Preferences.cpp:410 -msgid "" -"If enabled, Settings Tabs will be placed as menu items. If disabled, old UI " -"will be used." -msgstr "" -"JeÅ›li włączone, zakÅ‚adki ustawieÅ„ zostanÄ… umieszczone jako elementy menu. " -"JeÅ›li wyłączone, widoczny bÄ™dzie stary interfejs." - -#: src/slic3r/GUI/Preferences.cpp:177 -msgid "" -"If enabled, Slic3r downloads updates of built-in system presets in the " -"background. These updates are downloaded into a separate temporary location. " -"When a new preset version becomes available it is offered at application " -"startup." -msgstr "" -"Włączenie powoduje pobieranie wbudowanych systemowych zestawów ustawieÅ„ w " -"tle. Te ustawienia sÄ… pobierane do oddzielnej lokalizacji tymczasowej. JeÅ›li " -"pojawi siÄ™ nowa wersja to opcja jej instalacji pojawi siÄ™ przy starcie " -"aplikacji." - #: src/slic3r/GUI/Preferences.cpp:270 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " @@ -5884,13 +5712,6 @@ msgstr "" "zjedzie w dół, aby kontynuować czyszczenie na wieży. Użytkownik musi upewnić " "siÄ™, że nie nastÄ…pi kolizja gÅ‚owicy z wydrukiem." -#: src/slic3r/GUI/Preferences.cpp:498 -msgid "" -"If enabled, UI will use Dark mode colors. If disabled, old UI will be used." -msgstr "" -"JeÅ›li włączone, interfejs bÄ™dzie używać kolorów trybu ciemnego. JeÅ›li " -"wyłączone, widoczny bÄ™dzie stary interfejs." - #: src/slic3r/GUI/Preferences.cpp:328 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -5999,15 +5820,6 @@ msgstr "" "JeÅ›li szacowany czas druku warstwy bÄ™dzie niższy niż ta wartość to prÄ™dkość " "ruchów drukujÄ…cych bÄ™dzie zmniejszona, aby wydÅ‚użyć czas druku." -#: src/libslic3r/PrintConfig.cpp:852 -msgid "" -"If this is enabled, fan will never be disabled and will be kept running at " -"least at its minimum speed. Useful for PLA, harmful for ABS." -msgstr "" -"Ta opcja spowoduje, że wentylator nie wyłączy siÄ™ podczas druku, tzn. zawsze " -"bÄ™dzie pracowaÅ‚ z przynajmniej minimalnÄ… prÄ™dkoÅ›ciÄ…. Przydatne dla PLA, może " -"szkodzić przy ABS." - #: src/slic3r/GUI/Preferences.cpp:131 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " @@ -6032,6 +5844,15 @@ msgstr "" "Włączenie spowoduje, że Slic3r bÄ™dzie za każdym razem pytaÅ‚ gdzie " "wyeksportować plik zamiast używać katalogu z plikami wejÅ›ciowymi." +#: src/libslic3r/PrintConfig.cpp:852 +msgid "" +"If this is enabled, fan will never be disabled and will be kept running at " +"least at its minimum speed. Useful for PLA, harmful for ABS." +msgstr "" +"Ta opcja spowoduje, że wentylator nie wyłączy siÄ™ podczas druku, tzn. zawsze " +"bÄ™dzie pracowaÅ‚ z przynajmniej minimalnÄ… prÄ™dkoÅ›ciÄ…. Przydatne dla PLA, może " +"szkodzić przy ABS." + #: src/slic3r/GUI/Preferences.cpp:214 msgid "" "If this is enabled, when starting PrusaSlicer and another instance of the " @@ -6167,26 +5988,6 @@ msgstr "Import konfiguracji z &projektu" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importuj konfiguracjÄ™ z ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:5265 -msgid "Import config only" -msgstr "Tylko import konfiguracji" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 -msgid "Import file" -msgstr "Import pliku" - -#: src/slic3r/GUI/Plater.cpp:5264 -msgid "Import geometry only" -msgstr "Tylko import geometrii" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 -msgid "Import model and profile" -msgstr "Import modelu i profilu" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 -msgid "Import model only" -msgstr "Import tylko modelu" - #: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 msgid "Import Object" msgstr "Import Modelu" @@ -6195,14 +5996,6 @@ msgstr "Import Modelu" msgid "Import Objects" msgstr "Importuj Modele" -#: src/slic3r/Utils/FixModelByWin10.cpp:395 -msgid "Import of the repaired 3mf file failed" -msgstr "Niepowodzenie importu naprawionego pliku 3MF" - -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 -msgid "Import profile only" -msgstr "Import tylko profilu" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Import SL1 / SL1S Archive" msgstr "Import archiwum SL1 / SL1S" @@ -6223,6 +6016,38 @@ msgstr "Import STL/OBJ/AM&F/3MF" msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Otwórz STL/OBJ/AMF/3MF bez konfiguracji, zachowaj zawartość stoÅ‚u" +#: src/slic3r/GUI/Plater.cpp:5265 +msgid "Import config only" +msgstr "Tylko import konfiguracji" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:40 +msgid "Import file" +msgstr "Import pliku" + +#: src/slic3r/GUI/Plater.cpp:5264 +msgid "Import geometry only" +msgstr "Tylko import geometrii" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:47 +msgid "Import model and profile" +msgstr "Import modelu i profilu" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:49 +msgid "Import model only" +msgstr "Import tylko modelu" + +#: src/slic3r/Utils/FixModelByWin10.cpp:395 +msgid "Import of the repaired 3mf file failed" +msgstr "Niepowodzenie importu naprawionego pliku 3MF" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:48 +msgid "Import profile only" +msgstr "Import tylko profilu" + +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 +msgid "Importing SLA archive" +msgstr "Importowanie archiwum SLA" + #: src/slic3r/GUI/Jobs/SLAImportJob.cpp:164 msgid "Importing canceled." msgstr "Importowanie anulowane." @@ -6231,18 +6056,6 @@ msgstr "Importowanie anulowane." msgid "Importing done." msgstr "Importowanie zakoÅ„czone." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:140 -msgid "Importing SLA archive" -msgstr "Importowanie archiwum SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -msgid "in" -msgstr "cale" - #: src/libslic3r/GCode.cpp:764 msgid "In the custom G-code were found reserved keywords:" msgstr "W niestandardowym G-code znajdowaÅ‚y siÄ™ zarezerwowane sÅ‚owa kluczowe:" @@ -6277,41 +6090,6 @@ msgstr "ZwiÄ™ksz ilość instancji" msgid "Increase/decrease edit area" msgstr "Zmniejsz/zwiÄ™ksz obszar edycji" -#. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4259 -msgid "" -"indicates that some settings were changed and are not equal to the system " -"(or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group " -"to the system (or default) values." -msgstr "" -"oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie odpowiadajÄ… " -"wartoÅ›ciom systemowym (lub domyÅ›lnym) w obecnej grupie opcji.\n" -"Kliknij ikonÄ™ OTWARTEJ KÅÓDKI, aby zresetować wszystkie ustawienia obecnej " -"grupy ustawieÅ„ do wartoÅ›ci systemowych (lub domyÅ›lnych)." - -#. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4255 -msgid "" -"indicates that the settings are the same as the system (or default) values " -"for the current option group" -msgstr "" -"wskazuje na to, że ustawienia sÄ… takie same jak systemowe (lub domyÅ›lne) " -"wartoÅ›ci dla danej grupy opcji" - -#. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4271 -msgid "" -"indicates that the settings were changed and are not equal to the last saved " -"preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group " -"to the last saved preset." -msgstr "" -"oznacza, że ustawienia zostaÅ‚y zmodyfikowane i nie odpowiadajÄ… tym z " -"ostatnio zapisanego zestawu ustawieÅ„ dla obecnej grupy opcji.\n" -"Kliknij ikonÄ™ STRZAÅKI W TYÅ, aby zresetować wszystkie ustawienia w obecnej " -"grupie opcji do tych z ostatnio zapisanego zestawu ustawieÅ„." - #: src/slic3r/GUI/ConfigManipulation.cpp:199 #: src/slic3r/GUI/GUI_Factories.cpp:55 src/slic3r/GUI/GUI_Factories.cpp:128 #: src/slic3r/GUI/Plater.cpp:460 src/slic3r/GUI/Tab.cpp:1506 @@ -6325,10 +6103,6 @@ msgstr "" msgid "Infill" msgstr "WypeÅ‚nienie" -#: src/slic3r/GUI/PresetHints.cpp:174 -msgid "infill" -msgstr "wypeÅ‚nienia" - #: src/libslic3r/PrintConfig.cpp:1467 msgid "Infill before perimeters" msgstr "WypeÅ‚nienie przed obrysami" @@ -6374,6 +6148,11 @@ msgstr "Wysokość pierwszej warstwy" msgid "Inner brim only" msgstr "Tylko wewnÄ™trzny brim" +#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 +#: src/slic3r/GUI/Field.cpp:1575 +msgid "Input value is out of range" +msgstr "Wartość poza zakresem" + #: src/slic3r/GUI/Field.cpp:266 #, c-format, boost-format msgid "" @@ -6383,11 +6162,6 @@ msgstr "" "Wprowadzona wartość jest poza zakresem.\n" "Czy na pewno %s to poprawna wartość i chcesz kontynuować?" -#: src/slic3r/GUI/Field.cpp:282 src/slic3r/GUI/Field.cpp:390 -#: src/slic3r/GUI/Field.cpp:1575 -msgid "Input value is out of range" -msgstr "Wartość poza zakresem" - #: resources/data/hints.ini: [hint:Insert Custom G-code] msgid "" "Insert Custom G-code\n" @@ -6461,10 +6235,6 @@ msgstr "Rozstaw wzoru warstw łączÄ…cych" msgid "Interface shells" msgstr "PowÅ‚oki łączÄ…ce" -#: src/libslic3r/miniz_extension.cpp:143 -msgid "internal error" -msgstr "błąd wewnÄ™trzny" - #: src/slic3r/GUI/GUI_App.cpp:713 #, boost-format msgid "Internal error: %1%" @@ -6475,6 +6245,10 @@ msgstr "Błąd wewnÄ™trzny: %1%." msgid "Internal infill" msgstr "WypeÅ‚nienie wewnÄ™trzne" +#: src/slic3r/GUI/ConfigManipulation.cpp:329 +msgid "Invalid Head penetration" +msgstr "NieprawidÅ‚owe przenikanie łączników podpór" + #: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 msgid "Invalid data" msgstr "NieprawidÅ‚owe dane" @@ -6484,18 +6258,6 @@ msgstr "NieprawidÅ‚owe dane" msgid "Invalid file format." msgstr "NieprawidÅ‚owy format pliku." -#: src/libslic3r/miniz_extension.cpp:139 -msgid "invalid filename" -msgstr "nieprawidÅ‚owa nazwa" - -#: src/slic3r/GUI/ConfigManipulation.cpp:329 -msgid "Invalid Head penetration" -msgstr "NieprawidÅ‚owe przenikanie łączników podpór" - -#: src/libslic3r/miniz_extension.cpp:107 -msgid "invalid header or archive is corrupted" -msgstr "niewÅ‚aÅ›ciwy nagłówek lub uszkodzone archiwum" - #: src/slic3r/GUI/Field.cpp:397 #, boost-format msgid "" @@ -6511,14 +6273,19 @@ msgstr "" msgid "Invalid numeric input." msgstr "NieprawidÅ‚owa wartość numeryczna." -#: src/libslic3r/miniz_extension.cpp:137 -msgid "invalid parameter" -msgstr "nieprawidÅ‚owy parametr" - #: src/slic3r/GUI/ConfigManipulation.cpp:342 msgid "Invalid pinhead diameter" msgstr "Błędna Å›rednica łącznika" +#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 +#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1577 +msgid "Ironing" +msgstr "Prasowanie" + #: resources/data/hints.ini: [hint:Ironing] msgid "" "Ironing\n" @@ -6534,34 +6301,14 @@ msgstr "" "materiaÅ‚. Przeczytaj wiÄ™cej w dokumentacji. (Wymaga trybu Zaawansowany lub " "Ekspert.)" -#: src/slic3r/GUI/GUI_Factories.cpp:129 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1516 src/libslic3r/ExtrusionEntity.cpp:324 -#: src/libslic3r/ExtrusionEntity.cpp:352 src/libslic3r/PrintConfig.cpp:1537 -#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1557 -#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1575 -#: src/libslic3r/PrintConfig.cpp:1577 -msgid "Ironing" -msgstr "Prasowanie" - #: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1544 msgid "Ironing Type" msgstr "Rodzaj prasowania" -#: src/slic3r/GUI/GUI_App.cpp:266 -msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." -msgstr "" -"bazuje na projekcie Slic3r autorstwa Alessandro Ranellucciego i spoÅ‚ecznoÅ›ci " -"RepRap." - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:588 msgid "Is it safe?" msgstr "Czy jest to bezpieczne?" -#. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 -msgid "is licensed under the" -msgstr "ma licencjÄ™ na warunkach" - #: src/slic3r/GUI/MainFrame.cpp:1114 msgid "Iso" msgstr "Izometryczny" @@ -6619,15 +6366,6 @@ msgstr "Jitter" msgid "Jump to height" msgstr "Przejdź do wysokoÅ›ci" -#: src/slic3r/GUI/DoubleSlider.cpp:1391 -#, c-format, boost-format -msgid "" -"Jump to height %s\n" -"or Set ruler mode" -msgstr "" -"Przejdź na wysokość %s \n" -"lub ustaw tryb linijki" - #: src/slic3r/GUI/DoubleSlider.cpp:1388 #, c-format, boost-format msgid "" @@ -6639,6 +6377,15 @@ msgstr "" "Ustaw tryb linijki\n" "lub ustaw sekwencjÄ™ ekstrudera dla caÅ‚ego wydruku" +#: src/slic3r/GUI/DoubleSlider.cpp:1391 +#, c-format, boost-format +msgid "" +"Jump to height %s\n" +"or Set ruler mode" +msgstr "" +"Przejdź na wysokość %s \n" +"lub ustaw tryb linijki" + #: src/slic3r/GUI/DoubleSlider.cpp:1385 src/slic3r/GUI/DoubleSlider.cpp:2254 msgid "Jump to move" msgstr "Przeskocz do ruchu" @@ -6681,9 +6428,25 @@ msgstr "Skróty klawiszowe" msgid "Keyboard shortcuts" msgstr "Skróty klawiszowe" -#: src/libslic3r/PrintConfig.cpp:3281 -msgid "kg" -msgstr "kg" +#: src/slic3r/GUI/Tab.cpp:4253 +msgid "LOCKED LOCK" +msgstr "ZAMKNIĘTA KÅÓDKA" + +#: src/slic3r/GUI/Tab.cpp:4281 +msgid "" +"LOCKED LOCK icon indicates that the settings are the same as the system (or " +"default) values for the current option group" +msgstr "" +"ZAMKNIĘTA KÅÓDKA oznacza, że ustawienia sÄ… takie same jak wartoÅ›ci systemowe " +"(lub domyÅ›lne) w obecnej grupie ustawieÅ„" + +#: src/slic3r/GUI/Tab.cpp:4297 +msgid "" +"LOCKED LOCK icon indicates that the value is the same as the system (or " +"default) value." +msgstr "" +"ZAMKNIĘTA KÅÓDKA oznacza, że wartoÅ›ci sÄ… takie same jak systemowe (lub " +"domyÅ›lne)." #: src/libslic3r/PrintConfig.cpp:1353 msgid "Label objects" @@ -6737,23 +6500,11 @@ msgstr "Limit wysokoÅ›ci warstw" msgid "Layer range Settings to modify" msgstr "Zakres warstw dla modyfikacji ustawieÅ„" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 -#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 -#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 -#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 -msgid "layers" -msgstr "warstwy" - #: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4500 #: src/slic3r/GUI/Tab.cpp:4591 msgid "Layers" msgstr "Warstwy" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 -msgid "Layers and perimeters" -msgstr "Warstwy i obrysy" - #: src/slic3r/GUI/GUI_Factories.cpp:54 src/slic3r/GUI/GUI_Factories.cpp:127 #: src/libslic3r/PrintConfig.cpp:264 src/libslic3r/PrintConfig.cpp:381 #: src/libslic3r/PrintConfig.cpp:424 src/libslic3r/PrintConfig.cpp:433 @@ -6767,15 +6518,9 @@ msgstr "Warstwy i obrysy" msgid "Layers and Perimeters" msgstr "Warstwy i Obrysy" -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Bottom" -msgstr "Spód" - -#: src/slic3r/GUI/OptionsGroup.cpp:352 -msgctxt "Layers" -msgid "Top" -msgstr "Góra" +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4589 +msgid "Layers and perimeters" +msgstr "Warstwy i obrysy" #: src/slic3r/GUI/Preferences.cpp:763 msgid "Layout Options" @@ -6790,6 +6535,14 @@ msgstr "Zostaw opcjÄ™ \"%1%\" włączonÄ…" msgid "Left" msgstr "Lewo" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +msgid "Left Preset Value" +msgstr "Wartość z zestawu ustawieÅ„ po lewej" + +#: src/slic3r/GUI/MainFrame.cpp:1127 +msgid "Left View" +msgstr "Widok lewy" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1215 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1218 #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1219 @@ -6806,14 +6559,6 @@ msgstr "Lewy przycisk myszy" msgid "Left mouse button:" msgstr "Lewy przycisk myszy:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 -msgid "Left Preset Value" -msgstr "Wartość z zestawu ustawieÅ„ po lewej" - -#: src/slic3r/GUI/MainFrame.cpp:1127 -msgid "Left View" -msgstr "Widok lewy" - #: src/slic3r/GUI/GUI_Preview.cpp:1060 msgid "Legend/Estimated printing time" msgstr "Legenda/szacowany czas drukowania" @@ -6839,6 +6584,10 @@ msgstr "" "Umowy licencyjne dla wszystkich części programu (bibliotek) sÄ… częściÄ… umowy " "licencyjnej programu" +#: src/libslic3r/PrintConfig.cpp:2153 +msgid "Lift Z" +msgstr "Z-hop" + #: src/libslic3r/PrintConfig.cpp:4358 msgid "" "Lift the object above the bed when it is partially below. Enabled by " @@ -6847,10 +6596,6 @@ msgstr "" "PodnieÅ› model, jeÅ›li jest częściowo obniżony poniżej stoÅ‚u. DomyÅ›lnie " "włączone, użyj --no-ensure-on-bed, aby wyłączyć." -#: src/libslic3r/PrintConfig.cpp:2153 -msgid "Lift Z" -msgstr "Z-hop" - #: src/libslic3r/PrintConfig.cpp:1161 msgid "Lightning" msgstr "Lightning" @@ -6867,18 +6612,42 @@ msgstr "Linia" msgid "Load" msgstr "ZaÅ‚aduj" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Wczytaj KonfiguracjÄ™ z ini/amf/3mf/gcode i złącz" + +#: src/slic3r/GUI/Plater.cpp:5408 +msgid "Load File" +msgstr "Wczytaj plik" + +#: src/slic3r/GUI/Plater.cpp:5413 +msgid "Load Files" +msgstr "Wczytaj pliki" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Modifier" +msgstr "Wczytaj modyfikator" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 +msgid "Load Part" +msgstr "Wczytaj Element" + +#: src/slic3r/GUI/Plater.cpp:5100 +msgid "Load Project" +msgstr "Wczytaj Projekt" + #: src/slic3r/GUI/MainFrame.cpp:1201 msgid "Load a model" msgstr "Wczytaj model" -#: src/slic3r/GUI/MainFrame.cpp:1205 -msgid "Load an model saved with imperial units" -msgstr "Wczytaj model zapisany w jednostkach imperialnych" - #: src/slic3r/GUI/MainFrame.cpp:1209 msgid "Load an SL1 / Sl1S archive" msgstr "Wczytaj archiwum SL1 / SL1S" +#: src/slic3r/GUI/MainFrame.cpp:1205 +msgid "Load an model saved with imperial units" +msgstr "Wczytaj model zapisany w jednostkach imperialnych" + #: src/libslic3r/PrintConfig.cpp:4454 msgid "" "Load and store settings at the given directory. This is useful for " @@ -6906,10 +6675,6 @@ msgstr "" "W podobny sposób możesz użyć menu \"Plik -> Import -> Import archiwum SL1/" "SL1S\", co pozwala również na odtworzenie modeli 3D z danych wokselowych." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:85 -msgid "Load Config from ini/amf/3mf/gcode and merge" -msgstr "Wczytaj KonfiguracjÄ™ z ini/amf/3mf/gcode i złącz" - #: src/slic3r/GUI/MainFrame.cpp:1217 msgid "Load configuration from project file" msgstr "Wczytaj konfiguracjÄ™ z pliku projektu" @@ -6926,30 +6691,10 @@ msgstr "" msgid "Load exported configuration file" msgstr "Wczytaj wyeksportowany plik konfiguracyjny" -#: src/slic3r/GUI/Plater.cpp:5408 -msgid "Load File" -msgstr "Wczytaj plik" - -#: src/slic3r/GUI/Plater.cpp:5413 -msgid "Load Files" -msgstr "Wczytaj pliki" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Modifier" -msgstr "Wczytaj modyfikator" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1413 -msgid "Load Part" -msgstr "Wczytaj Element" - #: src/slic3r/GUI/MainFrame.cpp:1221 msgid "Load presets from a bundle" msgstr "Wczytaj zestaw ustawieÅ„" -#: src/slic3r/GUI/Plater.cpp:5100 -msgid "Load Project" -msgstr "Wczytaj Projekt" - #: src/slic3r/GUI/BedShapeDialog.cpp:203 msgid "Load shape from STL..." msgstr "Wczytaj ksztaÅ‚t z STL..." @@ -6958,10 +6703,6 @@ msgstr "Wczytaj ksztaÅ‚t z STL..." msgid "Load..." msgstr "Otwórz..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:309 -msgid "loaded" -msgstr "zaÅ‚adowano" - #: src/slic3r/GUI/GUI_ObjectList.cpp:1509 src/slic3r/GUI/Plater.cpp:2379 msgid "Loading" msgstr "Åadowanie" @@ -7025,26 +6766,6 @@ msgstr "Lokalny ukÅ‚ad współrzÄ™dnych" msgid "Lock supports under new islands" msgstr "Zablokuj podpory pod nowymi wyspami" -#: src/slic3r/GUI/Tab.cpp:4253 -msgid "LOCKED LOCK" -msgstr "ZAMKNIĘTA KÅÓDKA" - -#: src/slic3r/GUI/Tab.cpp:4281 -msgid "" -"LOCKED LOCK icon indicates that the settings are the same as the system (or " -"default) values for the current option group" -msgstr "" -"ZAMKNIĘTA KÅÓDKA oznacza, że ustawienia sÄ… takie same jak wartoÅ›ci systemowe " -"(lub domyÅ›lne) w obecnej grupie ustawieÅ„" - -#: src/slic3r/GUI/Tab.cpp:4297 -msgid "" -"LOCKED LOCK icon indicates that the value is the same as the system (or " -"default) value." -msgstr "" -"ZAMKNIĘTA KÅÓDKA oznacza, że wartoÅ›ci sÄ… takie same jak systemowe (lub " -"domyÅ›lne)." - #: src/libslic3r/PrintConfig.cpp:4457 msgid "Logging level" msgstr "Poziom logowania" @@ -7078,13 +6799,6 @@ msgstr "" "Limity maszynowe nie zostaÅ‚y ustawione, dlatego szacowany czas druku może " "odbiegać od rzeczywistoÅ›ci." -#: src/slic3r/GUI/Tab.cpp:4224 -msgid "" -"Machine limits will be emitted to G-code and used to estimate print time." -msgstr "" -"Limity maszynowe zostanÄ… przekazane do G-code i użyte do obliczenia czasu " -"drukowania." - #: src/slic3r/GUI/Tab.cpp:4227 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " @@ -7095,6 +6809,13 @@ msgstr "" "obliczenia czasu drukowania, który może okazać siÄ™ niedokÅ‚adny, ponieważ " "drukarka może zastosować inne." +#: src/slic3r/GUI/Tab.cpp:4224 +msgid "" +"Machine limits will be emitted to G-code and used to estimate print time." +msgstr "" +"Limity maszynowe zostanÄ… przekazane do G-code i użyte do obliczenia czasu " +"drukowania." + #: src/libslic3r/GCode.cpp:576 msgid "" "Make sure the object is printable. This is usually caused by negligibly " @@ -7116,7 +6837,7 @@ msgstr "Maskowany plik SLA wyeksportowany do %1%" #: src/slic3r/GUI/Tab.cpp:4004 msgid "Match single line" -msgstr "Dopasowanie pojedynczego wiersza" +msgstr "Dopasuj pojedynczy wiersz" #: src/slic3r/GUI/MainFrame.cpp:1582 msgid "Mate&rial Settings Tab" @@ -7126,10 +6847,6 @@ msgstr "Ustawienia mate&riaÅ‚u" msgid "Material" msgstr "MateriaÅ‚" -#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 -msgid "Material printing profile" -msgstr "Profil materiaÅ‚u używanego do drukowania" - #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 #: src/slic3r/GUI/Tab.hpp:522 @@ -7140,6 +6857,10 @@ msgstr "Ustawienia materiaÅ‚u" msgid "Material Settings Tab" msgstr "Ustawienia materiaÅ‚u" +#: src/slic3r/GUI/Tab.cpp:4546 src/slic3r/GUI/Tab.cpp:4547 +msgid "Material printing profile" +msgstr "Profil materiaÅ‚u używanego do drukowania" + #: src/libslic3r/PrintConfig.cpp:1749 src/libslic3r/PrintConfig.cpp:1758 msgid "Max" msgstr "Max" @@ -7168,10 +6889,6 @@ msgstr "Maksymalna wysokość wydruku" msgid "Max print speed" msgstr "Maksymalna prÄ™dkość druku" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 -msgid "max PrusaSlicer version" -msgstr "max wersja PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:1800 msgid "Max volumetric slope negative" msgstr "Maksymalny negatywny kÄ…t zwisu" @@ -7196,6 +6913,18 @@ msgstr "Minimalny odstÄ™p pomiÄ™dzy podporami w sekcjach rzadkiego wypeÅ‚nienia. msgid "Maximum acceleration E" msgstr "Maksymalne przyspieszenie E" +#: src/libslic3r/PrintConfig.cpp:1661 +msgid "Maximum acceleration X" +msgstr "Maksymalne przyspieszenie X" + +#: src/libslic3r/PrintConfig.cpp:1662 +msgid "Maximum acceleration Y" +msgstr "Maksymalne przyspieszenie Y" + +#: src/libslic3r/PrintConfig.cpp:1663 +msgid "Maximum acceleration Z" +msgstr "Maksymalne przyspieszenie Z" + #: src/libslic3r/PrintConfig.cpp:1740 msgid "Maximum acceleration for travel moves" msgstr "Maksymalne przyspieszenie podczas ruchów jaÅ‚owych" @@ -7244,18 +6973,6 @@ msgstr "Maksymalne przyspieszenie podczas retrakcji" msgid "Maximum acceleration when retracting (M204 R)" msgstr "Maksymalne przyspieszenie przy retrakcji (M204 R)" -#: src/libslic3r/PrintConfig.cpp:1661 -msgid "Maximum acceleration X" -msgstr "Maksymalne przyspieszenie X" - -#: src/libslic3r/PrintConfig.cpp:1662 -msgid "Maximum acceleration Y" -msgstr "Maksymalne przyspieszenie Y" - -#: src/libslic3r/PrintConfig.cpp:1663 -msgid "Maximum acceleration Z" -msgstr "Maksymalne przyspieszenie Z" - #: src/slic3r/GUI/Tab.cpp:2655 msgid "Maximum accelerations" msgstr "Maksymalne przyspieszenia" @@ -7286,6 +7003,18 @@ msgstr "Maksymalny czas naÅ›wietlania" msgid "Maximum feedrate E" msgstr "Maksymalny posuw E" +#: src/libslic3r/PrintConfig.cpp:1644 +msgid "Maximum feedrate X" +msgstr "Maksymalny posuw osi X" + +#: src/libslic3r/PrintConfig.cpp:1645 +msgid "Maximum feedrate Y" +msgstr "Maksymalny posuw Y" + +#: src/libslic3r/PrintConfig.cpp:1646 +msgid "Maximum feedrate Z" +msgstr "Maksymalny posuw Z" + #: src/libslic3r/PrintConfig.cpp:1653 msgid "Maximum feedrate of the E axis" msgstr "Maksymalny posuw (prÄ™dkość ruchu) osi E (ekstrudera)" @@ -7302,18 +7031,6 @@ msgstr "Maksymalny posuw (prÄ™dkość ruchu) osi Y" msgid "Maximum feedrate of the Z axis" msgstr "Maksymalny posuw (prÄ™dkość ruchu) osi Z" -#: src/libslic3r/PrintConfig.cpp:1644 -msgid "Maximum feedrate X" -msgstr "Maksymalny posuw osi X" - -#: src/libslic3r/PrintConfig.cpp:1645 -msgid "Maximum feedrate Y" -msgstr "Maksymalny posuw Y" - -#: src/libslic3r/PrintConfig.cpp:1646 -msgid "Maximum feedrate Z" -msgstr "Maksymalny posuw Z" - #: src/slic3r/GUI/Tab.cpp:2650 msgid "Maximum feedrates" msgstr "Maksymalne prÄ™dkoÅ›ci posuwu" @@ -7326,6 +7043,18 @@ msgstr "Maksymalny poczÄ…tkowy czas naÅ›wietlania" msgid "Maximum jerk E" msgstr "Maksymalny jerk E" +#: src/libslic3r/PrintConfig.cpp:1678 +msgid "Maximum jerk X" +msgstr "Maksymalny jerk X" + +#: src/libslic3r/PrintConfig.cpp:1679 +msgid "Maximum jerk Y" +msgstr "Maksymalny jerk Y" + +#: src/libslic3r/PrintConfig.cpp:1680 +msgid "Maximum jerk Z" +msgstr "Maksymalny jerk Z" + #: src/libslic3r/PrintConfig.cpp:1687 msgid "Maximum jerk of the E axis" msgstr "Maksymalny jerk dla osi E (ekstrudera)" @@ -7342,18 +7071,6 @@ msgstr "Maksymalny jerk osi Y" msgid "Maximum jerk of the Z axis" msgstr "Maksymalny jerk dla osi Z" -#: src/libslic3r/PrintConfig.cpp:1678 -msgid "Maximum jerk X" -msgstr "Maksymalny jerk X" - -#: src/libslic3r/PrintConfig.cpp:1679 -msgid "Maximum jerk Y" -msgstr "Maksymalny jerk Y" - -#: src/libslic3r/PrintConfig.cpp:1680 -msgid "Maximum jerk Z" -msgstr "Maksymalny jerk Z" - #: src/libslic3r/PrintConfig.cpp:1423 msgid "Maximum length of the infill anchor" msgstr "Maksymalna dÅ‚ugość kotwiczenia wypeÅ‚nienia" @@ -7445,10 +7162,6 @@ msgstr "Min" msgid "Min print speed" msgstr "Minimalna prÄ™dkość druku" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 -msgid "min PrusaSlicer version" -msgstr "min wersja PrusaSlicer" - #: src/libslic3r/PrintConfig.cpp:3597 msgid "Minimal distance of the support points" msgstr "Minimalne rozmieszczenie punktów podpór" @@ -7511,6 +7224,10 @@ msgstr "Minimalna prÄ™dkość posuwu" msgid "Minimum initial exposure time" msgstr "Minimalny poczÄ…tkowy czas naÅ›wietlania" +#: src/slic3r/GUI/Tab.cpp:1475 +msgid "Minimum shell thickness" +msgstr "Minimalna grubość powÅ‚oki" + #: resources/data/hints.ini: [hint:Minimum shell thickness] msgid "" "Minimum shell thickness\n" @@ -7523,10 +7240,6 @@ msgstr "" "MinimalnÄ… grubość powÅ‚oki w milimetrach? Ta cecha jest szczególnie " "przydatna, gdy używasz funkcji zmiennej wysokoÅ›ci warstwy." -#: src/slic3r/GUI/Tab.cpp:1475 -msgid "Minimum shell thickness" -msgstr "Minimalna grubość powÅ‚oki" - #: src/libslic3r/PrintConfig.cpp:2374 src/libslic3r/PrintConfig.cpp:2375 msgid "Minimum thickness of a top / bottom shell" msgstr "Minimalna grubość górnej/dolnej powÅ‚oki" @@ -7562,6 +7275,10 @@ msgid "" msgstr "" "Minimalna szerokość detali do zachowania podczas kompensacji stopy sÅ‚onia." +#: src/slic3r/GUI/GUI_Factories.cpp:885 +msgid "Mirror" +msgstr "Lustrzane" + #: resources/data/hints.ini: [hint:Mirror] msgid "" "Mirror\n" @@ -7573,18 +7290,14 @@ msgstr "" "odwróconÄ… wersjÄ™? Kliknij prawym przyciskiem myszy na model, wybierz " "\"Lustrzane\", nastÄ™pnie oÅ›, w której ma zostać odbity." -#: src/slic3r/GUI/GUI_Factories.cpp:885 -msgid "Mirror" -msgstr "Lustrzane" +#: src/slic3r/GUI/GLCanvas3D.cpp:1684 +msgid "Mirror Object" +msgstr "Odbicie Lustrzane" #: src/libslic3r/PrintConfig.cpp:3131 msgid "Mirror horizontally" msgstr "Odbij w poziomie" -#: src/slic3r/GUI/GLCanvas3D.cpp:1684 -msgid "Mirror Object" -msgstr "Odbicie Lustrzane" - #: src/slic3r/GUI/GUI_Factories.cpp:885 msgid "Mirror the selected object" msgstr "Odbicie lustrzane wybranego modelu" @@ -7615,133 +7328,10 @@ msgstr "NiepasujÄ…cy typ serwera wydruku: %s" msgid "Mixed" msgstr "Mieszane" -#: src/libslic3r/PrintConfig.cpp:3274 -msgid "ml" -msgstr "ml" - -#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 -#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 -#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 -#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 -#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 -#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 -#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 -#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 -#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 -#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 -#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 -#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 -#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 -#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 -#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 -#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 -#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 -#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 -#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 -#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 -#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 -#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 -#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 -#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 -#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 -#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 -#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 -#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 -#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 -#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 -#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 -#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 -#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 -#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 -#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 -#: src/libslic3r/PrintConfig.cpp:3767 -msgid "mm" -msgstr "mm" - -#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2148 -msgid "mm (zero to disable)" -msgstr "mm (zero, aby wyłączyć)" - -#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 -#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 -#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 -#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 -#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 -#: src/libslic3r/PrintConfig.cpp:2845 -msgid "mm or %" -msgstr "mm lub %" - -#: src/libslic3r/PrintConfig.cpp:385 -msgid "mm or % (zero to disable)" -msgstr "mm lub % (zero, aby wyłączyć)" - -#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 -#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 -#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 -#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 -#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 -#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 -#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 -#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 -msgid "mm/s" -msgstr "mm/s" - -#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 -#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 -#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 -#: src/libslic3r/PrintConfig.cpp:2859 -msgid "mm/s or %" -msgstr "mm/s lub %" - -#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 -#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 -#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 -msgid "mm/s²" -msgstr "mm/s²" - -#: src/libslic3r/PrintConfig.cpp:2316 -msgid "mm²" -msgstr "mm²" - -#: src/libslic3r/PrintConfig.cpp:957 -msgid "mm³" -msgstr "mm³" - -#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 -#: src/libslic3r/PrintConfig.cpp:1782 -msgid "mm³/s" -msgstr "mm³/s" - -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 -msgid "mm³/s²" -msgstr "mm³/s²" - #: src/slic3r/GUI/GUI_App.cpp:2245 msgid "Mode" msgstr "&Tryb" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "model" -msgstr "model" - #: src/slic3r/GUI/BedShapeDialog.cpp:344 msgid "Model" msgstr "Model" @@ -7754,19 +7344,10 @@ msgstr "Anulowano naprawÄ™ modelu" msgid "Model repair finished" msgstr "UkoÅ„czono naprawÄ™ modelu" -#: src/slic3r/GUI/GUI_App.cpp:2239 src/slic3r/GUI/wxExtensions.cpp:710 -msgctxt "Mode" -msgid "Advanced" -msgstr "Zaawansowany" - #: src/slic3r/GUI/Tab.cpp:1319 msgid "Modifications to the current profile will be saved." msgstr "Modyfikacje zostanÄ… zapisane na obecnym profilu." -#: src/slic3r/GUI/GUI_App.cpp:2159 -msgid "modified" -msgstr "zmodyfikowano" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Modifier" msgstr "Modyfikator" @@ -7775,14 +7356,6 @@ msgstr "Modyfikator" msgid "Modifiers" msgstr "Modyfikatory" -#: src/libslic3r/PrintConfig.cpp:3295 -msgid "money/bottle" -msgstr "pieniÄ™dzy/butelkÄ™" - -#: src/libslic3r/PrintConfig.cpp:1047 -msgid "money/kg" -msgstr "pieniÄ™dzy/kg" - #: src/libslic3r/PrintConfig.cpp:705 msgid "Monotonic" msgstr "Monotoniczny" @@ -7814,6 +7387,10 @@ msgstr "Kółko myszy:" msgid "Move" msgstr "PrzesuÅ„" +#: src/slic3r/GUI/GLCanvas3D.cpp:3245 +msgid "Move Object" +msgstr "PrzesuÅ„ Model" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:234 msgid "Move active thumb Down" msgstr "PrzesuÅ„ aktywny punkt w dół" @@ -7838,10 +7415,6 @@ msgstr "PrzesuniÄ™cie pÅ‚aszczyzny przecinania" msgid "Move drainage hole" msgstr "PrzesuÅ„ otwór odpÅ‚ywowy" -#: src/slic3r/GUI/GLCanvas3D.cpp:3245 -msgid "Move Object" -msgstr "PrzesuÅ„ Model" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1217 msgid "Move point" msgstr "PrzesuÅ„ punkt" @@ -7931,6 +7504,14 @@ msgstr "Pomnóż ilość kopii przez tÄ™ wartość." msgid "N/A" msgstr "N/D" +#: src/slic3r/GUI/RammingChart.cpp:29 +msgid "NO RAMMING AT ALL" +msgstr "BRAK WYCISKANIA" + +#: src/slic3r/GUI/GUI_Preview.cpp:728 +msgid "NOTE:" +msgstr "UWAGA:" + #: src/slic3r/GUI/GUI_ObjectList.cpp:297 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:139 msgid "Name" @@ -7962,6 +7543,10 @@ msgstr "Nazwy zestawów ustawieÅ„ odnoszÄ…cych siÄ™ do drukarki fizycznej" msgid "Nearest" msgstr "Najbliższy" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 +msgid "Negative Volume" +msgstr "Odejmowanie ksztaÅ‚tu" + #: resources/data/hints.ini: [hint:Negative volume] msgid "" "Negative volume\n" @@ -7976,14 +7561,18 @@ msgstr "" "skalowania otwory bezpoÅ›rednio w PrusaSlicer. Przeczytaj wiÄ™cej w " "dokumentacji. (Wymaga trybu \"Zaawansowany\" lub \"Ekspert\")." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3780 -msgid "Negative Volume" -msgstr "Odejmowanie ksztaÅ‚tu" - #: src/slic3r/GUI/BonjourDialog.cpp:55 msgid "Network lookup" msgstr "PodglÄ…d sieci" +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +msgid "New Project" +msgstr "Nowy Projekt" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +msgid "New Value" +msgstr "Nowa wartość" + #: src/slic3r/GUI/Preferences.cpp:744 msgid "New layout, access via settings button in the top menu" msgstr "Nowy ukÅ‚ad z dostÄ™pem przez przycisk ustawieÅ„ w górnym menu" @@ -7997,10 +7586,6 @@ msgstr "DostÄ™pna jest nowa wersja przedpremierowa %1% ." msgid "New printer preset selected" msgstr "Wybrano nowy zestaw ustawieÅ„ drukarki" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 -msgid "New Project" -msgstr "Nowy Projekt" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:77 msgid "New project, clear plater" msgstr "Nowy projekt, wyczyść stół" @@ -8010,10 +7595,6 @@ msgstr "Nowy projekt, wyczyść stół" msgid "New release version %1% is available." msgstr "DostÄ™pna jest nowa wersja stabilna %1%." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 -msgid "New Value" -msgstr "Nowa wartość" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 #, c-format, boost-format msgid "New version of %s is available" @@ -8065,10 +7646,6 @@ msgstr "" msgid "No previously sliced file." msgstr "Brak poprzednio pociÄ™tych plików." -#: src/slic3r/GUI/RammingChart.cpp:29 -msgid "NO RAMMING AT ALL" -msgstr "BRAK WYCISKANIA" - #: src/libslic3r/PrintConfig.cpp:2471 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Brak warstw bez czyszczenia (EKSPERYMENTALNE)" @@ -8093,18 +7670,10 @@ msgstr "Brak" msgid "Normal" msgstr "Normalny" -#: src/slic3r/GUI/Plater.cpp:1428 -msgid "normal mode" -msgstr "tryb normalny" - #: src/slic3r/GUI/GCodeViewer.cpp:3754 msgid "Normal mode" msgstr "Tryb normalny" -#: src/libslic3r/miniz_extension.cpp:105 -msgid "not a ZIP archive" -msgstr "nie jest archiwum ZIP" - #: src/slic3r/GUI/BedShapeDialog.cpp:317 src/slic3r/GUI/BedShapeDialog.cpp:388 msgid "Not found:" msgstr "Nie znaleziono:" @@ -8148,10 +7717,6 @@ msgstr[3] "" "Weź pod uwagÄ™, że te drukarki zostanÄ… usuniÄ™te przy usuwaniu wybranego " "zestawu ustawieÅ„." -#: src/slic3r/GUI/GUI_Preview.cpp:728 -msgid "NOTE:" -msgstr "UWAGA:" - #: src/slic3r/GUI/Tab.cpp:2249 msgid "" "Note: All parameters from this group are moved to the Physical Printer " @@ -8194,14 +7759,14 @@ msgstr "Uwaga: wymagany jest OctoPrint w wersji 1.1.0 lub wyższej." msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Uwaga: Wymagana jest wersja Repetiera 0.90.0 lub wyższa." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 -msgid "Note: some shortcuts work in (non)editing mode only." -msgstr "Uwaga: niektóre skróty dziaÅ‚ajÄ… tylko poza trybem edycji." - #: src/slic3r/GUI/SavePresetDialog.cpp:137 msgid "Note: This preset will be replaced after saving" msgstr "Uwaga: ten zestaw ustawieÅ„ zostanie zastÄ…piony po zapisaniu" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1197 +msgid "Note: some shortcuts work in (non)editing mode only." +msgstr "Uwaga: niektóre skróty dziaÅ‚ajÄ… tylko poza trybem edycji." + #: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1717 #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 @@ -8220,14 +7785,14 @@ msgstr "Uwaga" msgid "Notify about new releases" msgstr "Powiadamiaj o nowych wydaniach" -#: src/slic3r/GUI/ConfigWizard.cpp:262 -msgid "nozzle" -msgstr "dysza" - #: src/slic3r/GUI/Tab.cpp:1984 msgid "Nozzle" msgstr "Dysza" +#: src/slic3r/GUI/ConfigWizard.cpp:1475 +msgid "Nozzle Diameter:" +msgstr "Åšrednica dyszy:" + #: src/slic3r/GUI/ConfigWizard.cpp:1547 msgid "Nozzle and Bed Temperatures" msgstr "Temperatury dyszy oraz stoÅ‚u" @@ -8237,10 +7802,6 @@ msgstr "Temperatury dyszy oraz stoÅ‚u" msgid "Nozzle diameter" msgstr "Åšrednica dyszy" -#: src/slic3r/GUI/ConfigWizard.cpp:1475 -msgid "Nozzle Diameter:" -msgstr "Åšrednica dyszy:" - #: src/libslic3r/PrintConfig.cpp:2793 msgid "Nozzle temperature" msgstr "Temperatura dyszy" @@ -8331,13 +7892,9 @@ msgstr "" msgid "Number of tool changes" msgstr "Ilość zmian narzÄ™dzi" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "object" -msgid_plural "objects" -msgstr[0] "obiekt" -msgstr[1] "obiekty" -msgstr[2] "obiekty" -msgstr[3] "obiekty" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 +msgid "Object Settings to modify" +msgstr "Ustawienia modelu do modyfikacji" #: src/slic3r/GUI/Tab.cpp:4709 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" @@ -8364,10 +7921,6 @@ msgstr "Model lub instancja" msgid "Object reordered" msgstr "Model przeorganizowany" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2477 -msgid "Object Settings to modify" -msgstr "Ustawienia modelu do modyfikacji" - #: src/slic3r/GUI/Plater.cpp:2536 #, c-format, boost-format msgid "" @@ -8404,10 +7957,6 @@ msgstr "" "czyszczÄ…cej i aby skrócić czas wydruku. W rezultacie kolor tego modelu " "bÄ™dzie niejednolity." -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "objects" -msgstr "modele" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Objects List" msgstr "Lista obiektów" @@ -8420,15 +7969,6 @@ msgstr "Spirala oÅ›miokÄ…tna" msgid "OctoPrint version" msgstr "Wersja OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 -msgid "of a current Object" -msgstr "obecnego Modelu" - -#: src/slic3r/GUI/PrintHostDialogs.cpp:251 -msgctxt "OfFile" -msgid "Size" -msgstr "OfFile||Rozmiar" - #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:32 msgid "Offset" msgstr "Offset" @@ -8441,14 +7981,14 @@ msgstr "" "OdlegÅ‚ość brimu od drukowanego obiektu. PrzesuniÄ™cie jest stosowane po " "kompensacji stopy sÅ‚onia." -#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 -msgid "Old regular layout with the tab bar" -msgstr "Poprzedni ukÅ‚ad z paskiem kart" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 msgid "Old Value" msgstr "Poprzednia wartość" +#: src/slic3r/GUI/Preferences.cpp:743 src/slic3r/GUI/Preferences.cpp:754 +msgid "Old regular layout with the tab bar" +msgstr "Poprzedni ukÅ‚ad z paskiem kart" + #: src/slic3r/GUI/Preferences.cpp:210 msgid "" "On OSX there is always only one instance of app running by default. However " @@ -8532,14 +8072,6 @@ msgstr "Z-hop tylko poniżej" msgid "Only retract when crossing perimeters" msgstr "Retrakcja tylko przy przechodzeniu nad obrysami" -#: src/slic3r/GUI/ConfigWizard.cpp:778 -msgid "" -"Only the following installed printers are compatible with the selected " -"filaments" -msgstr "" -"Tylko nastÄ™pujÄ…ce zainstalowane drukarki sÄ… kompatybilne z wybranymi " -"filamentami" - #: src/slic3r/GUI/ConfigWizard.cpp:779 msgid "" "Only the following installed printers are compatible with the selected SLA " @@ -8548,6 +8080,14 @@ msgstr "" "Tylko nastÄ™pujÄ…ce zainstalowane drukarki sÄ… kompatybilne z wybranymi " "materiaÅ‚ami SLA" +#: src/slic3r/GUI/ConfigWizard.cpp:778 +msgid "" +"Only the following installed printers are compatible with the selected " +"filaments" +msgstr "" +"Tylko nastÄ™pujÄ…ce zainstalowane drukarki sÄ… kompatybilne z wybranymi " +"filamentami" + #: src/slic3r/GUI/Tab.cpp:1630 msgid "Ooze prevention" msgstr "Zapobieganie wyciekom (ooze)" @@ -8562,6 +8102,38 @@ msgstr "" msgid "Open &PrusaSlicer" msgstr "Otwórz &PrusaSlicer" +#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 +msgid "Open CA certificate file" +msgstr "Otwórz plik certyfikatu CA" + +#: src/slic3r/GUI/HintNotification.cpp:1000 +msgid "Open Documentation in web browser." +msgstr "Otwórz dokumentacjÄ™ w przeglÄ…darce internetowej." + +#: src/slic3r/GUI/NotificationManager.cpp:664 +msgid "Open Folder." +msgstr "Otwórz folder." + +#: src/slic3r/Utils/Process.cpp:157 +msgid "Open G-code file:" +msgstr "Otwórz plik G-code:" + +#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 +msgid "Open G-code viewer" +msgstr "Otwórz przeglÄ…darkÄ™ G-code" + +#: src/slic3r/GUI/MainFrame.cpp:1413 +msgid "Open New Instance" +msgstr "Otwórz nowÄ… instancjÄ™" + +#: src/slic3r/GUI/HintNotification.cpp:908 +msgid "Open Preferences." +msgstr "Otwórz Preferencje." + +#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 +msgid "Open PrusaSlicer" +msgstr "Otwórz PrusaSlicer " + #: src/slic3r/GUI/KBShortcutsDialog.cpp:205 src/slic3r/GUI/MainFrame.cpp:1518 msgid "Open a G-code file" msgstr "Otwórz plik G-code" @@ -8579,35 +8151,15 @@ msgstr "Otwórz plik projektu" msgid "Open as project" msgstr "Otwórz jako projekt" -#: src/slic3r/GUI/PhysicalPrinterDialog.cpp:375 -msgid "Open CA certificate file" -msgstr "Otwórz plik certyfikatu CA" - #: src/slic3r/GUI/UpdateDialogs.cpp:59 src/slic3r/GUI/UpdateDialogs.cpp:133 #: src/slic3r/GUI/UpdateDialogs.cpp:191 msgid "Open changelog page" msgstr "Otwórz stronÄ™ z listami zmian" -#: src/slic3r/GUI/HintNotification.cpp:1000 -msgid "Open Documentation in web browser." -msgstr "Otwórz dokumentacjÄ™ w przeglÄ…darce internetowej." - #: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Otwórz stronÄ™ pobierania" -#: src/slic3r/GUI/NotificationManager.cpp:664 -msgid "Open Folder." -msgstr "Otwórz folder." - -#: src/slic3r/Utils/Process.cpp:157 -msgid "Open G-code file:" -msgstr "Otwórz plik G-code:" - -#: src/slic3r/GUI/MainFrame.cpp:78 src/slic3r/GUI/MainFrame.cpp:1301 -msgid "Open G-code viewer" -msgstr "Otwórz przeglÄ…darkÄ™ G-code" - #: src/slic3r/GUI/GUI_App.cpp:3067 src/slic3r/GUI/GUI_App.cpp:3090 msgid "Open hyperlink in default browser?" msgstr "Otworzyć hiperłącze w domyÅ›lnej przeglÄ…darce?" @@ -8620,35 +8172,23 @@ msgstr "Otwórz nowÄ… przeglÄ…darkÄ™ G-code" msgid "Open new instance" msgstr "Otwórz nowÄ… instancjÄ™" -#: src/slic3r/GUI/MainFrame.cpp:1413 -msgid "Open New Instance" -msgstr "Otwórz nowÄ… instancjÄ™" - -#: src/slic3r/GUI/HintNotification.cpp:908 -msgid "Open Preferences." -msgstr "Otwórz Preferencje." - #: src/slic3r/GUI/KBShortcutsDialog.cpp:78 msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Otwórz projekt STL/OBJ/AMF/3MF z konfiguracjÄ…, wyczyść stół" -#: src/slic3r/GUI/MainFrame.cpp:89 src/slic3r/GUI/MainFrame.cpp:1534 -msgid "Open PrusaSlicer" -msgstr "Otwórz PrusaSlicer " - #: src/slic3r/GUI/MainFrame.cpp:1079 #, c-format, boost-format msgid "Open the %s website in your browser" msgstr "Otwórz stronÄ™ %s w przeglÄ…darce" -#: src/slic3r/GUI/MainFrame.cpp:1397 -msgid "Open the dialog to modify shape gallery" -msgstr "Otwórz okno dialogowe, aby zmodyfikować galeriÄ™ ksztaÅ‚tów" - #: src/slic3r/GUI/MainFrame.cpp:1070 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otwórz stronÄ™ Prusa3D ze sterownikami w przeglÄ…darce" +#: src/slic3r/GUI/MainFrame.cpp:1397 +msgid "Open the dialog to modify shape gallery" +msgstr "Otwórz okno dialogowe, aby zmodyfikować galeriÄ™ ksztaÅ‚tów" + #: src/slic3r/GUI/MainFrame.cpp:1072 msgid "Open the software releases page in your browser" msgstr "Otwórz stronÄ™ z wersjami oprogramowania w przeglÄ…darce" @@ -8674,6 +8214,10 @@ msgstr "" msgid "Operation already cancelling. Please wait few seconds." msgstr "Operacja zostaÅ‚a już anulowana. ProszÄ™ poczekać kilka sekund." +#: src/slic3r/GUI/Plater.cpp:1678 +msgid "Optimize Rotation" +msgstr "Optymalizuj obrót" + #: src/slic3r/GUI/Jobs/RotoptimizeJob.hpp:23 msgid "Optimize object rotation for best surface quality." msgstr "Optymalizuje orientacjÄ™ modelu dla najlepszej jakoÅ›ci powierzchni." @@ -8694,10 +8238,6 @@ msgstr "" msgid "Optimize orientation" msgstr "Optymalizuj orientacjÄ™" -#: src/slic3r/GUI/Plater.cpp:1678 -msgid "Optimize Rotation" -msgstr "Optymalizuj obrót" - #: src/libslic3r/PrintConfig.cpp:373 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " @@ -8722,10 +8262,6 @@ msgstr "Opcje materiaÅ‚u podporowego i tratwy (raft)" msgid "Options:" msgstr "Opcje:" -#: src/slic3r/GUI/DoubleSlider.cpp:1431 -msgid "or press \"+\" key" -msgstr "lub naciÅ›nij klawisz \"+\"" - #: src/slic3r/GUI/Preferences.cpp:399 msgid "Order object volumes by types" msgstr "PorzÄ…dkowanie modyfikatorów obiektów wedÅ‚ug typów" @@ -8746,14 +8282,14 @@ msgstr "Punkt zerowy" msgid "Other" msgstr "Inne" -#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 -msgid "Other layers" -msgstr "Inne warstwy" - #: src/slic3r/GUI/ConfigWizard.cpp:1322 msgid "Other Vendors" msgstr "Inni dostawcy" +#: src/libslic3r/PrintConfig.cpp:392 src/libslic3r/PrintConfig.cpp:2789 +msgid "Other layers" +msgstr "Inne warstwy" + #: src/libslic3r/PrintConfig.cpp:515 msgid "Outer and inner brim" msgstr "ZewnÄ™trzny i wewnÄ™trzny brim" @@ -8762,22 +8298,22 @@ msgstr "ZewnÄ™trzny i wewnÄ™trzny brim" msgid "Outer brim only" msgstr "Tylko zewnÄ™trzny brim" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 -msgid "Output file" -msgstr "Plik wyjÅ›ciowy" - #: src/libslic3r/PrintConfig.cpp:4436 msgid "Output File" msgstr "Plik WyjÅ›ciowy" -#: src/libslic3r/PrintConfig.cpp:1902 -msgid "Output filename format" -msgstr "Format pliku wyjÅ›ciowego" - #: src/libslic3r/PrintConfig.cpp:4305 msgid "Output Model Info" msgstr "Informacje o Modelu wyjÅ›ciowym" +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4667 +msgid "Output file" +msgstr "Plik wyjÅ›ciowy" + +#: src/libslic3r/PrintConfig.cpp:1902 +msgid "Output filename format" +msgstr "Format pliku wyjÅ›ciowego" + #: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4666 msgid "Output options" msgstr "Opcje wyjÅ›ciowe" @@ -8888,6 +8424,10 @@ msgstr "" "zgodnie z ruchem wskazówek zegara lub przeciwnie do ruchu wskazówek zegara, " "naciskajÄ…c odpowiednio Page Up lub Page Down?" +#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 +msgid "Paint-on seam" +msgstr "Malowanie szwu" + #: resources/data/hints.ini: [hint:Paint-on seam] msgid "" "Paint-on seam\n" @@ -8901,9 +8441,10 @@ msgstr "" "Wypróbuj funkcjÄ™ malowania szwu. (Wymaga trybu Zaawansowany lub " "Ekspert)." -#: src/slic3r/GUI/ObjectDataViewModel.cpp:50 -msgid "Paint-on seam" -msgstr "Malowanie szwu" +#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 +msgid "Paint-on supports" +msgstr "Malowanie podpór" #: resources/data/hints.ini: [hint:Paint-on supports] msgid "" @@ -8917,11 +8458,6 @@ msgstr "" "których podpory powinny być wymuszone lub zablokowane? Wypróbuj funkcjÄ™ " "malowania podpór. (Wymaga trybu Zaawansowany lub Ekspert)." -#: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:33 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:49 -msgid "Paint-on supports" -msgstr "Malowanie podpór" - #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:674 #, boost-format msgid "Painted using: Extruder %1%" @@ -8955,10 +8491,6 @@ msgstr "" msgid "Paints only one facet." msgstr "Maluje tylko jednÄ… powierzchniÄ™." -#: src/slic3r/GUI/Field.cpp:193 -msgid "parameter name" -msgstr "nazwa parametru" - #: src/slic3r/GUI/Field.cpp:269 src/slic3r/GUI/Field.cpp:343 msgid "Parameter validation" msgstr "Weryfikacja parametru" @@ -8979,14 +8511,14 @@ msgstr "" msgid "Part" msgstr "Część" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 -msgid "Part manipulation" -msgstr "Manipulacja częściÄ…" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2481 msgid "Part Settings to modify" msgstr "Ustawienia części do modyfikacji" +#: src/slic3r/GUI/GUI_ObjectList.cpp:2492 +msgid "Part manipulation" +msgstr "Manipulacja częściÄ…" + #: src/libslic3r/PrintConfig.cpp:324 msgid "Password" msgstr "HasÅ‚o" @@ -8995,6 +8527,10 @@ msgstr "HasÅ‚o" msgid "Paste" msgstr "Wklej" +#: src/slic3r/GUI/Plater.cpp:6640 +msgid "Paste From Clipboard" +msgstr "Wklej Ze Schowka" + #: src/slic3r/GUI/MainFrame.cpp:1346 msgid "Paste clipboard" msgstr "Wklej zawartość schowka" @@ -9003,10 +8539,6 @@ msgstr "Wklej zawartość schowka" msgid "Paste from clipboard" msgstr "Wklej ze schowka" -#: src/slic3r/GUI/Plater.cpp:6640 -msgid "Paste From Clipboard" -msgstr "Wklej Ze Schowka" - #: src/libslic3r/PrintConfig.cpp:2697 msgid "Pattern" msgstr "Wzór" @@ -9038,16 +8570,16 @@ msgstr "Wzór podpór." msgid "Pause" msgstr "Pauza" -#: src/slic3r/GUI/DoubleSlider.cpp:1469 -#, boost-format -msgid "Pause print (\"%1%\")" -msgstr "Wstrzymaj wydruk (\"%1%\")" - #: src/slic3r/GUI/Tab.cpp:2471 src/libslic3r/GCode.cpp:714 #: src/libslic3r/PrintConfig.cpp:2441 msgid "Pause Print G-code" msgstr "G-code dla pauzy drukowania" +#: src/slic3r/GUI/DoubleSlider.cpp:1469 +#, boost-format +msgid "Pause print (\"%1%\")" +msgstr "Wstrzymaj wydruk (\"%1%\")" + #: src/libslic3r/PrintConfig.cpp:1558 msgid "Percent of a flow rate relative to object's normal layer height." msgstr "" @@ -9082,6 +8614,11 @@ msgstr "" "Kalkulacja prÄ™dkoÅ›ci wzglÄ™dem dokÅ‚adnoÅ›ci. Niższe wartoÅ›ci mogÄ… powodować " "artefakty." +#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 +msgid "Performing desktop integration failed - Could not find executable." +msgstr "" +"Integracji z pulpitem nie powiodÅ‚a siÄ™ - nie znaleziono pliku wykonywalnego." + #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:232 msgid "" "Performing desktop integration failed - boost::filesystem::canonical did not " @@ -9099,11 +8636,6 @@ msgstr "" "Gcodeviewer. Plik pulpitu PrusaSlicer zostaÅ‚ prawdopodobnie utworzony " "pomyÅ›lnie." -#: src/slic3r/GUI/DesktopIntegrationDialog.cpp:243 -msgid "Performing desktop integration failed - Could not find executable." -msgstr "" -"Integracji z pulpitem nie powiodÅ‚a siÄ™ - nie znaleziono pliku wykonywalnego." - #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:378 msgid "" "Performing desktop integration failed because the application directory was " @@ -9121,10 +8653,6 @@ msgstr "Obrys" msgid "Perimeter extruder" msgstr "Ekstruder dla obrysów" -#: src/slic3r/GUI/PresetHints.cpp:171 -msgid "perimeters" -msgstr "obrysy" - #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1955 #: src/libslic3r/PrintConfig.cpp:1969 src/libslic3r/PrintConfig.cpp:1979 msgid "Perimeters" @@ -9200,6 +8728,10 @@ msgstr "Szerokość łącznika" msgid "Place bearings in slots and resume printing" msgstr "Umieść Å‚ożyska w gniazdach i wznów drukowanie" +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 +msgid "Place on face" +msgstr "Połóż na pÅ‚aszczyźnie" + #: resources/data/hints.ini: [hint:Place on face] msgid "" "Place on face\n" @@ -9212,10 +8744,6 @@ msgstr "" "powierzchni leżaÅ‚a na stole drukarki? Wybierz funkcjÄ™ Połóż na " "pÅ‚aszczyźnie lub naciÅ›nij klawisz F." -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:41 -msgid "Place on face" -msgstr "Połóż na pÅ‚aszczyźnie" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:181 src/slic3r/GUI/MainFrame.cpp:284 #: src/slic3r/GUI/MainFrame.cpp:333 src/slic3r/GUI/MainFrame.cpp:445 #: src/slic3r/GUI/MainFrame.cpp:448 src/slic3r/GUI/MainFrame.cpp:470 @@ -9257,10 +8785,6 @@ msgstr "Pozycja" msgid "Position (for multi-extruder printers)" msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)" -#: src/libslic3r/PrintConfig.cpp:2215 -msgid "Position of perimeters starting points." -msgstr "Pozycja startowa druku obrysów." - #: src/libslic3r/PrintConfig.cpp:2968 msgid "Position X" msgstr "Pozycja X" @@ -9269,6 +8793,10 @@ msgstr "Pozycja X" msgid "Position Y" msgstr "Pozycja Y" +#: src/libslic3r/PrintConfig.cpp:2215 +msgid "Position of perimeters starting points." +msgstr "Pozycja startowa druku obrysów." + #: src/slic3r/GUI/Tab.cpp:1763 msgid "Post processing scripts shall modify G-code file in place." msgstr "Skrypty do post-processingu powinny modyfikować G-code na miejscu." @@ -9367,11 +8895,6 @@ msgstr "" msgid "Preset with name \"%1%\" already exists." msgstr "Zestaw ustawieÅ„ o nazwie \"%1%\" już istnieje." -#: src/slic3r/GUI/SavePresetDialog.cpp:221 -msgctxt "PresetName" -msgid "Copy" -msgstr "Kopia" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 msgid "" "Presets are different.\n" @@ -9434,10 +8957,6 @@ msgstr "Poprzednio pociÄ™ty plik (" msgid "Prime all printing extruders" msgstr "Wyczyść wszystkie używane ekstrudery" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 -msgid "print" -msgstr "druk" - #: src/slic3r/GUI/GCodeViewer.cpp:3506 src/slic3r/GUI/GCodeViewer.cpp:3541 msgid "Print" msgstr "Druk" @@ -9446,14 +8965,6 @@ msgstr "Druk" msgid "Print &Host Upload Queue" msgstr "Kolej&ka zadaÅ„ serwera druku" -#: src/libslic3r/PrintConfig.cpp:753 -msgid "" -"Print contour perimeters from the outermost one to the innermost one instead " -"of the default inverse order." -msgstr "" -"Drukuj obrysy od zewnÄ…trz do wewnÄ…trz zamiast domyÅ›lnego ustawienia wÄ™wnÄ…trz-" -"zewnÄ…trz." - #: src/slic3r/GUI/ConfigWizard.cpp:1457 msgid "Print Diameters" msgstr "Åšrednice" @@ -9462,6 +8973,23 @@ msgstr "Åšrednice" msgid "Print Host upload" msgstr "PrzesyÅ‚anie do serwera druku" +#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 +#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +msgid "Print Settings" +msgstr "Ustawienia Druku" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 +msgid "Print Settings Tab" +msgstr "Ustawienia druku" + +#: src/libslic3r/PrintConfig.cpp:753 +msgid "" +"Print contour perimeters from the outermost one to the innermost one instead " +"of the default inverse order." +msgstr "" +"Drukuj obrysy od zewnÄ…trz do wewnÄ…trz zamiast domyÅ›lnego ustawienia wÄ™wnÄ…trz-" +"zewnÄ…trz." + #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 #: src/slic3r/GUI/PrintHostDialogs.cpp:217 msgid "Print host upload queue" @@ -9475,20 +9003,11 @@ msgstr "Tryb drukowania" msgid "Print pauses" msgstr "Pauzuje wydruk" -#: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 -msgid "Print Settings" -msgstr "Ustawienia Druku" - #: src/slic3r/GUI/GCodeViewer.cpp:3693 src/slic3r/GUI/GCodeViewer.cpp:3715 #: src/slic3r/GUI/GUI.cpp:337 src/slic3r/GUI/Plater.cpp:817 msgid "Print settings" msgstr "Ustawienia druku" -#: src/slic3r/GUI/GLCanvas3D.cpp:3767 src/slic3r/GUI/GLCanvas3D.cpp:4588 -msgid "Print Settings Tab" -msgstr "Ustawienia druku" - #: src/libslic3r/PrintConfig.cpp:3774 msgid "Print speed" msgstr "PrÄ™dkość druku" @@ -9523,9 +9042,14 @@ msgstr "" msgid "Printer" msgstr "Drukarka" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 -msgid "printer" -msgstr "drukarka" +#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/Tab.hpp:490 +msgid "Printer Settings" +msgstr "Ustawienia Drukarki" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 +msgid "Printer Settings Tab" +msgstr "Ustawienia drukarki" #: src/libslic3r/PrintConfig.cpp:3215 src/libslic3r/PrintConfig.cpp:3216 msgid "Printer absolute correction" @@ -9535,10 +9059,6 @@ msgstr "Korekcje bezwzglÄ™dne drukarki" msgid "Printer gamma correction" msgstr "Korekcja gamma drukarki" -#: src/slic3r/GUI/Tab.cpp:1375 -msgid "printer model" -msgstr "model drukarki" - #: src/libslic3r/PrintConfig.cpp:2011 msgid "Printer notes" msgstr "Notatki o drukarce" @@ -9547,6 +9067,18 @@ msgstr "Notatki o drukarce" msgid "Printer preset names" msgstr "Nazwy zestawów ustawieÅ„ drukarek" +#: src/libslic3r/PrintConfig.cpp:3192 +msgid "Printer scaling X axis correction" +msgstr "Korekcja skalowania przez drukarkÄ™ w osi X" + +#: src/libslic3r/PrintConfig.cpp:3200 +msgid "Printer scaling Y axis correction" +msgstr "Korekcja skalowania przez drukarkÄ™ w osi Y" + +#: src/libslic3r/PrintConfig.cpp:3208 +msgid "Printer scaling Z axis correction" +msgstr "Korekcja skalowania przez drukarkÄ™ w osi Z" + #: src/libslic3r/PrintConfig.cpp:3183 src/libslic3r/PrintConfig.cpp:3184 #: src/libslic3r/PrintConfig.cpp:3185 msgid "Printer scaling correction" @@ -9564,27 +9096,6 @@ msgstr "Korekcja skalowania przez drukarkÄ™ w osi Y " msgid "Printer scaling correction in Z axis" msgstr "Korekcja skalowania przez drukarkÄ™ w osi Z" -#: src/libslic3r/PrintConfig.cpp:3192 -msgid "Printer scaling X axis correction" -msgstr "Korekcja skalowania przez drukarkÄ™ w osi X" - -#: src/libslic3r/PrintConfig.cpp:3200 -msgid "Printer scaling Y axis correction" -msgstr "Korekcja skalowania przez drukarkÄ™ w osi Y" - -#: src/libslic3r/PrintConfig.cpp:3208 -msgid "Printer scaling Z axis correction" -msgstr "Korekcja skalowania przez drukarkÄ™ w osi Z" - -#: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 -msgid "Printer Settings" -msgstr "Ustawienia Drukarki" - -#: src/slic3r/GUI/GLCanvas3D.cpp:3769 src/slic3r/GUI/GLCanvas3D.cpp:4590 -msgid "Printer Settings Tab" -msgstr "Ustawienia drukarki" - #: src/libslic3r/PrintConfig.cpp:223 src/libslic3r/PrintConfig.cpp:224 msgid "Printer technology" msgstr "Technologia druku" @@ -9676,6 +9187,10 @@ msgstr "Drukarki Prusa w technologii FFF" msgid "Prusa MSLA Technology Printers" msgstr "Drukarki Prusa w technologii MSLA" +#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 +msgid "PrusaSlicer GUI initialization failed" +msgstr "Niepowodzenie inicjalizacji PrusaSlicer GUI" + #: src/slic3r/GUI/GUI_App.cpp:1330 #, boost-format msgid "" @@ -9708,10 +9223,6 @@ msgstr "PrusaSlicer wykryÅ‚ systemowy magazyn certyfikatów SSL w: %1%" msgid "PrusaSlicer error" msgstr "Błąd PrusaSlicer" -#: src/slic3r/GUI/GUI_Init.cpp:57 src/slic3r/GUI/GUI_Init.cpp:60 -msgid "PrusaSlicer GUI initialization failed" -msgstr "Niepowodzenie inicjalizacji PrusaSlicer GUI" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 #, boost-format msgid "PrusaSlicer has encountered a fatal error: \"%1%\"" @@ -10054,6 +9565,16 @@ msgstr "ZwykÅ‚y" msgid "Regular expression" msgstr "Wyrażenie regularne" +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"WzglÄ™dne adresowanie ekstrudera wymaga zresetowania jego pozycji na każdej " +"warstwie, aby uniknąć utraty dokÅ‚adnoÅ›ci zmiennoprzecinkowej. Dodaj \"G92 " +"E0\" do layer_gcode." + #: src/slic3r/GUI/Preferences.cpp:435 msgid "Release only" msgstr "Tylko wydania stabilne" @@ -10062,6 +9583,11 @@ msgstr "Tylko wydania stabilne" msgid "Reload all from disk" msgstr "Wczytaj ponownie wszystko z dysku" +#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 +#: src/slic3r/GUI/Plater.cpp:3548 +msgid "Reload from disk" +msgstr "Wczytaj ponownie z dysku" + #: resources/data/hints.ini: [hint:Reload from disk] msgid "" "Reload from disk\n" @@ -10075,11 +9601,6 @@ msgstr "" "widoku 3D i wybierz \"Wczytaj ponownie z dysku\". Przeczytaj wiÄ™cej w " "dokumentacji." -#: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 -msgid "Reload from disk" -msgstr "Wczytaj ponownie z dysku" - #: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 msgid "Reload from:" msgstr "Wczytaj z:" @@ -10117,15 +9638,19 @@ msgstr "ZapamiÄ™taj mój wybór" msgid "Remember output directory" msgstr "ZapamiÄ™taj katalog wyjÅ›ciowy" -#: src/slic3r/GUI/Tab.cpp:3685 -msgid "remove" -msgstr "usuÅ„" - #: src/slic3r/GUI/BedShapeDialog.cpp:292 src/slic3r/GUI/BedShapeDialog.cpp:362 #: src/slic3r/GUI/Tab.cpp:3734 msgid "Remove" msgstr "UsuÅ„" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +msgid "Remove Instance of the selected object" +msgstr "UsuÅ„ instancjÄ™ zaznaczonego modelu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 +msgid "Remove Multi Material painting" +msgstr "UsuÅ„ malowanie Multi Material" + #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:38 msgid "Remove all holes" msgstr "UsuÅ„ wszystkie otwory" @@ -10151,18 +9676,10 @@ msgstr "UsuÅ„ ekstruder z sekwencji" msgid "Remove instance" msgstr "UsuÅ„ instancjÄ™" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 -msgid "Remove Instance of the selected object" -msgstr "UsuÅ„ instancjÄ™ zaznaczonego modelu" - #: src/slic3r/GUI/GUI_ObjectLayers.cpp:160 msgid "Remove layer range" msgstr "UsuÅ„ zakres warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1844 -msgid "Remove Multi Material painting" -msgstr "UsuÅ„ malowanie Multi Material" - #: src/slic3r/GUI/GUI_Factories.cpp:1087 msgid "Remove one instance of the selected object" msgstr "UsuÅ„ jednÄ… instancjÄ™ zaznaczonego modelu" @@ -10293,14 +9810,14 @@ msgstr "Naprawianie modelu przez usÅ‚ugÄ™ Netfabb" msgid "Repairing was canceled" msgstr "Naprawianie zostaÅ‚o anulowane" -#: src/slic3r/GUI/MainFrame.cpp:1285 -msgid "Repeat last quick slice" -msgstr "Powtórz ostatnie szybkie ciÄ™cie" - #: src/slic3r/GUI/MainFrame.cpp:1285 msgid "Repeat Last Quick Slice" msgstr "Powtórz Ostatnie Szybkie CiÄ™cie" +#: src/slic3r/GUI/MainFrame.cpp:1285 +msgid "Repeat last quick slice" +msgstr "Powtórz ostatnie szybkie ciÄ™cie" + #: src/slic3r/GUI/Plater.cpp:3432 msgid "Replace from:" msgstr "Zamiana z:" @@ -10334,21 +9851,6 @@ msgstr "ZgÅ‚o&szenie problemu" msgid "Report an issue on %s" msgstr "ZgÅ‚oÅ› problem z %s" -#: src/slic3r/Utils/PresetUpdater.cpp:815 -#, c-format, boost-format -msgid "requires max. %s" -msgstr "wymaga max %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:812 -#, c-format, boost-format -msgid "requires min. %s" -msgstr "wymaga min. %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:808 -#, c-format, boost-format -msgid "requires min. %s and max. %s" -msgstr "wymaga min. %s i max. %s" - #: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Rescan" msgstr "Skanuj ponownie" @@ -10357,6 +9859,14 @@ msgstr "Skanuj ponownie" msgid "Reset" msgstr "Reset" +#: src/slic3r/GUI/Plater.cpp:3003 +msgid "Reset Project" +msgstr "Resetuj Projekt" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 +msgid "Reset Rotation" +msgstr "Resetuj Obrót" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1225 msgid "Reset clipping plane" msgstr "Reset pÅ‚aszczyzny przecinania" @@ -10369,18 +9879,10 @@ msgstr "Reset pÅ‚aszczyzny przecinania" msgid "Reset direction" msgstr "Reset kierunku" -#: src/slic3r/GUI/Plater.cpp:3003 -msgid "Reset Project" -msgstr "Resetuj Projekt" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Resetuj obrót" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 -msgid "Reset Rotation" -msgstr "Resetuj Obrót" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:398 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:400 msgid "Reset scale" @@ -10392,14 +9894,14 @@ msgstr "Resetuj skalÄ™" msgid "Reset selection" msgstr "Reset zaznaczenia" -#: src/slic3r/GUI/GLCanvas3D.cpp:237 -msgid "Reset to base" -msgstr "Resetuj do bazowego ust" - #: src/slic3r/GUI/Tab.cpp:2825 msgid "Reset to Filament Color" msgstr "Zresetuj do koloru filamentu" +#: src/slic3r/GUI/GLCanvas3D.cpp:237 +msgid "Reset to base" +msgstr "Resetuj do bazowego ust" + #: src/slic3r/GUI/GUI_App.cpp:2331 msgid "Restart application" msgstr "Uruchom ponownie aplikacjÄ™" @@ -10421,12 +9923,6 @@ msgstr "Retrakcja przy zmianie warstwy" msgid "Retraction" msgstr "Retrakcja" -#: src/libslic3r/PrintConfig.cpp:2115 -msgid "" -"Retraction is not triggered when travel moves are shorter than this length." -msgstr "" -"Retrakcja nie zostanie wykonana przy ruchu jaÅ‚owym krótszym niż ta wartość." - #: src/libslic3r/PrintConfig.cpp:2136 msgid "Retraction Length" msgstr "DÅ‚ugość retrakcji" @@ -10439,6 +9935,12 @@ msgstr "DÅ‚ugość Retrakcji (zmiana narzÄ™dzia)" msgid "Retraction Speed" msgstr "PrÄ™dkość retrakcji" +#: src/libslic3r/PrintConfig.cpp:2115 +msgid "" +"Retraction is not triggered when travel moves are shorter than this length." +msgstr "" +"Retrakcja nie zostanie wykonana przy ruchu jaÅ‚owym krótszym niż ta wartość." + #: src/slic3r/GUI/Tab.cpp:2818 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " @@ -10475,6 +9977,14 @@ msgstr "Przejrzyj zamienniki i dostosuj je w razie potrzeby." msgid "Right" msgstr "Prawo" +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +msgid "Right Preset Value" +msgstr "Wartość z zestawu ustawieÅ„ po prawej" + +#: src/slic3r/GUI/MainFrame.cpp:1129 +msgid "Right View" +msgstr "Widok prawy" + #: src/slic3r/GUI/GUI_ObjectList.cpp:488 msgid "Right button click the icon to change the object printable property" msgstr "" @@ -10504,14 +10014,6 @@ msgstr "Prawy przycisk myszy" msgid "Right mouse button:" msgstr "Prawy przycisk myszy:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 -msgid "Right Preset Value" -msgstr "Wartość z zestawu ustawieÅ„ po prawej" - -#: src/slic3r/GUI/MainFrame.cpp:1129 -msgid "Right View" -msgstr "Widok prawy" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:466 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:543 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:562 @@ -10579,16 +10081,6 @@ msgstr "Uruchom %s" msgid "Running post-processing scripts" msgstr "Wykonywanie skryptów przetwarzania koÅ„cowego (post-processing)" -#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 -#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 -#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 -#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 -#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 -#: src/libslic3r/PrintConfig.cpp:3349 -msgid "s" -msgstr "" - #: src/slic3r/GUI/MainFrame.cpp:1231 src/slic3r/GUI/MainFrame.cpp:1580 msgid "S&end G-code" msgstr "WyÅ›lij G-cod&e" @@ -10597,6 +10089,60 @@ msgstr "WyÅ›lij G-cod&e" msgid "S&end to print" msgstr "W&yÅ›lij do druku" +#: src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Material Profiles Selection" +msgstr "Wybór profili materiałów SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 +msgid "SLA Materials" +msgstr "MateriaÅ‚y SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 +msgid "SLA Support Points" +msgstr "Punkty podpór SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:2102 +msgid "SLA Technology Printers" +msgstr "Drukarki SLA" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 +msgid "SLA gizmo keyboard shortcuts" +msgstr "Skróty klawiszowe \"uchwytów\" SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +msgid "SLA material" +msgstr "MateriaÅ‚ SLA" + +#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 +msgid "SLA material type" +msgstr "Rodzaj materiaÅ‚u SLA" + +#: src/slic3r/GUI/ConfigWizard.cpp:752 +msgid "SLA materials" +msgstr "MateriaÅ‚y SLA" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +msgid "SLA print" +msgstr "Druk SLA" + +#: src/libslic3r/PrintConfig.cpp:3382 +msgid "SLA print material notes" +msgstr "Notatki dla materiaÅ‚u SLA" + +#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 +msgid "SLA print settings" +msgstr "Ustawienia druku SLA" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6369 +msgid "SLA supports outside the print area were detected." +msgstr "Wykryto podpory SLA poza obszarem roboczym." + +#: src/slic3r/GUI/MainFrame.cpp:1661 +msgid "SVG" +msgstr "SVG" + #. TRN To be shown in Print Settings "Bottom contact Z distance". Have to be as short as possible #. TRN To be shown in Print Settings "Bottom interface layers". Have to be as short as possible #: src/libslic3r/PrintConfig.cpp:2576 src/libslic3r/PrintConfig.cpp:2661 @@ -10617,6 +10163,22 @@ msgstr "Zapisz %s jako:" msgid "Save %s file as:" msgstr "Zapisz plik %s jako:" +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save G-code file as:" +msgstr "Zapisz plik G-code jako:" + +#: src/slic3r/GUI/MainFrame.cpp:1736 +msgid "Save OBJ file (less prone to coordinate errors than STL) as:" +msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzÄ™dnych niż STL) jako:" + +#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 +msgid "Save Project &as" +msgstr "Z&apisz projekt jako" + +#: src/slic3r/GUI/Plater.cpp:5707 +msgid "Save SL1 / SL1S file as:" +msgstr "Zapisz plik SL1 / SL1S jako:" + #: src/libslic3r/PrintConfig.cpp:4310 msgid "Save config file" msgstr "Zapisz plik konfiguracyjny" @@ -10647,14 +10209,6 @@ msgstr "Zapisz obecny projekt jako" msgid "Save file as:" msgstr "Zapisz plik jako:" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save G-code file as:" -msgstr "Zapisz plik G-code jako:" - -#: src/slic3r/GUI/MainFrame.cpp:1736 -msgid "Save OBJ file (less prone to coordinate errors than STL) as:" -msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzÄ™dnych niż STL) jako:" - #: src/slic3r/GUI/SavePresetDialog.cpp:191 #: src/slic3r/GUI/SavePresetDialog.cpp:197 msgid "Save preset" @@ -10668,10 +10222,6 @@ msgstr "Zapisz paczkÄ™ ustawieÅ„ jako:" msgid "Save project" msgstr "Zapisz projekt" -#: src/slic3r/GUI/MainFrame.cpp:1191 src/slic3r/GUI/MainFrame.cpp:1193 -msgid "Save Project &as" -msgstr "Z&apisz projekt jako" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:79 msgid "Save project (3mf)" msgstr "Zapisz Projekt (3mf)" @@ -10680,10 +10230,6 @@ msgstr "Zapisz Projekt (3mf)" msgid "Save project as (3mf)" msgstr "Zapisz Projekt jako (3mf)" -#: src/slic3r/GUI/Plater.cpp:5707 -msgid "Save SL1 / SL1S file as:" -msgstr "Zapisz plik SL1 / SL1S jako:" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:898 msgid "Save support points?" msgstr "Zachować punkty podpór?" @@ -10715,6 +10261,10 @@ msgstr "Niepowodzenie zapisywania siatki jako 3MF." msgid "Scale" msgstr "Skaluj" +#: src/slic3r/GUI/Selection.cpp:950 +msgid "Scale To Fit" +msgstr "Skaluj, aby zmieÅ›cić" + #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:523 msgid "Scale factors" msgstr "Współczynnik skalowania" @@ -10727,10 +10277,6 @@ msgstr "Skaluj wybrany model, aby zmieÅ›ciÅ‚ siÄ™ w przestrzeni roboczej" msgid "Scale to Fit" msgstr "Skaluj, aby dopasować" -#: src/slic3r/GUI/Selection.cpp:950 -msgid "Scale To Fit" -msgstr "Skaluj, aby zmieÅ›cić" - #: src/libslic3r/PrintConfig.cpp:4405 msgid "Scale to fit the given volume." msgstr "Skaluj, aby wypeÅ‚nić zadanÄ… objÄ™tość." @@ -10818,13 +10364,39 @@ msgstr "Drugi kolor" msgid "See Download page." msgstr "Zobacz stronÄ™ pobierania." +#: src/slic3r/GUI/GUI_App.cpp:1219 +msgid "See Releases page." +msgstr "Zobacz stronÄ™ z wydaniami (\"Releases\")." + #: src/slic3r/GUI/NotificationManager.hpp:753 msgid "See more." msgstr "Zobacz wiÄ™cej." -#: src/slic3r/GUI/GUI_App.cpp:1219 -msgid "See Releases page." -msgstr "Zobacz stronÄ™ z wydaniami (\"Releases\")." +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +msgid "Select Filament Settings Tab" +msgstr "Wybierz ustawienia filamentu" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 +msgid "Select Plater Tab" +msgstr "Wybierz ZakÅ‚adkÄ™ PodglÄ…du StoÅ‚u" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 +msgid "Select Print Settings Tab" +msgstr "Wybierz ustawienia druku" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +msgid "Select Printer Settings Tab" +msgstr "Wybierz ustawienia drukarki" + +#: src/slic3r/GUI/DoubleSlider.cpp:2532 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"NO if you want all tool changes switch to color changes, \n" +"or CANCEL to leave it unchanged." +msgstr "" +"Wybierz TAK, jeÅ›li chcesz usunąć wszystkie zapisane zmiany narzÄ™dzi,\n" +"NIE, jeÅ›li chcesz przełączyć zmiany narzÄ™dzi na zmiany koloru lub\n" +"ANULUJ, aby pozostawić bez zmian." #: src/slic3r/GUI/FirmwareDialog.cpp:813 msgid "Select a file" @@ -10862,26 +10434,10 @@ msgstr "Wybierz konfiguracjÄ™ do wczytania:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Wybierz pÅ‚aszczyznÄ™, w której ma nastÄ…pić przeksztaÅ‚cenie." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Select Filament Settings Tab" -msgstr "Wybierz ustawienia filamentu" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Select Plater Tab" -msgstr "Wybierz ZakÅ‚adkÄ™ PodglÄ…du StoÅ‚u" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 msgid "Select presets to compare" msgstr "Wybierz zestawy ustawieÅ„ do porównania" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Select Print Settings Tab" -msgstr "Wybierz ustawienia druku" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Select Printer Settings Tab" -msgstr "Wybierz ustawienia drukarki" - #: src/slic3r/GUI/GalleryDialog.cpp:76 msgid "Select shape from the gallery" msgstr "Wybierz ksztaÅ‚t z galerii" @@ -10890,6 +10446,10 @@ msgstr "Wybierz ksztaÅ‚t z galerii" msgid "Select showing settings" msgstr "Wybierz widok ustawieÅ„" +#: src/slic3r/GUI/MainFrame.cpp:1726 +msgid "Select the STL file to repair:" +msgstr "Wybierz plik STL do naprawy:" + #: src/slic3r/GUI/GUI_App.cpp:2010 msgid "Select the language" msgstr "Wybierz jÄ™zyk" @@ -10906,10 +10466,6 @@ msgstr "Wybierz profile druku, z którymi kompatybilny jest ten profil." msgid "Select the printers this profile is compatible with." msgstr "Wybierz drukarki kompatybilne z tym profilem." -#: src/slic3r/GUI/MainFrame.cpp:1726 -msgid "Select the STL file to repair:" -msgstr "Wybierz plik STL do naprawy:" - #: src/slic3r/GUI/Preferences.cpp:709 msgid "Select toolbar icon size in respect to the default one." msgstr "Wybierz rozmiar ikon w odniesieniu do domyÅ›lnego." @@ -10926,16 +10482,6 @@ msgstr "Wybierz rodzaj wymaganej podkÅ‚adki" msgid "Select what kind of support do you need" msgstr "Wybierz rodzaj potrzebnych podpór" -#: src/slic3r/GUI/DoubleSlider.cpp:2532 -msgid "" -"Select YES if you want to delete all saved tool changes, \n" -"NO if you want all tool changes switch to color changes, \n" -"or CANCEL to leave it unchanged." -msgstr "" -"Wybierz TAK, jeÅ›li chcesz usunąć wszystkie zapisane zmiany narzÄ™dzi,\n" -"NIE, jeÅ›li chcesz przełączyć zmiany narzÄ™dzi na zmiany koloru lub\n" -"ANULUJ, aby pozostawić bez zmian." - #: src/slic3r/GUI/Selection.cpp:168 msgid "Selection-Add" msgstr "Zaznaczenie-Dodaj" @@ -10944,14 +10490,6 @@ msgstr "Zaznaczenie-Dodaj" msgid "Selection-Add All" msgstr "Zaznaczenie-Dodaj wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 -msgid "Selection-Add from list" -msgstr "Zaznaczenie-Dodaj z listy" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6446 -msgid "Selection-Add from rectangle" -msgstr "Zaznaczenie-Dodaj z prostokÄ…ta" - #: src/slic3r/GUI/Selection.cpp:278 msgid "Selection-Add Instance" msgstr "Zaznaczenie-Dodaj instancjÄ™" @@ -10960,6 +10498,14 @@ msgstr "Zaznaczenie-Dodaj instancjÄ™" msgid "Selection-Add Object" msgstr "Zaznaczenie-Dodaj Model" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3503 +msgid "Selection-Add from list" +msgstr "Zaznaczenie-Dodaj z listy" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6446 +msgid "Selection-Add from rectangle" +msgstr "Zaznaczenie-Dodaj z prostokÄ…ta" + #: src/slic3r/GUI/Selection.cpp:209 msgid "Selection-Remove" msgstr "Zaznaczenie-UsuÅ„" @@ -10968,14 +10514,6 @@ msgstr "Zaznaczenie-UsuÅ„" msgid "Selection-Remove All" msgstr "Zaznaczenie-UsuÅ„ Wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 -msgid "Selection-Remove from list" -msgstr "Zaznaczenie-UsuniÄ™cie z listy" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6461 -msgid "Selection-Remove from rectangle" -msgstr "Zaznaczenie-UsuÅ„ z prostokÄ…ta" - #: src/slic3r/GUI/Selection.cpp:297 msgid "Selection-Remove Instance" msgstr "Zaznaczenie-UsuÅ„ kopiÄ™" @@ -10984,18 +10522,26 @@ msgstr "Zaznaczenie-UsuÅ„ kopiÄ™" msgid "Selection-Remove Object" msgstr "Zaznaczenie-UsuÅ„ model" +#: src/slic3r/GUI/GUI_ObjectList.cpp:3491 +msgid "Selection-Remove from list" +msgstr "Zaznaczenie-UsuniÄ™cie z listy" + +#: src/slic3r/GUI/GLCanvas3D.cpp:6461 +msgid "Selection-Remove from rectangle" +msgstr "Zaznaczenie-UsuÅ„ z prostokÄ…ta" + #: src/slic3r/GUI/MainFrame.cpp:1320 msgid "Selects all objects" msgstr "Zaznacza wszystkie modele" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 -msgid "Send G-code" -msgstr "WyÅ›lij G-code" - #: src/slic3r/GUI/PrintHostDialogs.cpp:40 msgid "Send G-Code to printer host" msgstr "WyÅ›lij G-code do serwera druku" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +msgid "Send G-code" +msgstr "WyÅ›lij G-code" + #: src/slic3r/GUI/SendSystemInfoDialog.cpp:550 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:618 msgid "Send system info" @@ -11045,6 +10591,46 @@ msgstr "Nazwa usÅ‚ugi" msgid "Set" msgstr "Ustaw" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 +msgid "Set Mirror" +msgstr "Ustaw Odbicie" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 +msgid "Set Orientation" +msgstr "Ustaw OrientacjÄ™" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 +msgid "Set Position" +msgstr "Ustaw PozycjÄ™" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Printable" +msgstr "Zaznacz do drukowania" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Printable Instance" +msgstr "Włącz drukowanie instancji" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Printable group" +msgstr "Oznacz grupÄ™ jako \"Do druku\"" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 +msgid "Set Scale" +msgstr "Ustaw SkalÄ™" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 +msgid "Set Unprintable" +msgstr "Zaznacz do ignorowania przy drukowaniu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 +msgid "Set Unprintable Instance" +msgstr "Ignoruj drukowanie instancji" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 +msgid "Set Unprintable group" +msgstr "Ustaw grupÄ™ jako \"Nie do druku\"" + #: src/slic3r/GUI/GUI_Factories.cpp:636 src/slic3r/GUI/GUI_Factories.cpp:648 msgid "Set as a Separated Object" msgstr "Ustaw jako osobny model" @@ -11093,9 +10679,9 @@ msgstr "Ustaw lewy punkt jako aktywny" msgid "Set lower thumb as active" msgstr "Ustaw dolny punkt jako aktywny" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284 -msgid "Set Mirror" -msgstr "Ustaw Odbicie" +#: src/slic3r/GUI/GUI_Factories.cpp:1090 +msgid "Set number of instances" +msgstr "Ustaw liczbÄ™ instancji" #: resources/data/hints.ini: [hint:Set number of instances] msgid "" @@ -11107,35 +10693,11 @@ msgstr "" "Czy wiesz, że możesz kliknąć prawym przyciskiem myszy na model i ustawić " "dokÅ‚adnÄ… liczbÄ™ instancji, zamiast kopiować go kilka razy?" -#: src/slic3r/GUI/GUI_Factories.cpp:1090 -msgid "Set number of instances" -msgstr "Ustaw liczbÄ™ instancji" - #: src/slic3r/GUI/Plater.cpp:5573 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Ustaw ilość instancji na %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:852 -msgid "Set Orientation" -msgstr "Ustaw OrientacjÄ™" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:820 -msgid "Set Position" -msgstr "Ustaw PozycjÄ™" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Printable" -msgstr "Zaznacz do drukowania" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Printable group" -msgstr "Oznacz grupÄ™ jako \"Do druku\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Printable Instance" -msgstr "Włącz drukowanie instancji" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:249 msgid "Set right thumb as active" msgstr "Ustaw prawy punkt jako aktywny" @@ -11144,10 +10706,6 @@ msgstr "Ustaw prawy punkt jako aktywny" msgid "Set ruler mode" msgstr "Ustaw tryb linijki" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:931 -msgid "Set Scale" -msgstr "Ustaw SkalÄ™" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 msgid "Set selected items as Printable/Unprintable" msgstr "Ustaw wybrane elementy jako do druku lub nie" @@ -11313,18 +10871,6 @@ msgstr "" "ekstruder, aby nie uderzyć w obiekt znajdujÄ…cy siÄ™ bezpoÅ›rednio pod prÄ™tami " "osi X." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4409 -msgid "Set Unprintable" -msgstr "Zaznacz do ignorowania przy drukowaniu" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4407 -msgid "Set Unprintable group" -msgstr "Ustaw grupÄ™ jako \"Nie do druku\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:4410 -msgid "Set Unprintable Instance" -msgstr "Ignoruj drukowanie instancji" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:235 msgid "Set upper thumb as active" msgstr "Ustaw górny punkt jako aktywny" @@ -11348,6 +10894,10 @@ msgstr "Ustawienia" msgid "Settings for height range" msgstr "Ustawienie zakresu wysokoÅ›ci" +#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 +msgid "Settings in non-modal window" +msgstr "Ustawienia w oknie niemodalnym" + #: resources/data/hints.ini: [hint:Settings in non-modal window] msgid "" "Settings in non-modal window\n" @@ -11361,10 +10911,6 @@ msgstr "" "drugim. Przejdź do Preferencje i wybierz \"Ustawienia w oknie " "niemodalnym\"." -#: src/slic3r/GUI/Preferences.cpp:745 src/slic3r/GUI/Preferences.cpp:755 -msgid "Settings in non-modal window" -msgstr "Ustawienia w oknie niemodalnym" - #: src/slic3r/GUI/ConfigManipulation.cpp:167 msgid "Shall I adjust those settings for supports?" msgstr "Czy chcesz zmienić te ustawienia dla podpór?" @@ -11446,6 +10992,10 @@ msgstr "Pokaż folder Konfigura&cyjny" msgid "Show &Labels" msgstr "Pokaż &etykiety" +#: src/slic3r/GUI/MainFrame.cpp:1097 +msgid "Show Tip of the Day" +msgstr "Pokaż \"PoradÄ™ dnia\"" + #: src/slic3r/GUI/MainFrame.cpp:1092 src/slic3r/GUI/MainFrame.cpp:1095 msgid "Show about dialog" msgstr "Pokaż okienko" @@ -11534,14 +11084,14 @@ msgstr "Pokaż podglÄ…d ciÄ™cia 3D" msgid "Show the filament settings" msgstr "Pokaż ustawienia filamentu" -#: src/libslic3r/PrintConfig.cpp:4296 -msgid "Show the full list of print/G-code configuration options." -msgstr "Pokaż peÅ‚nÄ… listÄ™ opcji konfiguracji druku/G-code." - #: src/libslic3r/PrintConfig.cpp:4301 msgid "Show the full list of SLA print configuration options." msgstr "Pokaż peÅ‚nÄ… listÄ™ opcji konfiguracji druku SLA." +#: src/libslic3r/PrintConfig.cpp:4296 +msgid "Show the full list of print/G-code configuration options." +msgstr "Pokaż peÅ‚nÄ… listÄ™ opcji konfiguracji druku/G-code." + #: src/slic3r/GUI/MainFrame.cpp:1100 msgid "Show the list of the keyboard shortcuts" msgstr "Pokaż listÄ™ skrótów klawiszowych" @@ -11562,10 +11112,6 @@ msgstr "Pokaż ustawienia drukarki" msgid "Show this help." msgstr "Pokaż tÄ… wskazówkÄ™ pomocy." -#: src/slic3r/GUI/MainFrame.cpp:1097 -msgid "Show Tip of the Day" -msgstr "Pokaż \"PoradÄ™ dnia\"" - #: src/slic3r/GUI/MainFrame.cpp:1087 msgid "Show user configuration folder (datadir)" msgstr "Pokaż folder z konfiguracjami użytkownika (datadir)" @@ -11604,14 +11150,14 @@ msgstr "Ukryj/pokaż etykiety modelu/instancji" msgid "Simple" msgstr "Prosty" -#: src/slic3r/GUI/ConfigWizard.cpp:1279 -msgid "Simple mode" -msgstr "Tryb Prosty" - #: src/slic3r/GUI/GUI_App.cpp:2237 msgid "Simple View Mode" msgstr "Tryb Widoku Prostego" +#: src/slic3r/GUI/ConfigWizard.cpp:1279 +msgid "Simple mode" +msgstr "Tryb Prosty" + #: src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp:156 msgid "Simplification is currently only allowed when a single part is selected" msgstr "Upraszanie jest obecnie możliwe tylko dla jednego wybranego modelu." @@ -11642,10 +11188,6 @@ msgstr "" msgid "Simplify model" msgstr "Uprość model" -#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 -msgid "Single extruder MM setup" -msgstr "Ustawienia MM dla jednego ekstrudera" - #: src/libslic3r/PrintConfig.cpp:2459 msgid "Single Extruder Multi Material" msgstr "Multi Material z jednym ekstruderem" @@ -11662,6 +11204,10 @@ msgstr "" "Czy chcesz zmienić Å›rednicÄ™ dyszy dla wszystkich ekstruderów na wartość z " "pierwszego?" +#: src/slic3r/GUI/Tab.cpp:2724 src/slic3r/GUI/Tab.cpp:2733 +msgid "Single extruder MM setup" +msgstr "Ustawienia MM dla jednego ekstrudera" + #: src/slic3r/GUI/Tab.cpp:2734 msgid "Single extruder multimaterial parameters" msgstr "Parametry multimaterial przy jednym ekstruderze" @@ -11692,6 +11238,10 @@ msgstr "Rozmiar X i Y stoÅ‚u prostokÄ…tnego." msgid "Skirt" msgstr "Skirt" +#: src/libslic3r/PrintConfig.cpp:2282 +msgid "Skirt Loops" +msgstr "Liczba obrysów skirt" + #: src/slic3r/GUI/GUI_Factories.cpp:136 src/slic3r/GUI/Tab.cpp:1536 #: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 #: src/libslic3r/PrintConfig.cpp:521 @@ -11702,65 +11252,11 @@ msgstr "Skirt i brim" msgid "Skirt height" msgstr "Wysokość skirt" -#: src/libslic3r/PrintConfig.cpp:2282 -msgid "Skirt Loops" -msgstr "Liczba obrysów skirt" - #: src/slic3r/GUI/GUI_Preview.cpp:248 src/libslic3r/ExtrusionEntity.cpp:327 #: src/libslic3r/ExtrusionEntity.cpp:358 msgid "Skirt/Brim" msgstr "Skirt/brim" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1186 -msgid "SLA gizmo keyboard shortcuts" -msgstr "Skróty klawiszowe \"uchwytów\" SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 -msgid "SLA material" -msgstr "MateriaÅ‚ SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Material Profiles Selection" -msgstr "Wybór profili materiałów SLA" - -#: src/libslic3r/PrintConfig.cpp:3253 src/libslic3r/PrintConfig.cpp:3254 -msgid "SLA material type" -msgstr "Rodzaj materiaÅ‚u SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:2043 src/slic3r/GUI/ConfigWizard.cpp:2915 -msgid "SLA Materials" -msgstr "MateriaÅ‚y SLA" - -#: src/slic3r/GUI/ConfigWizard.cpp:752 -msgid "SLA materials" -msgstr "MateriaÅ‚y SLA" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 -msgid "SLA print" -msgstr "Druk SLA" - -#: src/libslic3r/PrintConfig.cpp:3382 -msgid "SLA print material notes" -msgstr "Notatki dla materiaÅ‚u SLA" - -#: src/slic3r/GUI/GUI.cpp:338 src/slic3r/GUI/Plater.cpp:819 -msgid "SLA print settings" -msgstr "Ustawienia druku SLA" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:876 -msgid "SLA Support Points" -msgstr "Punkty podpór SLA" - -#: src/slic3r/GUI/GLCanvas3D.cpp:6369 -msgid "SLA supports outside the print area were detected." -msgstr "Wykryto podpory SLA poza obszarem roboczym." - -#: src/slic3r/GUI/ConfigWizard.cpp:2102 -msgid "SLA Technology Printers" -msgstr "Drukarki SLA" - #: src/slic3r/GUI/GUI_Factories.cpp:461 msgid "Slab" msgstr "Tafla" @@ -11855,6 +11351,14 @@ msgstr "PociÄ™ty model \"%1%\" wyglÄ…da jak logo lub znak" msgid "Slicing" msgstr "CiÄ™cie" +#: src/slic3r/GUI/MainFrame.cpp:1710 +msgid "Slicing Done!" +msgstr "CiÄ™cie zakoÅ„czone!" + +#: src/libslic3r/PrintConfig.cpp:2489 +msgid "Slicing Mode" +msgstr "Tryb ciÄ™cia" + #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:162 #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:204 msgid "Slicing complete" @@ -11864,10 +11368,6 @@ msgstr "CiÄ™cie zakoÅ„czone" msgid "Slicing done" msgstr "CiÄ™cie zakoÅ„czone" -#: src/slic3r/GUI/MainFrame.cpp:1710 -msgid "Slicing Done!" -msgstr "CiÄ™cie zakoÅ„czone!" - #: src/slic3r/GUI/NotificationManager.cpp:1113 msgid "Slicing finished." msgstr "CiÄ™cie zakoÅ„czone." @@ -11879,10 +11379,6 @@ msgstr "" "CiÄ™cie zostaÅ‚o zatrzymane z powodu błędu wewnÄ™trznego: nieciÄ…gÅ‚y indeks " "ciÄ™cia." -#: src/libslic3r/PrintConfig.cpp:2489 -msgid "Slicing Mode" -msgstr "Tryb ciÄ™cia" - #: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing model" msgstr "CiÄ™cie modelu" @@ -11941,10 +11437,6 @@ msgstr "PrzylegajÄ…ce" msgid "Software &Releases" msgstr "Wersje oprog&ramowania" -#: src/slic3r/GUI/PresetHints.cpp:176 -msgid "solid infill" -msgstr "zwarte wypeÅ‚nienie" - #: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:322 #: src/libslic3r/ExtrusionEntity.cpp:348 src/libslic3r/PrintConfig.cpp:2342 #: src/libslic3r/PrintConfig.cpp:2354 @@ -11959,6 +11451,10 @@ msgstr "Zwarte wypeÅ‚nienie co" msgid "Solid infill extruder" msgstr "Ekstruder do zwartego wypeÅ‚nienia" +#: src/libslic3r/PrintConfig.cpp:2313 +msgid "Solid infill threshold area" +msgstr "Min. powierzchnia zwartego wypeÅ‚nienia" + #: resources/data/hints.ini: [hint:Solid infill threshold area] msgid "" "Solid infill threshold area\n" @@ -11971,10 +11467,6 @@ msgstr "" "automatycznie wypeÅ‚niane zwartym wypeÅ‚nieniem? Ustaw parametr Min. " "powierzchnia zwartego wypeÅ‚nienia. (Tylko w trybie Eksperta)." -#: src/libslic3r/PrintConfig.cpp:2313 -msgid "Solid infill threshold area" -msgstr "Min. powierzchnia zwartego wypeÅ‚nienia" - #: src/slic3r/GUI/Tab.cpp:1470 src/libslic3r/PrintConfig.cpp:2367 msgid "Solid layers" msgstr "Zwarte warstwy" @@ -11988,17 +11480,6 @@ msgid "Soluble material is most likely used for a soluble support." msgstr "" "MateriaÅ‚ rozpuszczalny jest używany zazwyczaj do rozpuszczalnych podpór." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 -msgid "" -"Some fields are too long to fit. Right mouse click reveals the full text." -msgstr "" -"Niektóre opisy sÄ… zbyt dÅ‚ugie, aby mogÅ‚y siÄ™ zmieÅ›cić. Kliknij prawym " -"przyciskiem, aby pokazać caÅ‚y tekst." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some filaments were uninstalled." -msgstr "Niektóre filamenty zostaÅ‚y odinstalowane." - #: src/libslic3r/PrintConfig.cpp:1321 msgid "" "Some G/M-code commands, including temperature control and others, are not " @@ -12011,6 +11492,25 @@ msgstr "" "kompatybilny plik wyjÅ›ciowy. Wariant \"no extrusion\" wyłączy generowanie " "jakichkolwiek wartoÅ›ci ekstruzji." +#: src/slic3r/GUI/ConfigWizard.cpp:2696 +msgid "Some Printers were uninstalled." +msgstr "Niektóre drukarki zostaÅ‚y odinstalowane." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some SLA materials were uninstalled." +msgstr "Niektóre materiaÅ‚y SLA zostaÅ‚y odinstalowane." + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +msgid "" +"Some fields are too long to fit. Right mouse click reveals the full text." +msgstr "" +"Niektóre opisy sÄ… zbyt dÅ‚ugie, aby mogÅ‚y siÄ™ zmieÅ›cić. Kliknij prawym " +"przyciskiem, aby pokazać caÅ‚y tekst." + +#: src/slic3r/GUI/ConfigWizard.cpp:2729 +msgid "Some filaments were uninstalled." +msgstr "Niektóre filamenty zostaÅ‚y odinstalowane." + #: src/slic3r/GUI/GLCanvas3D.cpp:6370 msgid "Some objects are not visible during editing." msgstr "Niektóre obiekty nie sÄ… widoczne podczas edycji." @@ -12060,14 +11560,6 @@ msgstr "" "Niektóre drukarki mogÄ… mieć trudnoÅ›ci z drukiem ze zmiennÄ… wysokoÅ›ciÄ… " "warstwy. DomyÅ›lnie włączone." -#: src/slic3r/GUI/ConfigWizard.cpp:2696 -msgid "Some Printers were uninstalled." -msgstr "Niektóre drukarki zostaÅ‚y odinstalowane." - -#: src/slic3r/GUI/ConfigWizard.cpp:2729 -msgid "Some SLA materials were uninstalled." -msgstr "Niektóre materiaÅ‚y SLA zostaÅ‚y odinstalowane." - #: src/slic3r/GUI/GLCanvas3D.cpp:4041 msgid "Spacing" msgstr "OdstÄ™p" @@ -12230,14 +11722,14 @@ msgstr "PrÄ™dkość:" msgid "Sphere" msgstr "Kula" -#: src/libslic3r/PrintConfig.cpp:2381 -msgid "Spiral vase" -msgstr "Tryb wazy" - #: src/slic3r/GUI/ConfigManipulation.cpp:91 msgid "Spiral Vase" msgstr "Tryb wazy" +#: src/libslic3r/PrintConfig.cpp:2381 +msgid "Spiral vase" +msgstr "Tryb wazy" + #: src/slic3r/GUI/GUI_Factories.cpp:944 src/slic3r/GUI/GUI_Factories.cpp:954 #: src/slic3r/GUI/GUI_Factories.cpp:975 src/libslic3r/PrintConfig.cpp:4400 msgid "Split" @@ -12259,22 +11751,22 @@ msgstr "Podziel wybrany model na osobne modele" msgid "Split the selected object into individual parts" msgstr "Podziel wybrany obiekt na osobne części" -#: src/slic3r/GUI/GLCanvas3D.cpp:4565 -msgid "Split to objects" -msgstr "Podziel na osobne modele" - #: src/slic3r/GUI/Plater.cpp:3095 msgid "Split to Objects" msgstr "Podziel na modele" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 -msgid "Split to parts" -msgstr "Podziel na części" - #: src/slic3r/GUI/GUI_ObjectList.cpp:2008 msgid "Split to Parts" msgstr "Podziel na części" +#: src/slic3r/GUI/GLCanvas3D.cpp:4565 +msgid "Split to objects" +msgstr "Podziel na osobne modele" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 +msgid "Split to parts" +msgstr "Podziel na części" + #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:66 #: src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp:132 msgid "Split triangles" @@ -12300,6 +11792,12 @@ msgstr "Standard" msgid "Stars" msgstr "Gwiazdki" +#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 +#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2415 +msgid "Start G-code" +msgstr "G-code startowy" + #: src/slic3r/GUI/MainFrame.cpp:1142 msgid "Start a new project" msgstr "Rozpocznij nowy projekt" @@ -12308,12 +11806,6 @@ msgstr "Rozpocznij nowy projekt" msgid "Start at height" msgstr "Zakres od" -#: src/slic3r/GUI/Tab.cpp:2082 src/slic3r/GUI/Tab.cpp:2402 -#: src/libslic3r/GCode.cpp:707 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2415 -msgid "Start G-code" -msgstr "G-code startowy" - #: src/slic3r/GUI/MainFrame.cpp:1293 msgid "Start new slicing process" msgstr "Uruchom nowy proces ciÄ™cia" @@ -12370,10 +11862,6 @@ msgstr "Stan:" msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1435 -msgid "stealth mode" -msgstr "tryb stealth" - #: src/slic3r/GUI/GCodeViewer.cpp:3755 msgid "Stealth mode" msgstr "Tryb stealth" @@ -12413,22 +11901,6 @@ msgstr "" "WysuniÄ™to pomyÅ›lnie. UrzÄ…dzenie %s(%s) można teraz bezpiecznie odłączyć od " "komputera." -#: src/slic3r/GUI/PresetHints.cpp:181 -msgid "support" -msgstr "podpora" - -#: src/libslic3r/PrintConfig.cpp:3517 -msgid "Support base diameter" -msgstr "Åšrednica stopy podpory" - -#: src/libslic3r/PrintConfig.cpp:3527 -msgid "Support base height" -msgstr "Wysokość stopy podpory" - -#: src/libslic3r/PrintConfig.cpp:3536 -msgid "Support base safety distance" -msgstr "Bezpieczna odlegÅ‚ość stopy podpory" - #: src/slic3r/GUI/GUI_ObjectList.cpp:3780 msgid "Support Blocker" msgstr "Blokada podpór" @@ -12445,14 +11917,22 @@ msgstr "Wymuszenie podpór" msgid "Support Generator" msgstr "Generator podpór" +#: src/libslic3r/PrintConfig.cpp:3517 +msgid "Support base diameter" +msgstr "Åšrednica stopy podpory" + +#: src/libslic3r/PrintConfig.cpp:3527 +msgid "Support base height" +msgstr "Wysokość stopy podpory" + +#: src/libslic3r/PrintConfig.cpp:3536 +msgid "Support base safety distance" +msgstr "Bezpieczna odlegÅ‚ość stopy podpory" + #: src/slic3r/GUI/Tab.cpp:4599 msgid "Support head" msgstr "ÅÄ…cznik podpory" -#: src/slic3r/GUI/PresetHints.cpp:183 -msgid "support interface" -msgstr "warstwa łączÄ…ca podpory z modelem" - #: src/slic3r/GUI/GUI_Factories.cpp:56 src/slic3r/GUI/GUI_Factories.cpp:131 #: src/slic3r/GUI/GUI_Preview.cpp:249 src/slic3r/GUI/Tab.cpp:1550 #: src/slic3r/GUI/Tab.cpp:1552 src/libslic3r/ExtrusionEntity.cpp:328 @@ -12536,10 +12016,6 @@ msgstr "Edycja punktów podpór" msgid "Supports" msgstr "Podpory" -#: src/slic3r/GUI/Plater.cpp:1317 -msgid "supports and pad" -msgstr "podpory i podkÅ‚adka" - #: src/libslic3r/PrintConfig.cpp:1596 msgid "Supports remaining times" msgstr "ObsÅ‚uga pozostaÅ‚ego czasu druku" @@ -12572,10 +12048,6 @@ msgstr "" msgid "Suppress to open hyperlink in browser" msgstr "Nie otwieraj linków w przeglÄ…darce" -#: src/slic3r/GUI/MainFrame.cpp:1661 -msgid "SVG" -msgstr "SVG" - #: src/slic3r/GUI/Mouse3DController.cpp:508 msgid "Swap Y/Z axes" msgstr "ZamieÅ„ osie Y/Z" @@ -12597,10 +12069,6 @@ msgstr "ZmieÅ„ kod na zmianÄ™ koloru (%1%) dla:" msgid "Switch to 3D" msgstr "Przełącz na 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 -msgid "Switch to editing mode" -msgstr "Tryb edycji" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "Switch to Preview" msgstr "Przełącz na PodglÄ…d ciÄ™cia" @@ -12609,6 +12077,10 @@ msgstr "Przełącz na PodglÄ…d ciÄ™cia" msgid "Switch to Settings" msgstr "Przełącz na ustawienia" +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1228 +msgid "Switch to editing mode" +msgstr "Tryb edycji" + #: src/slic3r/GUI/wxExtensions.cpp:644 #, c-format, boost-format msgid "Switch to the %s mode" @@ -12647,10 +12119,6 @@ msgstr "" "Włączenie trybu prostego spowoduje odrzucenie zmian wprowadzonych w trybie " "zaawansowanym! Czy chcesz kontynować?" -#: src/slic3r/GUI/Tab.cpp:1413 -msgid "symbolic profile name" -msgstr "skrócona nazwa profilu" - #: src/libslic3r/PrintConfig.cpp:2761 msgid "" "Synchronize support layers with the object print layers. This is useful with " @@ -12667,14 +12135,14 @@ msgstr "Synchronizuj z warstwami modelu" msgid "System &Info" msgstr "&Informacje systemowe" -#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 -msgid "System info sent successfully. Thank you." -msgstr "Informacje systemowe wysÅ‚ano pomyÅ›lnie. DziÄ™kujÄ™." - #: src/slic3r/GUI/SysInfoDialog.cpp:84 msgid "System Information" msgstr "Informacje o systemie" +#: src/slic3r/GUI/SendSystemInfoDialog.cpp:703 +msgid "System info sent successfully. Thank you." +msgstr "Informacje systemowe wysÅ‚ano pomyÅ›lnie. DziÄ™kujÄ™." + #: src/slic3r/GUI/PresetComboBoxes.cpp:249 #: src/slic3r/GUI/PresetComboBoxes.cpp:287 #: src/slic3r/GUI/PresetComboBoxes.cpp:794 @@ -12759,6 +12227,145 @@ msgstr "" "JeÅ›li urzÄ…dzenie jest podłączone, to naciÅ›nij przycisk Reset obok złącza " "USB ..." +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"Archiwum SLA nie zawiera żadnych ustawieÅ„. Przed zaimportowaniem tego " +"archiwum SLA należy najpierw aktywować zestaw ustawieÅ„ drukarki SLA." + +#: src/slic3r/GUI/ConfigManipulation.cpp:82 +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Wymagania trybu wazy:\n" +"- jeden obrys\n" +"- brak górnych warstw\n" +"- 0% wypeÅ‚nienia\n" +"- brak materiaÅ‚u podporowego\n" +"- wyłączone ustawienie \"Zagwarantuj grubość Å›cianki\"\n" +"- wyłączone wykrywanie cienkich Å›cian" + +#: src/libslic3r/Print.cpp:469 +msgid "" +"The Spiral Vase option can only be used when printing single material " +"objects." +msgstr "Tryb Wazy może być używany jedynie podczas druku z jednego materiaÅ‚u." + +#: src/libslic3r/Print.cpp:494 +msgid "" +"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." +msgstr "" +"Wieża czyszczÄ…ca obecnie nie obsÅ‚uguje wolumetrycznego parametru E " +"(use_volumetric_e=0)." + +#: src/slic3r/GUI/ConfigManipulation.cpp:121 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool " +"change.\n" +"(both support_material_extruder and support_material_interface_extruder need " +"to be set to 0)." +msgstr "" +"Wieża czyszczÄ…ca obsÅ‚uguje podpory nierozpuszczalne jedynie, gdy sÄ… " +"drukowane tym samym ekstruderem - bez wywoÅ‚ywania zmiany narzÄ™dzia (zarówno " +"support_material_extruder i support_material_interface_extruder muszÄ… być " +"ustawione na 0)." + +#: src/libslic3r/Print.cpp:598 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only if they are " +"printed with the current extruder without triggering a tool change. (both " +"support_material_extruder and support_material_interface_extruder need to be " +"set to 0)." +msgstr "" +"Wieża CzyszczÄ…ca obsÅ‚uguje podpory nierozpuszczalne jedynie, gdy sÄ… " +"drukowane tym samym ekstruderem - bez wywoÅ‚ywania zmiany narzÄ™dzia (zarówno " +"support_material_extruder i support_material_interface_extruder muszÄ… być " +"ustawione na 0)." + +#: src/libslic3r/Print.cpp:496 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"Wieża czyszczÄ…ca jest obecnie niedostÄ™pna dla wielomateriaÅ‚owego druku " +"sekwencyjnego." + +#: src/libslic3r/Print.cpp:488 +msgid "" +"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"Wieża czyszczÄ…ca jest obecnie wspierana tylko dla G-code w stylu Marlin, " +"RepRap/Sprinter, RepRapFirmware oraz Repetier." + +#: src/libslic3r/Print.cpp:490 +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"Wieża CzyszczÄ…ca jest obecnie dostÄ™pna tylko przy relatywnym adresowaniu " +"ekstrudera (use_relative_e_distances=1)." + +#: src/libslic3r/Print.cpp:519 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"over an equal number of raft layers" +msgstr "" +"Wieża CzyszczÄ…ca jest dostÄ™pna dla wielu modeli tylko gdy sÄ… drukowane na " +"takiej samej iloÅ›ci warstw tratwy (raft)" + +#: src/libslic3r/Print.cpp:522 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are printed " +"with the same support_material_contact_distance" +msgstr "" +"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że ustawienie " +"support_material_contact_distance jest jednakowe dla każdego z nich" + +#: src/libslic3r/Print.cpp:524 +msgid "" +"The Wipe Tower is only supported for multiple objects if they are sliced " +"equally." +msgstr "" +"Wieża CzyszczÄ…ca jest dostÄ™pna dla kilku modeli tylko jeÅ›li sÄ… ciÄ™te z takÄ… " +"samÄ… wysokoÅ›ciÄ… warstwy." + +#: src/libslic3r/Print.cpp:517 +msgid "" +"The Wipe Tower is only supported for multiple objects if they have equal " +"layer heights" +msgstr "" +"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że majÄ… one " +"równÄ… wysokość warstwy" + +#: src/slic3r/GUI/Tab.cpp:3005 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Opcja czyszczenia dyszy nie jest dostÄ™pna z funkcjÄ… retrakcji w firmware " +"(Firmware Retraction).\n" +"\n" +"Wyłączyć jÄ…, aby włączyć Firmware Retraction?" + +#: src/libslic3r/Print.cpp:537 +msgid "" +"The Wipe tower is only supported if all objects have the same variable layer " +"height" +msgstr "" +"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że majÄ… one " +"takÄ… samÄ… wysokość warstwy" + #: src/slic3r/GUI/GUI_App.cpp:957 #, boost-format msgid "" @@ -12933,18 +12540,18 @@ msgstr "" "zniwelować efekt stopy sÅ‚onia (Elephant Foot - gdy pierwsza warstwa " "\"rozjeżdża\" siÄ™ na boki)." -#: src/slic3r/GUI/Plater.cpp:5717 -msgid "The following characters are not allowed by a FAT file system:" -msgstr "NastÄ™pujÄ…ce znaki sÄ… niedozwolone w systemie plików FAT:" - -#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 -msgid "the following characters are not allowed:" -msgstr "nastÄ™pujÄ…ce znaki nie sÄ… dozwolone:" - #: src/slic3r/GUI/ConfigWizard.cpp:2459 msgid "The following FFF printer models have no filament selected:" msgstr "NastÄ™pujÄ…ce modele drukarek FFF nie majÄ… przypisanych filamentów:" +#: src/slic3r/GUI/ConfigWizard.cpp:2477 +msgid "The following SLA printer models have no materials selected:" +msgstr "NastÄ™pujÄ…ce modele drukarek SLA nie majÄ… przypisanych materiałów:" + +#: src/slic3r/GUI/Plater.cpp:5717 +msgid "The following characters are not allowed by a FAT file system:" +msgstr "NastÄ™pujÄ…ce znaki sÄ… niedozwolone w systemie plików FAT:" + #: src/slic3r/GUI/Tab.cpp:1842 #, c-format, boost-format msgid "" @@ -13009,14 +12616,6 @@ msgid "" "The following shortcuts are applicable when the specified gizmo is active" msgstr "NastÄ™pujÄ…ce skróty majÄ… zastosowanie, gdy aktywy jest okreÅ›lony uchwyt" -#: src/slic3r/GUI/ConfigWizard.cpp:2477 -msgid "The following SLA printer models have no materials selected:" -msgstr "NastÄ™pujÄ…ce modele drukarek SLA nie majÄ… przypisanych materiałów:" - -#: src/slic3r/GUI/SavePresetDialog.cpp:110 -msgid "the following suffix is not allowed:" -msgstr "nastÄ™pujÄ…cy sufiks nie jest dozwolony:" - #: src/slic3r/GUI/GUI.cpp:327 msgid "The following values were substituted:" msgstr "NastÄ™pujÄ…ce wartoÅ›ci zostaÅ‚y zamienione:" @@ -13359,6 +12958,14 @@ msgstr "" "Wybrany obiekt nie jest już dostÄ™pny.\n" "Czy chcesz usunąć go z listy niedawno używanych projektów?" +#: src/slic3r/GUI/DoubleSlider.cpp:1408 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually." +msgstr "" +"Druk sekwencyjny jest włączony.\n" +"Dodawanie wÅ‚asnego G-code jest niemożliwe podczas drukowania sekwencyjnego." + #: src/slic3r/GUI/DoubleSlider.cpp:1440 msgid "" "The sequential print is on.\n" @@ -13371,14 +12978,6 @@ msgstr "" "sekwencyjnie.\n" "Ten kod nie bÄ™dzie przetwarzany podczas generowania pliku G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:1408 -msgid "" -"The sequential print is on.\n" -"It's impossible to apply any custom G-code for objects printing sequentually." -msgstr "" -"Druk sekwencyjny jest włączony.\n" -"Dodawanie wÅ‚asnego G-code jest niemożliwe podczas drukowania sekwencyjnego." - #: src/slic3r/GUI/ConfigWizard.cpp:1287 msgid "The size of the object can be specified in inches" msgstr "Rozmiar modelu może być wyrażony w calach" @@ -13387,14 +12986,6 @@ msgstr "Rozmiar modelu może być wyrażony w calach" msgid "The size of the object is zero" msgstr "Rozmiar obiektu wynosi zero" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:158 -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"Archiwum SLA nie zawiera żadnych ustawieÅ„. Przed zaimportowaniem tego " -"archiwum SLA należy najpierw aktywować zestaw ustawieÅ„ drukarki SLA." - #: src/libslic3r/PrintConfig.cpp:3671 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " @@ -13416,30 +13007,6 @@ msgstr "" msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "PrÄ™dkość retrakcji (stosowana tylko dla silnika ekstrudera)." -#: src/slic3r/GUI/ConfigManipulation.cpp:82 -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- Ensure vertical shell thickness enabled\n" -"- Detect thin walls disabled" -msgstr "" -"Wymagania trybu wazy:\n" -"- jeden obrys\n" -"- brak górnych warstw\n" -"- 0% wypeÅ‚nienia\n" -"- brak materiaÅ‚u podporowego\n" -"- wyłączone ustawienie \"Zagwarantuj grubość Å›cianki\"\n" -"- wyłączone wykrywanie cienkich Å›cian" - -#: src/libslic3r/Print.cpp:469 -msgid "" -"The Spiral Vase option can only be used when printing single material " -"objects." -msgstr "Tryb Wazy może być używany jedynie podczas druku z jednego materiaÅ‚u." - #: src/slic3r/GUI/PhysicalPrinterDialog.cpp:630 msgid "The supplied name is empty. It can't be saved." msgstr "Podana nazwa jest pusta. Nie można zapisać." @@ -13493,105 +13060,6 @@ msgstr "" "support_material_contact_distance bÄ™dzie używany zarówno dla górnej i dolnej " "odlegÅ‚oÅ›ci w osi Z." -#: src/slic3r/GUI/Tab.cpp:3005 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"Opcja czyszczenia dyszy nie jest dostÄ™pna z funkcjÄ… retrakcji w firmware " -"(Firmware Retraction).\n" -"\n" -"Wyłączyć jÄ…, aby włączyć Firmware Retraction?" - -#: src/libslic3r/Print.cpp:494 -msgid "" -"The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." -msgstr "" -"Wieża czyszczÄ…ca obecnie nie obsÅ‚uguje wolumetrycznego parametru E " -"(use_volumetric_e=0)." - -#: src/slic3r/GUI/ConfigManipulation.cpp:121 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool " -"change.\n" -"(both support_material_extruder and support_material_interface_extruder need " -"to be set to 0)." -msgstr "" -"Wieża czyszczÄ…ca obsÅ‚uguje podpory nierozpuszczalne jedynie, gdy sÄ… " -"drukowane tym samym ekstruderem - bez wywoÅ‚ywania zmiany narzÄ™dzia (zarówno " -"support_material_extruder i support_material_interface_extruder muszÄ… być " -"ustawione na 0)." - -#: src/libslic3r/Print.cpp:598 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only if they are " -"printed with the current extruder without triggering a tool change. (both " -"support_material_extruder and support_material_interface_extruder need to be " -"set to 0)." -msgstr "" -"Wieża CzyszczÄ…ca obsÅ‚uguje podpory nierozpuszczalne jedynie, gdy sÄ… " -"drukowane tym samym ekstruderem - bez wywoÅ‚ywania zmiany narzÄ™dzia (zarówno " -"support_material_extruder i support_material_interface_extruder muszÄ… być " -"ustawione na 0)." - -#: src/libslic3r/Print.cpp:496 -msgid "" -"The Wipe Tower is currently not supported for multimaterial sequential " -"prints." -msgstr "" -"Wieża czyszczÄ…ca jest obecnie niedostÄ™pna dla wielomateriaÅ‚owego druku " -"sekwencyjnego." - -#: src/libslic3r/Print.cpp:488 -msgid "" -"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"Wieża czyszczÄ…ca jest obecnie wspierana tylko dla G-code w stylu Marlin, " -"RepRap/Sprinter, RepRapFirmware oraz Repetier." - -#: src/libslic3r/Print.cpp:490 -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"Wieża CzyszczÄ…ca jest obecnie dostÄ™pna tylko przy relatywnym adresowaniu " -"ekstrudera (use_relative_e_distances=1)." - -#: src/libslic3r/Print.cpp:519 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"over an equal number of raft layers" -msgstr "" -"Wieża CzyszczÄ…ca jest dostÄ™pna dla wielu modeli tylko gdy sÄ… drukowane na " -"takiej samej iloÅ›ci warstw tratwy (raft)" - -#: src/libslic3r/Print.cpp:522 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are printed " -"with the same support_material_contact_distance" -msgstr "" -"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że ustawienie " -"support_material_contact_distance jest jednakowe dla każdego z nich" - -#: src/libslic3r/Print.cpp:524 -msgid "" -"The Wipe Tower is only supported for multiple objects if they are sliced " -"equally." -msgstr "" -"Wieża CzyszczÄ…ca jest dostÄ™pna dla kilku modeli tylko jeÅ›li sÄ… ciÄ™te z takÄ… " -"samÄ… wysokoÅ›ciÄ… warstwy." - -#: src/libslic3r/Print.cpp:517 -msgid "" -"The Wipe Tower is only supported for multiple objects if they have equal " -"layer heights" -msgstr "" -"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że majÄ… one " -"równÄ… wysokość warstwy" - #: src/libslic3r/Print.cpp:482 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " @@ -13600,14 +13068,6 @@ msgstr "" "Wieża CzyszczÄ…ca jest dostÄ™pna tylko, gdy wszystkie ekstrudery majÄ… takÄ… " "samÄ… Å›rednicÄ™ dyszy i używajÄ… filamentów i takiej samej Å›rednicy." -#: src/libslic3r/Print.cpp:537 -msgid "" -"The Wipe tower is only supported if all objects have the same variable layer " -"height" -msgstr "" -"Wieża czyszczÄ…ca jest dostÄ™pna dla wielu modeli pod warunkiem, że majÄ… one " -"takÄ… samÄ… wysokość warstwy" - #: src/slic3r/GUI/Plater.cpp:4096 msgid "There are active warnings concerning sliced models:" msgstr "IstniejÄ… aktywne ostrzeżenia dotyczÄ…ce ciÄ™tych modeli:" @@ -13659,6 +13119,18 @@ msgstr "Grube mosty" msgid "This %s version: %s" msgstr "%s wersja: %s" +#: src/libslic3r/PrintConfig.cpp:2433 +msgid "This G-code will be used as a code for the color change" +msgstr "Ten G-code zostanie użyty przy zmianie koloru" + +#: src/libslic3r/PrintConfig.cpp:2442 +msgid "This G-code will be used as a code for the pause print" +msgstr "Ten G-code zostanie użyty przy pauzie wydruku" + +#: src/libslic3r/PrintConfig.cpp:2451 +msgid "This G-code will be used as a custom code" +msgstr "Ten G-code zostanie użyty jako niestandardowy" + #: src/slic3r/GUI/DoubleSlider.cpp:2087 src/slic3r/GUI/Tab.cpp:1322 msgid "" "This action is not revertible.\n" @@ -13926,18 +13398,6 @@ msgstr "" "kropli filamentu wokół koÅ„cówki dyszy przy ekstruderach, które majÄ… " "tendencjÄ™ do wyciekania filamentu." -#: src/libslic3r/PrintConfig.cpp:2433 -msgid "This G-code will be used as a code for the color change" -msgstr "Ten G-code zostanie użyty przy zmianie koloru" - -#: src/libslic3r/PrintConfig.cpp:2442 -msgid "This G-code will be used as a code for the pause print" -msgstr "Ten G-code zostanie użyty przy pauzie wydruku" - -#: src/libslic3r/PrintConfig.cpp:2451 -msgid "This G-code will be used as a custom code" -msgstr "Ten G-code zostanie użyty jako niestandardowy" - #: src/slic3r/GUI/Tab.cpp:1351 msgid "This is a default preset." msgstr "To jest domyÅ›lny zestaw ustawieÅ„." @@ -14365,10 +13825,6 @@ msgstr "" "potrzebować wiÄ™cej czasu na skurcz termiczny wracajÄ…c do nominalnego " "rozmiaru." -#: src/slic3r/GUI/GCodeViewer.cpp:3190 -msgid "to" -msgstr "do" - #: src/slic3r/GUI/Tab.cpp:1365 msgid "To do that please specify a new name for the preset." msgstr "Aby to zrobić, ustaw nowÄ… nazwÄ™ zestawu ustawieÅ„." @@ -14403,10 +13859,6 @@ msgstr "" msgid "Toggle %c axis mirroring" msgstr "Włącz odbicie w osi %c" -#: src/libslic3r/miniz_extension.cpp:93 -msgid "too many files" -msgstr "zbyt wiele plików" - #: src/libslic3r/SLAPrintSteps.cpp:426 msgid "Too many overlapping holes." msgstr "Zbyt wiele nakÅ‚adajÄ…cych siÄ™ otworów." @@ -14460,6 +13912,10 @@ msgstr "" "Porada dot. gruboÅ›ci dolnej / górnej powÅ‚oki: niedostÄ™pne z powodu " "nieprawidÅ‚owej wysokoÅ›ci warstwy." +#: src/slic3r/GUI/MainFrame.cpp:1118 +msgid "Top View" +msgstr "Widok z góry" + #: src/libslic3r/PrintConfig.cpp:2548 msgid "Top contact Z distance" msgstr "OdstÄ™p góry w osi Z" @@ -14481,10 +13937,6 @@ msgstr "Góra jest otwarta." msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Górna powÅ‚oka ma %1% mm gruboÅ›ci dla warstwy o wysokoÅ›ci %2% mm." -#: src/slic3r/GUI/PresetHints.cpp:178 -msgid "top solid infill" -msgstr "zwarte wypeÅ‚nienie na szczycie" - #: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:323 #: src/libslic3r/ExtrusionEntity.cpp:350 src/libslic3r/PrintConfig.cpp:2839 #: src/libslic3r/PrintConfig.cpp:2852 @@ -14495,10 +13947,6 @@ msgstr "Zwarte wypeÅ‚nienie górne" msgid "Top solid layers" msgstr "Zwarte warstwy górne" -#: src/slic3r/GUI/MainFrame.cpp:1118 -msgid "Top View" -msgstr "Widok z góry" - #: src/libslic3r/PrintConfig.cpp:1550 msgid "Topmost surface only" msgstr "Tylko najwyżej poÅ‚ożona warstwa" @@ -14579,6 +14027,32 @@ msgstr "Rodzaj drukarki." msgid "Type:" msgstr "Typ:" +#: src/slic3r/GUI/Tab.cpp:4257 +msgid "UNLOCKED LOCK" +msgstr "OTWARTA KÅÓDKA" + +#: src/slic3r/GUI/Tab.cpp:4283 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not " +"equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or " +"default) values." +msgstr "" +"OTWARTA KÅÓDKA oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie " +"odpowiadajÄ… wartoÅ›ciom systemowym (lub domyÅ›lnym) w obecnej grupie opcji.\n" +"Kliknij, aby zresetować wszystkie ustawienia obecnej grupy ustawieÅ„ do " +"wartoÅ›ci systemowych (lub domyÅ›lnych)." + +#: src/slic3r/GUI/Tab.cpp:4298 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " +"the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"OTWARTA KÅÓDKA oznacza, że niektóre wartoÅ›ci zostaÅ‚y zmodyfikowane i nie " +"odpowiadajÄ… systemowym (lub domyÅ›lnym).\n" +"Kliknij ikonÄ™, aby zresetować do wartoÅ›ci systemowej (lub domyÅ›lnej)." + #: src/libslic3r/SLAPrintSteps.cpp:441 msgid "Unable to drill the current configuration of holes into the model." msgstr "Nie ma możliwoÅ›ci wywiercenia otworów w modelu w obecnej konfiguracji." @@ -14622,10 +14096,6 @@ msgstr "Niezdefiniowana grupa" msgid "Undefined" msgstr "Nie zdefiniowano" -#: src/libslic3r/miniz_extension.cpp:91 -msgid "undefined error" -msgstr "nieznany błąd" - #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:294 msgid "Underflow" msgstr "Niedomiar" @@ -14649,6 +14119,10 @@ msgstr[3] "Cofnij %1$d akcji" msgid "Undo / Redo is processing" msgstr "Trwa cofanie / powtarzanie czynnoÅ›ci" +#: src/slic3r/GUI/GLCanvas3D.cpp:3916 +msgid "Undo History" +msgstr "Historia Cofnięć" + #: src/slic3r/GUI/NotificationManager.hpp:772 msgid "Undo desktop integration failed." msgstr "Cofnij nieudanÄ… integracjÄ™ z pulpitem." @@ -14657,10 +14131,6 @@ msgstr "Cofnij nieudanÄ… integracjÄ™ z pulpitem." msgid "Undo desktop integration was successful." msgstr "Cofnij udanÄ… integracjÄ™ z pulpitem." -#: src/slic3r/GUI/GLCanvas3D.cpp:3916 -msgid "Undo History" -msgstr "Historia Cofnięć" - #: resources/data/hints.ini: [hint:Undo/redo history] msgid "" "Undo/redo history\n" @@ -14672,10 +14142,6 @@ msgstr "" "powtarzania, aby zobaczyć historiÄ™ zmian, majÄ…c możliwość cofniÄ™cia lub " "powtórzenia kilku czynnoÅ›ci na raz?" -#: src/libslic3r/miniz_extension.cpp:115 -msgid "unexpected decompressed size" -msgstr "nieoczekiwany rozmiar po rozpakowaniu" - #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:28 #: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:317 msgid "Unknown" @@ -14692,10 +14158,6 @@ msgstr "WystÄ…piÅ‚ nieznany błąd" msgid "Unknown error occured during exporting G-code." msgstr "WystÄ…piÅ‚ nieznany błąd podczas eksportowania G-code." -#: src/slic3r/GUI/WipeTowerDialog.cpp:308 -msgid "unloaded" -msgstr "rozÅ‚adowano" - #: src/libslic3r/PrintConfig.cpp:908 msgid "Unloading speed" msgstr "PrÄ™dkość rozÅ‚adowania" @@ -14704,32 +14166,6 @@ msgstr "PrÄ™dkość rozÅ‚adowania" msgid "Unloading speed at the start" msgstr "PoczÄ…tkowa prÄ™dkość rozÅ‚adowania" -#: src/slic3r/GUI/Tab.cpp:4257 -msgid "UNLOCKED LOCK" -msgstr "OTWARTA KÅÓDKA" - -#: src/slic3r/GUI/Tab.cpp:4283 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not " -"equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or " -"default) values." -msgstr "" -"OTWARTA KÅÓDKA oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie " -"odpowiadajÄ… wartoÅ›ciom systemowym (lub domyÅ›lnym) w obecnej grupie opcji.\n" -"Kliknij, aby zresetować wszystkie ustawienia obecnej grupy ustawieÅ„ do " -"wartoÅ›ci systemowych (lub domyÅ›lnych)." - -#: src/slic3r/GUI/Tab.cpp:4298 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to " -"the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"OTWARTA KÅÓDKA oznacza, że niektóre wartoÅ›ci zostaÅ‚y zmodyfikowane i nie " -"odpowiadajÄ… systemowym (lub domyÅ›lnym).\n" -"Kliknij ikonÄ™, aby zresetować do wartoÅ›ci systemowej (lub domyÅ›lnej)." - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 msgid "Unsaved Changes" msgstr "Niezapisane zmiany" @@ -14738,26 +14174,6 @@ msgstr "Niezapisane zmiany" msgid "Unselect gizmo or clear selection" msgstr "Odznacz uchwyt lub wyczyść zaznaczenie" -#: src/libslic3r/miniz_extension.cpp:119 -msgid "unsupported central directory size" -msgstr "nieobsÅ‚ugiwany rozmiar katalogu centralnego" - -#: src/libslic3r/miniz_extension.cpp:99 -msgid "unsupported encryption" -msgstr "nieobsÅ‚ugiwane szyfrowanie" - -#: src/libslic3r/miniz_extension.cpp:101 -msgid "unsupported feature" -msgstr "nieobsÅ‚ugiwana funkcja" - -#: src/libslic3r/miniz_extension.cpp:97 -msgid "unsupported method" -msgstr "nieobsÅ‚ugiwana metoda" - -#: src/libslic3r/miniz_extension.cpp:109 -msgid "unsupported multidisk archive" -msgstr "nieobsÅ‚ugiwane archiwum wielodyskowe" - #: src/slic3r/GUI/OpenGLManager.cpp:265 msgid "Unsupported OpenGL version" msgstr "NieobsÅ‚ugiwana wersja OpenGL" @@ -14771,10 +14187,6 @@ msgstr "NiewÅ‚aÅ›ciwy wybór" msgid "Untitled" msgstr "Bez tytuÅ‚u" -#: src/slic3r/GUI/GCodeViewer.cpp:3176 -msgid "up to" -msgstr "do" - #: src/slic3r/GUI/UpdateDialogs.cpp:37 msgid "Update available" msgstr "DostÄ™pna jest aktualizacja" @@ -14846,6 +14258,10 @@ msgstr "" "Użyj funkcji \"Zamknij otwory\", aby zamknąć wszystkie otwory w powÅ‚okach " "modeli." +#: src/slic3r/GUI/Preferences.cpp:268 +msgid "Use Retina resolution for the 3D scene" +msgstr "Użyj rozdzielczoÅ›ci Retina dla generowania podglÄ…du 3D" + #: src/slic3r/GUI/DoubleSlider.cpp:1615 src/slic3r/GUI/GUI_Factories.cpp:787 msgid "Use another extruder" msgstr "Użyj innego ekstrudera" @@ -14898,10 +14314,6 @@ msgstr "Użyj widoku perspektywicznego" msgid "Use relative E distances" msgstr "Użyj wzglÄ™dnych wartoÅ›ci E (ekstruzji)" -#: src/slic3r/GUI/Preferences.cpp:268 -msgid "Use Retina resolution for the 3D scene" -msgstr "Użyj rozdzielczoÅ›ci Retina dla generowania podglÄ…du 3D" - #: src/slic3r/GUI/Preferences.cpp:507 msgid "Use system menu for application" msgstr "Użyj systemowego menu w aplikacji" @@ -14926,15 +14338,6 @@ msgstr "" msgid "Use volumetric E" msgstr "Użyj wolumetrycznej wartoÅ›ci E" -#: src/slic3r/GUI/DoubleSlider.cpp:1634 -msgid "used" -msgstr "używany" - -#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 -#: src/slic3r/GUI/GCodeViewer.cpp:3562 -msgid "Used filament" -msgstr "Użyty filament" - #: src/slic3r/GUI/Plater.cpp:296 src/slic3r/GUI/Plater.cpp:1376 msgid "Used Filament (g)" msgstr "Użyty filament (g)" @@ -14963,6 +14366,11 @@ msgstr "Używany materiaÅ‚ (ml)" msgid "Used Material (unit)" msgstr "Używany materiaÅ‚ (jednostka)" +#: src/slic3r/GUI/GCodeViewer.cpp:3290 src/slic3r/GUI/GCodeViewer.cpp:3301 +#: src/slic3r/GUI/GCodeViewer.cpp:3562 +msgid "Used filament" +msgstr "Użyty filament" + #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25 src/libslic3r/PrintConfig.cpp:317 msgid "User" msgstr "Użytkownik" @@ -14973,10 +14381,6 @@ msgstr "Użytkownik" msgid "User presets" msgstr "Zestawy użytkownika" -#: src/libslic3r/miniz_extension.cpp:149 -msgid "validation failed" -msgstr "niepowodzenie weryfikacji" - #: src/slic3r/GUI/ButtonsDescription.cpp:57 msgid "Value is the same as the system value" msgstr "Wartość jest taka sama jak systemowa" @@ -14997,6 +14401,11 @@ msgstr "WartoÅ›ci w tej kolumnie dotyczÄ… trybu Normal" msgid "Values in this column are for Stealth mode" msgstr "WartoÅ›ci w tej kolumnie dotyczÄ… trybu Stealth" +#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 +msgid "Variable layer height" +msgstr "Zmienna wysokość warstwy" + #: resources/data/hints.ini: [hint:Variable layer height] msgid "" "Variable layer height\n" @@ -15009,11 +14418,6 @@ msgstr "" "warstw wraz z pÅ‚ynnym przejÅ›ciem miÄ™dzy nimi? Spróbuj opcji Zmienna " "wysokość warstwy. (NiedostÄ™pna dla drukarek SLA.)" -#: src/slic3r/GUI/GLCanvas3D.cpp:225 src/slic3r/GUI/GLCanvas3D.cpp:4627 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:53 -msgid "Variable layer height" -msgstr "Zmienna wysokość warstwy" - #: src/slic3r/GUI/GLCanvas3D.cpp:1273 msgid "Variable layer height - Adaptive" msgstr "Zmienna wysokość warstwy - Adaptacyjna" @@ -15030,14 +14434,6 @@ msgstr "Zmienna wysokość warstwy - Reset" msgid "Variable layer height - Smooth all" msgstr "Zmienna wysokość warstwy - WygÅ‚adź wszystko" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 -msgid "variants" -msgstr "warianty" - -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 -msgid "vendor" -msgstr "dostawca" - #: src/slic3r/GUI/ConfigWizard.cpp:642 msgid "Vendor:" msgstr "Producent:" @@ -15051,18 +14447,14 @@ msgstr "G-code rozszerzony" msgid "Version" msgstr "Wersja" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -msgid "version" -msgstr "wersja" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 +msgid "Vertical Slider" +msgstr "Suwak pionowy" #: src/slic3r/GUI/Tab.cpp:1457 msgid "Vertical shells" msgstr "PowÅ‚oka pionowa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:243 -msgid "Vertical Slider" -msgstr "Suwak pionowy" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:218 #: src/slic3r/GUI/KBShortcutsDialog.cpp:222 msgid "Vertical slider - Move active thumb Down" @@ -15140,6 +14532,38 @@ msgstr "Natężenie przepÅ‚ywu (mm³/s)" msgid "Volumetric speed" msgstr "Natężenie przepÅ‚ywu" +#: src/slic3r/GUI/NotificationManager.cpp:1459 +#: src/slic3r/GUI/NotificationManager.cpp:1486 +#: src/slic3r/GUI/NotificationManager.cpp:1494 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +msgid "WARNING:" +msgstr "OSTRZEÅ»ENIE:" + +#: src/slic3r/GUI/Tab.cpp:4264 +msgid "WHITE BULLET" +msgstr "BIAÅA KROPKA" + +#: src/slic3r/GUI/Tab.cpp:4286 +msgid "WHITE BULLET icon indicates a non system (or non default) preset." +msgstr "" +"BIAÅA KROPKA oznacza niesystemowy (lub inny niż domyÅ›lny) zestaw ustawieÅ„." + +#: src/slic3r/GUI/Tab.cpp:4289 +msgid "" +"WHITE BULLET icon indicates that the settings are the same as in the last " +"saved preset for the current option group." +msgstr "" +"BIAÅA KROPKA oznacza, że ustawienia sÄ… takie same jak w ostatnio zapisanym " +"zestawie ustawieÅ„ dla obecnej grupy opcji." + +#: src/slic3r/GUI/Tab.cpp:4304 +msgid "" +"WHITE BULLET icon indicates that the value is the same as in the last saved " +"preset." +msgstr "" +"BIAÅA KROPKA oznacza, że wartość jest taka sama jak w ostatnio zapisanym " +"zestawie ustawieÅ„." + #: src/libslic3r/PrintConfig.cpp:3740 msgid "Wall thickness" msgstr "Grubość Å›cianki" @@ -15152,13 +14576,6 @@ msgstr "Grubość Å›cianki" msgid "Warning" msgstr "Ostrzeżenie" -#: src/slic3r/GUI/NotificationManager.cpp:1459 -#: src/slic3r/GUI/NotificationManager.cpp:1486 -#: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 -msgid "WARNING:" -msgstr "OSTRZEÅ»ENIE:" - #: src/slic3r/GUI/SendSystemInfoDialog.cpp:590 #, boost-format msgid "" @@ -15215,10 +14632,6 @@ msgstr "" "aplikacji spowoduje wyÅ›wietlenie monitu w pytaniem o wybranie akcji do " "podjÄ™cia przy wczytaniu pliku" -#: src/slic3r/GUI/PresetHints.cpp:192 -msgid "when printing" -msgstr "podczas druku" - #: src/libslic3r/PrintConfig.cpp:530 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " @@ -15311,31 +14724,6 @@ msgstr "" "JeÅ›li retrakcja jest korygowana po ruchu jaÅ‚owym, ekstruder przepchnie takÄ… " "dodatkowÄ… ilość filamentu. Ta opcja jest rzadko potrzebna." -#: src/slic3r/GUI/Tab.cpp:4264 -msgid "WHITE BULLET" -msgstr "BIAÅA KROPKA" - -#: src/slic3r/GUI/Tab.cpp:4286 -msgid "WHITE BULLET icon indicates a non system (or non default) preset." -msgstr "" -"BIAÅA KROPKA oznacza niesystemowy (lub inny niż domyÅ›lny) zestaw ustawieÅ„." - -#: src/slic3r/GUI/Tab.cpp:4289 -msgid "" -"WHITE BULLET icon indicates that the settings are the same as in the last " -"saved preset for the current option group." -msgstr "" -"BIAÅA KROPKA oznacza, że ustawienia sÄ… takie same jak w ostatnio zapisanym " -"zestawie ustawieÅ„ dla obecnej grupy opcji." - -#: src/slic3r/GUI/Tab.cpp:4304 -msgid "" -"WHITE BULLET icon indicates that the value is the same as in the last saved " -"preset." -msgstr "" -"BIAÅA KROPKA oznacza, że wartość jest taka sama jak w ostatnio zapisanym " -"zestawie ustawieÅ„." - #: src/slic3r/GUI/Tab.cpp:3999 msgid "Whole word" msgstr "CaÅ‚e sÅ‚owo" @@ -15377,6 +14765,11 @@ msgstr "" msgid "Wipe" msgstr "Czyszczenie" +#: src/slic3r/GUI/ConfigManipulation.cpp:126 +#: src/slic3r/GUI/ConfigManipulation.cpp:146 +msgid "Wipe Tower" +msgstr "Wieża czyszczÄ…ca" + #: src/libslic3r/PrintConfig.cpp:3013 msgid "Wipe into this object" msgstr "Czyszczenie na tym modelu" @@ -15395,15 +14788,6 @@ msgstr "Opcje czyszczenia" msgid "Wipe tower" msgstr "Wieża czyszczÄ…ca" -#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 -msgid "wipe tower" -msgstr "wieża czyszczÄ…ca" - -#: src/slic3r/GUI/ConfigManipulation.cpp:126 -#: src/slic3r/GUI/ConfigManipulation.cpp:146 -msgid "Wipe Tower" -msgstr "Wieża czyszczÄ…ca" - #: src/slic3r/GUI/WipeTowerDialog.cpp:173 msgid "Wipe tower - Purging volume adjustment" msgstr "Wieża czyszczÄ…ca - dostosowanie objÄ™toÅ›ci czyszczenia" @@ -15428,10 +14812,6 @@ msgstr "Obrót wieży czyszczÄ…cej wzglÄ™dem osi X." msgid "Wipe while retracting" msgstr "Czyszczenie przy retrakcji" -#: src/slic3r/GUI/PresetHints.cpp:193 -msgid "with a volumetric rate" -msgstr "ze współczynnikiem objÄ™toÅ›ciowym" - #: src/libslic3r/PrintConfig.cpp:2122 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " @@ -15482,10 +14862,6 @@ msgstr "" "\n" "Zaktualizowane paczki konfiguracyjne:" -#: src/libslic3r/miniz_extension.cpp:151 -msgid "write calledback failed" -msgstr "błąd write calledback" - #: src/libslic3r/PrintConfig.cpp:4306 msgid "Write information about the model to the console." msgstr "Zapis informacji o modelu do konsoli." @@ -15498,6 +14874,10 @@ msgstr "NieprawidÅ‚owe hasÅ‚o" msgid "X coordinate of the left front corner of a wipe tower" msgstr "Koordynata X wieży czyszczÄ…cej od przedniego lewego narożnika" +#: src/libslic3r/PrintConfig.cpp:3027 +msgid "XY Size Compensation" +msgstr "Korekta wymiarów XY" + #: src/libslic3r/PrintConfig.cpp:2517 msgid "XY separation between an object and its support" msgstr "OdstÄ™p materiaÅ‚u podporowego od modelu w osiach XY" @@ -15511,10 +14891,6 @@ msgstr "" "procentowÄ… (np. 15%) to zostanie obliczona z szerokoÅ›ci ekstruzji obrysów " "zewnÄ™trznych." -#: src/libslic3r/PrintConfig.cpp:3027 -msgid "XY Size Compensation" -msgstr "Korekta wymiarów XY" - #: src/libslic3r/PrintConfig.cpp:2976 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Koordynata wieży czyszczÄ…cej w osi Y od przedniego lewego narożnika" @@ -15576,6 +14952,10 @@ msgid "" msgstr "" "Tutaj możesz umieÅ›cić notatki, które zostanÄ… dodane do nagłówka pliku G-code." +#: src/libslic3r/PrintConfig.cpp:3383 +msgid "You can put your notes regarding the SLA print material here." +msgstr "Tutaj możesz umieÅ›cić notatki dotyczÄ…ce materiaÅ‚u druku SLA." + #: src/libslic3r/PrintConfig.cpp:874 msgid "You can put your notes regarding the filament here." msgstr "Tutaj możesz umieÅ›cić notatki dotyczÄ…ce filamentu." @@ -15584,10 +14964,6 @@ msgstr "Tutaj możesz umieÅ›cić notatki dotyczÄ…ce filamentu." msgid "You can put your notes regarding the printer here." msgstr "Tutaj możesz umieÅ›cić notatki dotyczÄ…ce drukarki." -#: src/libslic3r/PrintConfig.cpp:3383 -msgid "You can put your notes regarding the SLA print material here." -msgstr "Tutaj możesz umieÅ›cić notatki dotyczÄ…ce materiaÅ‚u druku SLA." - #: src/libslic3r/PrintConfig.cpp:637 msgid "" "You can set this to a positive value to disable fan at all during the first " @@ -15818,6 +15194,626 @@ msgstr "" "Ustaw zbliżenie na wybrany model\n" "lub wszystkie na stole, jeÅ›li żaden nie zostaÅ‚ wybrany" +#: src/slic3r/GUI/GCodeViewer.cpp:3182 +msgid "above" +msgstr "ponad" + +#: src/slic3r/GUI/DoubleSlider.cpp:1603 src/slic3r/GUI/GUI_Factories.cpp:779 +msgid "active" +msgstr "aktywny" + +#: src/libslic3r/miniz_extension.cpp:121 +msgid "allocation failed" +msgstr "niepowodzenie alokacji" + +#: src/libslic3r/PrintConfig.cpp:860 src/libslic3r/PrintConfig.cpp:2294 +msgid "approximate seconds" +msgstr "szacowane sekundy" + +#: src/libslic3r/miniz_extension.cpp:147 +msgid "archive is too large" +msgstr "archiwum jest zbyt duże" + +#: src/slic3r/GUI/MainFrame.cpp:655 +msgid "based on Slic3r" +msgstr "bazuje na projekcie Slic3r" + +#: src/libslic3r/miniz_extension.cpp:141 +msgid "buffer too small" +msgstr "niewystarczajÄ…cy bufor" + +#: src/slic3r/GUI/PresetHints.cpp:191 +msgid "by the print profile maximum" +msgstr "maksimum zależny od profilu wydruku" + +#: src/libslic3r/miniz_extension.cpp:113 +msgid "compression failed" +msgstr "niepowodzenie kompresji" + +#: src/slic3r/GUI/DoubleSlider.cpp:1458 +msgid "continue" +msgstr "kontynuuj" + +#: src/libslic3r/miniz_extension.cpp:111 +msgid "decompression failed or archive is corrupted" +msgstr "niepowodzenie rozpakowywania lub uszkodzone archiwum" + +#: src/slic3r/GUI/ExtraRenderers.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:550 src/slic3r/GUI/GUI_ObjectList.cpp:979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:250 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:352 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:376 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:607 src/libslic3r/PrintConfig.cpp:774 +msgid "default" +msgstr "domyÅ›lnie" + +#: src/slic3r/GUI/Tab.cpp:1400 +msgid "default SLA material profile" +msgstr "domyÅ›lny profil materiaÅ‚u SLA" + +#: src/slic3r/GUI/Tab.cpp:1404 +msgid "default SLA print profile" +msgstr "domyÅ›lny profil druku SLA" + +#: src/slic3r/GUI/GCodeViewer.cpp:3388 +msgid "default color" +msgstr "domyÅ›lny kolor" + +#: src/slic3r/GUI/Tab.cpp:1386 +msgid "default filament profile" +msgstr "domyÅ›lny profil filamentu" + +#: src/slic3r/GUI/Tab.cpp:1383 +msgid "default print profile" +msgstr "domyÅ›lny profil druku" + +#: src/slic3r/GUI/Field.cpp:190 +msgid "default value" +msgstr "wartość domyÅ›lna" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "delete" +msgstr "usuÅ„" + +#: src/slic3r/GUI/Plater.cpp:3652 +msgid "differs from the original file" +msgstr "różni siÄ™ od oryginalnego pliku" + +#: src/slic3r/GUI/Plater.cpp:5202 +msgid "does not contain valid gcode." +msgstr "nie zawiera prawidÅ‚owego g-code." + +#: src/slic3r/GUI/PresetHints.cpp:59 +#, boost-format +msgid "except for the first %1% layers." +msgstr "za wyjÄ…tkiem pierwszych %1% warstw." + +#: src/slic3r/GUI/PresetHints.cpp:61 +msgid "except for the first layer." +msgstr "za wyjÄ…tkiem pierwszej warstwy." + +#: src/slic3r/GUI/PresetHints.cpp:170 +msgid "external perimeters" +msgstr "obrysów zewnÄ™trznych" + +#: src/libslic3r/miniz_extension.cpp:103 +msgid "failed finding central directory" +msgstr "nie odnaleziono katalogu centralnego" + +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +msgid "filament" +msgstr "filament" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:65 +msgid "filaments" +msgstr "filamenty" + +#: src/libslic3r/miniz_extension.cpp:131 +msgid "file close failed" +msgstr "niepowodzenia zamykania pliku" + +#: src/libslic3r/miniz_extension.cpp:125 +msgid "file create failed" +msgstr "niepowodzenie tworzenia pliku" + +#: src/libslic3r/miniz_extension.cpp:145 +msgid "file not found" +msgstr "nie znaleziono pliku" + +#: src/libslic3r/miniz_extension.cpp:123 +msgid "file open failed" +msgstr "niepowodzenie otwierania pliku" + +#: src/libslic3r/miniz_extension.cpp:129 +msgid "file read failed" +msgstr "niepowodzenie odczytu pliku" + +#: src/libslic3r/miniz_extension.cpp:133 +msgid "file seek failed" +msgstr "niepowodzenie szukania pliku" + +#: src/libslic3r/miniz_extension.cpp:135 +msgid "file stat failed" +msgstr "niepowodzenie odczytu statystyk pliku" + +#: src/libslic3r/miniz_extension.cpp:95 +msgid "file too large" +msgstr "plik jest zbyt duży" + +#: src/libslic3r/miniz_extension.cpp:127 +msgid "file write failed" +msgstr "niepowodzenie zapisywania do pliku" + +#: src/slic3r/GUI/PresetHints.cpp:188 +msgid "flow rate is maximized" +msgstr "przepÅ‚yw osiÄ…ga wartoÅ›ci szczytowe" + +#. TRN Description for "WHITE BULLET" +#: src/slic3r/GUI/Tab.cpp:4266 +msgid "" +"for the left button: indicates a non-system (or non-default) preset,\n" +"for the right button: indicates that the settings hasn't been modified." +msgstr "" +"dla lewego przycisku: wskazuje na niesystemowy (lub inny niż domyÅ›lny) " +"zestaw ustawieÅ„,\n" +"dla prawego przycisku: wskazuje, że ustawienia nie zostaÅ‚y zmodyfikowane." + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "from" +msgstr "z" + +#: src/slic3r/GUI/Tab.cpp:1412 +msgid "full profile name" +msgstr "peÅ‚na nazwa profilu" + +#: src/libslic3r/PrintConfig.cpp:1057 +msgid "g" +msgstr "g" + +#: src/libslic3r/PrintConfig.cpp:1006 +msgid "g/cm³" +msgstr "g/cm³" + +#: src/libslic3r/PrintConfig.cpp:3288 +msgid "g/ml" +msgstr "g/ml" + +#: src/slic3r/GUI/Plater.cpp:4107 +msgid "generated warnings" +msgstr "wygenerowane ostrzeżenia" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +msgid "in" +msgstr "cale" + +#. TRN Description for "UNLOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4259 +msgid "" +"indicates that some settings were changed and are not equal to the system " +"(or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group " +"to the system (or default) values." +msgstr "" +"oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie odpowiadajÄ… " +"wartoÅ›ciom systemowym (lub domyÅ›lnym) w obecnej grupie opcji.\n" +"Kliknij ikonÄ™ OTWARTEJ KÅÓDKI, aby zresetować wszystkie ustawienia obecnej " +"grupy ustawieÅ„ do wartoÅ›ci systemowych (lub domyÅ›lnych)." + +#. TRN Description for "LOCKED LOCK" +#: src/slic3r/GUI/Tab.cpp:4255 +msgid "" +"indicates that the settings are the same as the system (or default) values " +"for the current option group" +msgstr "" +"wskazuje na to, że ustawienia sÄ… takie same jak systemowe (lub domyÅ›lne) " +"wartoÅ›ci dla danej grupy opcji" + +#. TRN Description for "BACK ARROW" +#: src/slic3r/GUI/Tab.cpp:4271 +msgid "" +"indicates that the settings were changed and are not equal to the last saved " +"preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group " +"to the last saved preset." +msgstr "" +"oznacza, że ustawienia zostaÅ‚y zmodyfikowane i nie odpowiadajÄ… tym z " +"ostatnio zapisanego zestawu ustawieÅ„ dla obecnej grupy opcji.\n" +"Kliknij ikonÄ™ STRZAÅKI W TYÅ, aby zresetować wszystkie ustawienia w obecnej " +"grupie opcji do tych z ostatnio zapisanego zestawu ustawieÅ„." + +#: src/slic3r/GUI/PresetHints.cpp:174 +msgid "infill" +msgstr "wypeÅ‚nienia" + +#: src/libslic3r/miniz_extension.cpp:143 +msgid "internal error" +msgstr "błąd wewnÄ™trzny" + +#: src/libslic3r/miniz_extension.cpp:139 +msgid "invalid filename" +msgstr "nieprawidÅ‚owa nazwa" + +#: src/libslic3r/miniz_extension.cpp:107 +msgid "invalid header or archive is corrupted" +msgstr "niewÅ‚aÅ›ciwy nagłówek lub uszkodzone archiwum" + +#: src/libslic3r/miniz_extension.cpp:137 +msgid "invalid parameter" +msgstr "nieprawidÅ‚owy parametr" + +#: src/slic3r/GUI/GUI_App.cpp:266 +msgid "is based on Slic3r by Alessandro Ranellucci and the RepRap community." +msgstr "" +"bazuje na projekcie Slic3r autorstwa Alessandro Ranellucciego i spoÅ‚ecznoÅ›ci " +"RepRap." + +#. TRN "Slic3r _is licensed under the_ License" +#: src/slic3r/GUI/AboutDialog.cpp:269 src/slic3r/GUI/GUI_App.cpp:268 +msgid "is licensed under the" +msgstr "ma licencjÄ™ na warunkach" + +#: src/libslic3r/PrintConfig.cpp:3281 +msgid "kg" +msgstr "kg" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:60 +#: src/libslic3r/PrintConfig.cpp:639 src/libslic3r/PrintConfig.cpp:1388 +#: src/libslic3r/PrintConfig.cpp:2085 src/libslic3r/PrintConfig.cpp:2260 +#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2589 +#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2656 +msgid "layers" +msgstr "warstwy" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:309 +msgid "loaded" +msgstr "zaÅ‚adowano" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 +msgid "max PrusaSlicer version" +msgstr "max wersja PrusaSlicer" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:76 +msgid "min PrusaSlicer version" +msgstr "min wersja PrusaSlicer" + +#: src/libslic3r/PrintConfig.cpp:3274 +msgid "ml" +msgstr "ml" + +#: src/slic3r/GUI/BedShapeDialog.cpp:64 src/slic3r/GUI/ConfigWizard.cpp:262 +#: src/slic3r/GUI/ConfigWizard.cpp:1476 src/slic3r/GUI/ConfigWizard.cpp:1490 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:100 +#: src/slic3r/GUI/GCodeViewer.cpp:3176 src/slic3r/GUI/GCodeViewer.cpp:3182 +#: src/slic3r/GUI/GCodeViewer.cpp:3190 src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:145 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:409 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:477 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:478 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:134 +#: src/slic3r/GUI/WipeTowerDialog.cpp:116 src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:267 src/libslic3r/PrintConfig.cpp:274 +#: src/libslic3r/PrintConfig.cpp:437 src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:606 src/libslic3r/PrintConfig.cpp:656 +#: src/libslic3r/PrintConfig.cpp:787 src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:997 +#: src/libslic3r/PrintConfig.cpp:1212 src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1289 src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1763 src/libslic3r/PrintConfig.cpp:1824 +#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1933 +#: src/libslic3r/PrintConfig.cpp:2047 src/libslic3r/PrintConfig.cpp:2056 +#: src/libslic3r/PrintConfig.cpp:2075 src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2108 src/libslic3r/PrintConfig.cpp:2116 +#: src/libslic3r/PrintConfig.cpp:2157 src/libslic3r/PrintConfig.cpp:2165 +#: src/libslic3r/PrintConfig.cpp:2175 src/libslic3r/PrintConfig.cpp:2183 +#: src/libslic3r/PrintConfig.cpp:2191 src/libslic3r/PrintConfig.cpp:2253 +#: src/libslic3r/PrintConfig.cpp:2483 src/libslic3r/PrintConfig.cpp:2553 +#: src/libslic3r/PrintConfig.cpp:2570 src/libslic3r/PrintConfig.cpp:2671 +#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2730 +#: src/libslic3r/PrintConfig.cpp:2882 src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:2977 src/libslic3r/PrintConfig.cpp:2984 +#: src/libslic3r/PrintConfig.cpp:2998 src/libslic3r/PrintConfig.cpp:3022 +#: src/libslic3r/PrintConfig.cpp:3032 src/libslic3r/PrintConfig.cpp:3042 +#: src/libslic3r/PrintConfig.cpp:3226 src/libslic3r/PrintConfig.cpp:3267 +#: src/libslic3r/PrintConfig.cpp:3427 src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3445 src/libslic3r/PrintConfig.cpp:3455 +#: src/libslic3r/PrintConfig.cpp:3520 src/libslic3r/PrintConfig.cpp:3530 +#: src/libslic3r/PrintConfig.cpp:3542 src/libslic3r/PrintConfig.cpp:3562 +#: src/libslic3r/PrintConfig.cpp:3572 src/libslic3r/PrintConfig.cpp:3582 +#: src/libslic3r/PrintConfig.cpp:3600 src/libslic3r/PrintConfig.cpp:3615 +#: src/libslic3r/PrintConfig.cpp:3629 src/libslic3r/PrintConfig.cpp:3640 +#: src/libslic3r/PrintConfig.cpp:3653 src/libslic3r/PrintConfig.cpp:3698 +#: src/libslic3r/PrintConfig.cpp:3708 src/libslic3r/PrintConfig.cpp:3717 +#: src/libslic3r/PrintConfig.cpp:3727 src/libslic3r/PrintConfig.cpp:3743 +#: src/libslic3r/PrintConfig.cpp:3767 +msgid "mm" +msgstr "mm" + +#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2148 +msgid "mm (zero to disable)" +msgstr "mm (zero, aby wyłączyć)" + +#: src/libslic3r/PrintConfig.cpp:732 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:1200 src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1487 +#: src/libslic3r/PrintConfig.cpp:1961 src/libslic3r/PrintConfig.cpp:2347 +#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2610 +#: src/libslic3r/PrintConfig.cpp:2845 +msgid "mm or %" +msgstr "mm lub %" + +#: src/libslic3r/PrintConfig.cpp:385 +msgid "mm or % (zero to disable)" +msgstr "mm lub % (zero, aby wyłączyć)" + +#: src/libslic3r/PrintConfig.cpp:486 src/libslic3r/PrintConfig.cpp:894 +#: src/libslic3r/PrintConfig.cpp:902 src/libslic3r/PrintConfig.cpp:911 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:946 +#: src/libslic3r/PrintConfig.cpp:965 src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1496 src/libslic3r/PrintConfig.cpp:1578 +#: src/libslic3r/PrintConfig.cpp:1654 src/libslic3r/PrintConfig.cpp:1688 +#: src/libslic3r/PrintConfig.cpp:1700 src/libslic3r/PrintConfig.cpp:1710 +#: src/libslic3r/PrintConfig.cpp:1773 src/libslic3r/PrintConfig.cpp:1832 +#: src/libslic3r/PrintConfig.cpp:1972 src/libslic3r/PrintConfig.cpp:2199 +#: src/libslic3r/PrintConfig.cpp:2208 src/libslic3r/PrintConfig.cpp:2739 +#: src/libslic3r/PrintConfig.cpp:2889 src/libslic3r/PrintConfig.cpp:2899 +msgid "mm/s" +msgstr "mm/s" + +#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:1222 +#: src/libslic3r/PrintConfig.cpp:1233 src/libslic3r/PrintConfig.cpp:2306 +#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2690 +#: src/libslic3r/PrintConfig.cpp:2859 +msgid "mm/s or %" +msgstr "mm/s lub %" + +#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:616 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1178 +#: src/libslic3r/PrintConfig.cpp:1378 src/libslic3r/PrintConfig.cpp:1671 +#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/PrintConfig.cpp:1733 +#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1941 +msgid "mm/s²" +msgstr "mm/s²" + +#: src/libslic3r/PrintConfig.cpp:2316 +msgid "mm²" +msgstr "mm²" + +#: src/libslic3r/PrintConfig.cpp:957 +msgid "mm³" +msgstr "mm³" + +#: src/slic3r/GUI/RammingChart.cpp:95 src/libslic3r/PrintConfig.cpp:886 +#: src/libslic3r/PrintConfig.cpp:1782 +msgid "mm³/s" +msgstr "mm³/s" + +#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1805 +msgid "mm³/s²" +msgstr "mm³/s²" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "model" +msgstr "model" + +#: src/slic3r/GUI/GUI_App.cpp:2159 +msgid "modified" +msgstr "zmodyfikowano" + +#: src/libslic3r/PrintConfig.cpp:3295 +msgid "money/bottle" +msgstr "pieniÄ™dzy/butelkÄ™" + +#: src/libslic3r/PrintConfig.cpp:1047 +msgid "money/kg" +msgstr "pieniÄ™dzy/kg" + +#: src/slic3r/GUI/Plater.cpp:1428 +msgid "normal mode" +msgstr "tryb normalny" + +#: src/libslic3r/miniz_extension.cpp:105 +msgid "not a ZIP archive" +msgstr "nie jest archiwum ZIP" + +#: src/slic3r/GUI/ConfigWizard.cpp:262 +msgid "nozzle" +msgstr "dysza" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "object" +msgid_plural "objects" +msgstr[0] "obiekt" +msgstr[1] "obiekty" +msgstr[2] "obiekty" +msgstr[3] "obiekty" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "objects" +msgstr "modele" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3648 +msgid "of a current Object" +msgstr "obecnego Modelu" + +#: src/slic3r/GUI/DoubleSlider.cpp:1431 +msgid "or press \"+\" key" +msgstr "lub naciÅ›nij klawisz \"+\"" + +#: src/slic3r/GUI/Field.cpp:193 +msgid "parameter name" +msgstr "nazwa parametru" + +#: src/slic3r/GUI/PresetHints.cpp:171 +msgid "perimeters" +msgstr "obrysy" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +msgid "print" +msgstr "druk" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +msgid "printer" +msgstr "drukarka" + +#: src/slic3r/GUI/Tab.cpp:1375 +msgid "printer model" +msgstr "model drukarki" + +#: src/slic3r/GUI/Tab.cpp:3685 +msgid "remove" +msgstr "usuÅ„" + +#: src/slic3r/Utils/PresetUpdater.cpp:815 +#, c-format, boost-format +msgid "requires max. %s" +msgstr "wymaga max %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:812 +#, c-format, boost-format +msgid "requires min. %s" +msgstr "wymaga min. %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:808 +#, c-format, boost-format +msgid "requires min. %s and max. %s" +msgstr "wymaga min. %s i max. %s" + +#: src/slic3r/GUI/RammingChart.cpp:90 src/slic3r/GUI/WipeTowerDialog.cpp:114 +#: src/libslic3r/PrintConfig.cpp:929 src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:3160 +#: src/libslic3r/PrintConfig.cpp:3169 src/libslic3r/PrintConfig.cpp:3310 +#: src/libslic3r/PrintConfig.cpp:3318 src/libslic3r/PrintConfig.cpp:3326 +#: src/libslic3r/PrintConfig.cpp:3333 src/libslic3r/PrintConfig.cpp:3341 +#: src/libslic3r/PrintConfig.cpp:3349 +msgid "s" +msgstr "s" + +#: src/slic3r/GUI/PresetHints.cpp:176 +msgid "solid infill" +msgstr "zwarte wypeÅ‚nienie" + +#: src/slic3r/GUI/Plater.cpp:1435 +msgid "stealth mode" +msgstr "tryb stealth" + +#: src/slic3r/GUI/PresetHints.cpp:181 +msgid "support" +msgstr "podpora" + +#: src/slic3r/GUI/PresetHints.cpp:183 +msgid "support interface" +msgstr "warstwa łączÄ…ca podpory z modelem" + +#: src/slic3r/GUI/Plater.cpp:1317 +msgid "supports and pad" +msgstr "podpory i podkÅ‚adka" + +#: src/slic3r/GUI/Tab.cpp:1413 +msgid "symbolic profile name" +msgstr "skrócona nazwa profilu" + +#: src/slic3r/GUI/Plater.cpp:142 src/slic3r/GUI/SavePresetDialog.cpp:102 +msgid "the following characters are not allowed:" +msgstr "nastÄ™pujÄ…ce znaki nie sÄ… dozwolone:" + +#: src/slic3r/GUI/SavePresetDialog.cpp:110 +msgid "the following suffix is not allowed:" +msgstr "nastÄ™pujÄ…cy sufiks nie jest dozwolony:" + +#: src/slic3r/GUI/GCodeViewer.cpp:3190 +msgid "to" +msgstr "do" + +#: src/libslic3r/miniz_extension.cpp:93 +msgid "too many files" +msgstr "zbyt wiele plików" + +#: src/slic3r/GUI/PresetHints.cpp:178 +msgid "top solid infill" +msgstr "zwarte wypeÅ‚nienie na szczycie" + +#: src/libslic3r/miniz_extension.cpp:91 +msgid "undefined error" +msgstr "nieznany błąd" + +#: src/libslic3r/miniz_extension.cpp:115 +msgid "unexpected decompressed size" +msgstr "nieoczekiwany rozmiar po rozpakowaniu" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:308 +msgid "unloaded" +msgstr "rozÅ‚adowano" + +#: src/libslic3r/miniz_extension.cpp:119 +msgid "unsupported central directory size" +msgstr "nieobsÅ‚ugiwany rozmiar katalogu centralnego" + +#: src/libslic3r/miniz_extension.cpp:99 +msgid "unsupported encryption" +msgstr "nieobsÅ‚ugiwane szyfrowanie" + +#: src/libslic3r/miniz_extension.cpp:101 +msgid "unsupported feature" +msgstr "nieobsÅ‚ugiwana funkcja" + +#: src/libslic3r/miniz_extension.cpp:97 +msgid "unsupported method" +msgstr "nieobsÅ‚ugiwana metoda" + +#: src/libslic3r/miniz_extension.cpp:109 +msgid "unsupported multidisk archive" +msgstr "nieobsÅ‚ugiwane archiwum wielodyskowe" + +#: src/slic3r/GUI/GCodeViewer.cpp:3176 +msgid "up to" +msgstr "do" + +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "used" +msgstr "używany" + +#: src/libslic3r/miniz_extension.cpp:149 +msgid "validation failed" +msgstr "niepowodzenie weryfikacji" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:81 +msgid "variants" +msgstr "warianty" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 src/slic3r/GUI/Tab.cpp:1370 +msgid "vendor" +msgstr "dostawca" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +msgid "version" +msgstr "wersja" + +#: src/slic3r/GUI/PresetHints.cpp:192 +msgid "when printing" +msgstr "podczas druku" + +#: src/slic3r/GUI/Plater.cpp:1359 src/slic3r/GUI/Plater.cpp:1412 +msgid "wipe tower" +msgstr "wieża czyszczÄ…ca" + +#: src/slic3r/GUI/PresetHints.cpp:193 +msgid "with a volumetric rate" +msgstr "ze współczynnikiem objÄ™toÅ›ciowym" + +#: src/libslic3r/miniz_extension.cpp:151 +msgid "write calledback failed" +msgstr "błąd write calledback" + #: src/libslic3r/PrintConfig.cpp:456 src/libslic3r/PrintConfig.cpp:1075 #: src/libslic3r/PrintConfig.cpp:2232 src/libslic3r/PrintConfig.cpp:2242 #: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2774 @@ -16981,6 +16977,10 @@ msgstr "" msgid "Adding book %s" msgstr "Dodawanie książki %s" +#: ../src/common/preferencescmn.cpp:43 +msgid "Advanced" +msgstr "Zaawansowane" + #: ../src/richtext/richtextliststylepage.cpp:435 msgid "After a paragraph:" msgstr "Za paragrafem:" @@ -17252,6 +17252,10 @@ msgstr "Obramowanie" msgid "Borders" msgstr "Ramki" +#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144 +msgid "Bottom" +msgstr "Dolny" + #: ../src/generic/prntdlgg.cpp:893 msgid "Bottom margin (mm):" msgstr "Dolny margines (mm):" @@ -18065,6 +18069,10 @@ msgstr "Skopiowano do schowka:\"%s\"" msgid "Copies:" msgstr "Kopie:" +#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18 +msgid "Copy" +msgstr "Kopiuj" + #: ../src/common/stockitem.cpp:258 msgid "Copy selection" msgstr "Kopiuj wybór" diff --git a/resources/localization/pt_BR/PrusaSlicer_pt_BR.po b/resources/localization/pt_BR/PrusaSlicer_pt_BR.po index 609b788be2..b793b59e5e 100644 --- a/resources/localization/pt_BR/PrusaSlicer_pt_BR.po +++ b/resources/localization/pt_BR/PrusaSlicer_pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-01-06 10:53+0100\n" "Last-Translator: Oleksandra Iushchenko \n" "Language-Team: \n" @@ -596,7 +596,7 @@ msgstr "Ativar" msgid "PrusaSlicer version" msgstr "Versão do PrusaSlicer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "impressão" @@ -604,17 +604,17 @@ msgstr "impressão" msgid "filaments" msgstr "filamentos" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "Impressão de SLA" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "Material de SLA" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "impressora" @@ -673,7 +673,7 @@ msgstr "Todos padrão" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Todos" @@ -761,7 +761,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "filamento" @@ -852,7 +852,7 @@ msgstr "" "atualização seja aplicada." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Recarregar a partir do disco" @@ -1155,7 +1155,7 @@ msgstr "&Final" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "Cancelar" @@ -1219,7 +1219,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1701,8 +1701,8 @@ msgid "parameter name" msgstr "nome do parâmetro" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/D" @@ -1910,7 +1910,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Adicionar" @@ -2112,7 +2112,7 @@ msgid "Wipe" msgstr "Limpar" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Opções de saída" @@ -2381,7 +2381,7 @@ msgid "Add..." msgstr "Adicionar..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Deletar todos" @@ -3286,7 +3286,7 @@ msgstr "Erro crítico" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3296,7 +3296,7 @@ msgstr "" "Tente excluir manualmente o arquivo para recuperar do erro. Seus perfis de " "usuário não serão afetados." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3304,12 +3304,12 @@ msgstr "" "Erro de análise PrusaGCodeViewer, ele provavelmente está corrompido. Tente " "excluir manualmente o arquivo para recuperar do erro." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3321,7 +3321,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3330,19 +3330,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3352,7 +3352,7 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3361,46 +3361,46 @@ msgstr "" "%s\n" "Você tem certeza que deseja continuar?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Lembrar minha escolha" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "Carregando configuração" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Ver página de lançamentos." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "Preparando abas de configuração" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3413,24 +3413,24 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "Você tem a seguinte predefinição com opções salvas para o \"Print Host upload" "\"" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3441,7 +3441,7 @@ msgstr "" "Agora essa informação vai ser exposta em configurações das impressoras " "físicas." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3452,169 +3452,169 @@ msgstr "" "Nota: Esse nome pode ser alterado depois a partir das configurações de " "impressoras físicas" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "Informação" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Recriando" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Carregando presets" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Carregamento de um modelo de vista" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Escolha um arquivo (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Escolha um ou mais arquivos (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Escolha um arquivo (GCODE/.GCO/.G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Alteração de um idioma do aplicativo" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Selecione o idioma" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Idioma" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "modificado" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "Executar %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&Captura das config" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Inspecionar / ativar capturas de config" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Capturar &config" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Capturar uma config" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Verificar atualizações nas aplicações" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&Preferências" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Preferências de aplicação" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "Simples" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "Modo simples de visualização" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "Avançado" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "Modo avançado de visualização" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "Especialista" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Modo especialista de visualização" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Modo" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s Modo de visualização" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "&Linguagem" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Atualizar o firmware para uma impressora baseada em Arduino" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Nome da captura" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "Falha ao ativar a captura de configuração." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Seleção de linguagem" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3622,95 +3622,95 @@ msgstr "" "Alterar a linguagem fará com que o aplicativo reinicie.\n" "Você irá perder conteúdo na bandeja." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Você quer prosseguir?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&Configuração" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "Os uploads ainda estão em andamento" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "Pará-los e continuar assim mesmo?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Uploads em andamento" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" "É impossível imprimir objetos com múltiplas partes com a tecnologia SLA." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "Verifique a lista de objetos antes de alterar a predefinição." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Selecione um arquivo gcode:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "Suprimir para abrir o hiperlink no navegador" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: Não me pergunte de novo" @@ -3816,7 +3816,7 @@ msgstr "Saia e aba" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3826,7 +3826,7 @@ msgid "Advanced" msgstr "Avançado" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3840,8 +3840,8 @@ msgid "Supports" msgstr "Suportes" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3851,8 +3851,8 @@ msgstr "Suportes" msgid "Pad" msgstr "Bloco" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3955,7 +3955,7 @@ msgstr "Exportar como STL" msgid "Reload the selected volumes from disk" msgstr "Recarregue os volumes selecionados do disco" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3981,19 +3981,19 @@ msgstr "Escalar para volume de impressão" msgid "Scale the selected object to fit the print volume" msgstr "Escale o objeto selecionado para se adequar ao volume de impressão" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Converter de unidades imperiais" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Reverter conversão de unidades imperiais" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4258,7 +4258,7 @@ msgstr "" msgid "Loading" msgstr "Carregando" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "Carregar arquivo de config" @@ -4699,7 +4699,7 @@ msgstr "Remover parâmetro" msgid "Delete Option %s" msgstr "Excluir opção %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "Alterar opção %s" @@ -4818,18 +4818,18 @@ msgstr "Ferramenta de marcação" msgid "Legend/Estimated printing time" msgstr "Legenda/Tempo estimado de impressão" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "Mais" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4991,12 +4991,12 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" "Você não pode carregar o projeto SLA com um objeto de várias partes na cama" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Atenção!" @@ -5037,11 +5037,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Carregar config. de um. ini/AMF/3mf/Gcode e mesclar" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "Exportar G-code" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "Enviar G-code" @@ -5436,7 +5436,7 @@ msgstr "Mostrar/Esconder Legenda e Tempo estimado de impressão" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "Visualização" @@ -5554,29 +5554,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Config. de impressão" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Config. de material" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Config. de filamento" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Config. da impressora" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -6089,7 +6089,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6198,9 +6198,9 @@ msgstr "G-code" msgid "Save zip file as:" msgstr "Salvar arquivo compactado(zip) como:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Fatiamento" @@ -6466,7 +6466,7 @@ msgstr "ERRO:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "AVISO:" @@ -6492,8 +6492,8 @@ msgstr "Instâncias" msgid "Instance %d" msgstr "Instância %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Camadas" @@ -6764,12 +6764,12 @@ msgstr "Abaixo do objeto" msgid "Around object" msgstr "Em torno do objeto" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Enviar para a impressora" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Fatiar agora" @@ -6878,7 +6878,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "Ejetar o dispositivo %s(%s) falhou." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Novo projeto" @@ -6886,7 +6886,7 @@ msgstr "Novo projeto" msgid "Expand sidebar" msgstr "Expandir barra lateral" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6896,12 +6896,12 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6912,11 +6912,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6929,15 +6929,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6950,18 +6950,18 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Objeto de várias partes detectado" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" @@ -6969,11 +6969,11 @@ msgstr "" "Este arquivo não pode ser carregado em um modo simples. Deseja mudar para um " "modo avançado?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "Dados avançados detectados" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6982,7 +6982,7 @@ msgstr "" "Você não pode adicionar o objeto (s) %s por causa de um ou alguns deles é " "(são) de várias partes" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -6992,7 +6992,7 @@ msgstr "" "Em vez de considerá-los como múltiplos objetos, devo considerar\n" "esses arquivos para representar um único objeto com várias partes?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7000,139 +7000,139 @@ msgstr "" "Seu objeto parece ser muito grande, por isso foi automaticamente " "dimensionado para baixo para caber sua mesa de impressão." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Objeto muito grande?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "Exportar arquivo STL:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "Exportar arquivo AMF:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Salvar arquivo como:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "Exportar arquivo OBJ:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Excluir objeto" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Redefinir projeto" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Dividir em objetos" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Dados inválidos" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Outro trabalho de exportação está em execução no momento." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "Selecione o arquivo STL para recarregar" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "O arquivo selecionado" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Recarregar a partir do disco:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "Não é possível recarregar:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "Erro durante a recarga" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Recarregar tudo do disco" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "Existem avisos ativos sobre modelos fatiados:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "avisos gerados" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "vista do editor 3D" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7140,171 +7140,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Carregar projeto" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Importar objeto" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Importar objetos" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "não contém um gcode válido." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "Erro durante carregamento do arquivo .gcode" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - Soltar arquivo de projeto" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Abrir como projeto" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Modelo somente geometria" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Importar somente config" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Selecione uma ação para aplicar ao arquivo" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "Ação" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "Não mostrar novamente" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "Você pode abrir apenas um arquivo .gcode por vez." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "Arraste e solte o arquivo G-code" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Carregar arquivo" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Carregar arquivos" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "Todos os objetos serão removidos, continuar?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Excluir objetos selecionados" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Aumentar instâncias" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Diminuir instâncias" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Definir números de cópias:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "Cópias do objeto selecionado" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Definir números de cópias para %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Cortado por plano" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "Salve o arquivo G-code como:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "Exportar" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Colar da área de transferência" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Geral" @@ -7451,7 +7451,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7465,7 +7465,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7476,7 +7476,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -8013,11 +8013,11 @@ msgstr "Enviar G-code para o host da impressora" msgid "Upload to Printer Host with the following filename:" msgstr "Carregue para o host da impressora com o seguinte nome de arquivo:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Use barras (/) como um separador de diretório, se necessário." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Grupo" @@ -8026,18 +8026,18 @@ msgstr "Grupo" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8488,7 +8488,7 @@ msgstr "nome customizado da config" msgid "symbolic profile name" msgstr "nome customizado da config" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Camadas e perímetros" @@ -8572,11 +8572,11 @@ msgstr "Cobrir" msgid "Flow" msgstr "Fluxo" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Outro" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Opções de saída" @@ -8588,11 +8588,11 @@ msgstr "Impressão sequencial" msgid "Extruder clearance" msgstr "Folga da extrusora" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Arquivo de saída" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Scripts de pós-processamento" @@ -8600,19 +8600,20 @@ msgstr "Scripts de pós-processamento" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Notas" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "Dependências" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "Dependências de perfil" @@ -8689,7 +8690,7 @@ msgid "Ramming settings" msgstr "Config. de Ramming" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "G-code customizado" @@ -8736,8 +8737,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Tamanho e coordenadas" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "Capacidades" @@ -8806,11 +8807,11 @@ msgstr "Inclinar" msgid "Tilt time" msgstr "Tempo de inclinação" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Correções" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "Exposição" @@ -8974,42 +8975,46 @@ msgstr "Tem certeza de que deseja %1% da predefinição selecionada?" msgid "%1% Preset" msgstr "%1% Predefinição" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Definir" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Achar" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Palavra inteira" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "Os limites da máquina serão emitidos para o G-code e usados ​​o para estimar o " "tempo de impressão." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9020,7 +9025,7 @@ msgstr "" "preciso, pois a impressora pode aplicar um conjunto diferente de limites da " "máquina." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9028,12 +9033,12 @@ msgstr "" "Os limites da máquina não são definidos, portanto, a estimativa do tempo de " "impressão pode não ser precisa." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "CADEADO FECHADO" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9041,12 +9046,12 @@ msgstr "" "indica que as config. são as mesmas que os valores do sistema (ou padrão) " "para o grupo de opções atual" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "CADEADO ABERTO" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9058,12 +9063,12 @@ msgstr "" "Clique no ícone DESBLOQUEAR para redefinir todas as config. do grupo de " "opções atual para os valores do sistema (ou padrão)." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "PONTO BRANCO" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9072,12 +9077,12 @@ msgstr "" "padrão),\n" "para o botão direito: indica que as config. não foram modificadas." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "REDEFINIR" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9089,7 +9094,7 @@ msgstr "" "Clique no ícone REDEFINIR para redefinir todas as config. do grupo de opções " "atual para a última predefinição salva." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9097,7 +9102,7 @@ msgstr "" "O ícone CADEADO FECHADO indica que as config. são as mesmas que os valores " "do sistema (ou padrão) para o grupo de opções atual" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9109,13 +9114,13 @@ msgstr "" "Clique para redefinir todas as config. para o grupo de opções atual para os " "valores do sistema (ou padrão)." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" "O ícone PONTO BRANCO indica uma predefinição que não é do sistema (ou não " "predefinida)." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9123,7 +9128,7 @@ msgstr "" "O ícone PONTO BRANCO indica que as config. são as mesmas da última " "predefinição salva para o grupo de opções atual." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9135,7 +9140,7 @@ msgstr "" "Clique para redefinir todas as config. do grupo de opções atual para a " "última predefinição salva." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -9143,7 +9148,7 @@ msgstr "" "O ícone CADEADO FECHADO indica que o valor é o mesmo que o valor do sistema " "(ou padrão)." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9153,7 +9158,7 @@ msgstr "" "valor do sistema (ou padrão).\n" "Clique para redefinir o valor atual para o valor do sistema (ou padrão)." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9161,7 +9166,7 @@ msgstr "" "O ícone PONTO BRANCO indica que o valor é o mesmo da última predefinição " "guardada." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9171,31 +9176,31 @@ msgstr "" "predefinição salva.\n" "Clique para redefinir o valor atual para a última predefinição salva." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Cabeça de suporte" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Pilar de suporte" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "Conexão das varas de suporte e junções" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Geração Automática" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9204,74 +9209,74 @@ msgstr "" "\"%1%\" está desabilitado porque \"%2%\" está ativado na categoria \"%3%\".\n" "Para habilitar \"%1%\", desligue \"%2%\"" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Elevação do objeto" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Pad em torno do objeto" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Indef" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "Alterando Predefinições: Alterações não salvas" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Valor Antigo" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Valor Novo" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "Transferir" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Descartar" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Salvar" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9279,11 +9284,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "PrusaSlicer se lembrará de sua ação." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9292,58 +9297,59 @@ msgstr "" "Visite \"Preferências\" e marque \"%1%\"\n" "para ser questionado sobre alterações não salvas novamente." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "Alguns campos são muito longos para caber. Clique com o botão direito do " "mouse para revelar o texto completo." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "Todas as alterações nas configurações serão descartadas." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "Remover o objeto selecionado." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" "Transfira as opções selecionadas para as predefinições recém-selecionadas." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "Salve as opções selecionadas para predefinir \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" "Transfira as opções selecionadas para a predefinição recém-selecionada \"%1%" "\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "\"%1%\"Tem as seguintes alterações não salvas:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9352,7 +9358,7 @@ msgstr "" "A predefinição \"%1%\" não é compatível com o novo perfil de impressora e " "possui as seguintes alterações não salvas:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9361,50 +9367,50 @@ msgstr "" "A predefinição \"%1%\" não é compatível com o novo perfil de impressão e " "possui as seguintes alterações não salvas:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "Contagem de extrusoras" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -10239,26 +10245,26 @@ msgstr "falha na validação" msgid "write calledback failed" msgstr "write calledback falhou" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Todos os objetos estão fora do volume de impressão." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "As config. fornecidas causarão uma impressão vazia." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "Alguns objetos são muito próximos; sua extrusora irá colidir com eles." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Alguns objetos são muito altos e não podem ser impressos sem colisões de " "extrusoras." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10268,14 +10274,14 @@ msgstr "" "Remova todos, exceto o último objeto, ou habilite o modo sequencial por " "\"complete_objects\"." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" "A opção vaso espiral só pode ser usada ao imprimir objetos de material único." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10283,7 +10289,7 @@ msgstr "" "A torre de limpeza só é suportada se todas as extrusoras tiverem o mesmo " "diâmetro da ponteira e usarem filamentos do mesmo diâmetro." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10291,7 +10297,7 @@ msgstr "" "A Torre de Limpeza é atualmente suportada apenas para os firmwares Marlin, " "RepRap/Sprinter, RepRapFirmware e Repetier G-code." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10299,19 +10305,19 @@ msgstr "" "A torre da limpeza é suportada atualmente somente com o endereçamento " "relativo da extrusora (use_relative_e_distances = 1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "A prevenção de escorrimento não é suportada atualmente com a torre da " "limpeza permitida." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "Atualmente, a Torre limpa não suporta E volumétrica (use_volumetric_e=0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10319,7 +10325,7 @@ msgstr "" "A torre de limpeza só é suportada para vários objetos se eles tiverem " "alturas de camada iguais." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10327,7 +10333,7 @@ msgstr "" "A torre de limpeza só é suportada para vários objetos se eles tiverem " "alturas de camada iguais" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10335,7 +10341,7 @@ msgstr "" "A torre de limpeza só é suportada para vários objetos se elas forem " "impressas em um número igual de camadas de estrado" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10343,7 +10349,7 @@ msgstr "" "A torre de limpeza só é suportado para vários objetos se eles são impressos " "com a mesma distância de contato do suporte" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10351,7 +10357,7 @@ msgstr "" "A torre de limpeza só é suportada para vários objetos se eles são fatiados " "igualmente." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10359,26 +10365,26 @@ msgstr "" "A torre de limpeza só é suportada se todos os objetos tiverem a mesma altura " "de camada variável" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Um ou mais objetos foram atribuídos a uma extrusora que a impressora não tem." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" "%1% = %2% mm é muito baixo para ser impresso a uma altura de camada %3% mm" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" "Excesso %1%=%2% milímetro a ser imprimível com um diâmetro da ponteira %3% " "milímetro" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10390,7 +10396,7 @@ msgstr "" "(support_material_extruder = = 0 ou support_material_interface_extruder = = " "0), todos as ponteiras têm que ser do mesmo diâmetro." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10398,7 +10404,7 @@ msgstr "" "Para que a torre de limpeza funcione com os suportes solúveis, as camadas de " "suporte precisam ser sincronizadas com as camadas de objeto." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10410,28 +10416,47 @@ msgstr "" "(ambos support_material_extruder e support_material_interface_extruder " "precisam ser definidos como 0)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "" "A primeira altura da camada não pode ser maior do que o diâmetro da ponteira" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "A altura da camada não pode ser maior do que o diâmetro da ponteira" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Camadas de preenchimento" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "Exportando o G-code" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "Gerando G-code" diff --git a/resources/localization/ru/PrusaSlicer_ru.po b/resources/localization/ru/PrusaSlicer_ru.po index 79a0c384a2..66d2d04148 100644 --- a/resources/localization/ru/PrusaSlicer_ru.po +++ b/resources/localization/ru/PrusaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-12-15 15:35+0700\n" "Last-Translator: Andylg andylg@yandex.ru\n" "Language-Team: \n" @@ -611,7 +611,7 @@ msgstr "Ðктивный" msgid "PrusaSlicer version" msgstr "ВерÑÐ¸Ñ PrusaSlicer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "печать" @@ -619,17 +619,17 @@ msgstr "печать" msgid "filaments" msgstr "пруток" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "Профиль SLA печати" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "Профиль SLA материала" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "принтер" @@ -688,7 +688,7 @@ msgstr "Стандартные" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Ð’Ñе" @@ -778,7 +778,7 @@ msgstr "SLA материалы (Ñ„Ð¾Ñ‚Ð¾Ð¿Ð¾Ð»Ð¸Ð¼ÐµÑ€Ð½Ð°Ñ Ñмола)" msgid "All installed printers are compatible with the selected %1%." msgstr "Ð’Ñе уÑтановленные принтеры ÑовмеÑтимы Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ñ‹Ð¼ прутком %1%." -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "пруток" @@ -873,7 +873,7 @@ msgstr "" "(Ñнапшот)." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Перезагрузить Ñ Ð´Ð¸Ñка" @@ -1183,7 +1183,7 @@ msgstr "&Завершить" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "Отмена" @@ -1258,7 +1258,7 @@ msgstr "" "была уÑпешно Ñоздана на рабочем Ñтоле." #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "Ð˜Ð½Ñ‚ÐµÐ³Ñ€Ð°Ñ†Ð¸Ñ Ñ Ñ€Ð°Ð±Ð¾Ñ‡Ð¸Ð¼ Ñтолом" @@ -1748,8 +1748,8 @@ msgid "parameter name" msgstr "Ð¸Ð¼Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð°" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "Ð/Д" @@ -1956,7 +1956,7 @@ msgstr "Добавить на Ñтол" msgid "Add selected shape(s) to the bed" msgstr "Добавьте выбранную фигуру(-Ñ‹) на Ñтол" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Добавить в библиотеку" @@ -2162,7 +2162,7 @@ msgid "Wipe" msgstr "ОчиÑтка" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Опции" @@ -2433,7 +2433,7 @@ msgid "Add..." msgstr "Добавить..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Удалить вÑÑ‘" @@ -3358,7 +3358,7 @@ msgstr "КритичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°" msgid "Internal error: %1%" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %1%" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3369,7 +3369,7 @@ msgstr "" "Попробуйте вручную удалить файл Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñле ошибки. " "ПользовательÑкие профили не будут затронуты." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3377,12 +3377,12 @@ msgstr "" "Ошибка обработки конфигурационного файла PrusaGCodeViewer. ВероÑтно, он " "повреждён. Попробуйте вручную удалить файл Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñле ошибки." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "Ð’Ñ‹ запуÑтили %1% верÑии %2%." -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3400,7 +3400,7 @@ msgstr "" "ЕÑли да, то перед импортом новой конфигурации будет Ñоздана Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ " "активной конфигурации." -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3413,19 +3413,19 @@ msgstr "" "\n" "Следует ли импортировать Ñту конфигурацию?" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "Импорт" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "Ðе импортировать" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3441,7 +3441,7 @@ msgstr "" "https://www.prusa3d.cz/prusaslicer/.\n" "Продолжить?" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3450,46 +3450,46 @@ msgstr "" "%s\n" "Хотите продолжить?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Запомнить мой выбор" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "Загрузка конфигурации" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "ДоÑтупна новый релиз программы %1%." -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "Смотреть Ñтраницы загрузки." -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "ДоÑтупна Ð½Ð¾Ð²Ð°Ñ Ð¿Ñ€ÐµÐ´Ñ€ÐµÐ»Ð¸Ð·Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ %1%." -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Смотрите Ñтраницу релизов." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "Подготовка вкладок наÑтроек" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3502,24 +3502,24 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "У Ð²Ð°Ñ Ð¸Ð¼ÐµÑŽÑ‚ÑÑ Ñледующие профили Ñ Ñохраненными параметрами Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ на " "хоÑÑ‚ печати" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3529,7 +3529,7 @@ msgstr "" "наÑтройках принтера.\n" "Теперь Ñти наÑтройки будут доÑтупны в разделе наÑтройки физичеÑких принтеров." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3538,138 +3538,138 @@ msgstr "" "При Ñоздании новых принтеров они будут именоватьÑÑ ÐºÐ°Ðº «Принтер N».\n" "Примечание: Ñто Ð¸Ð¼Ñ Ð¼Ð¾Ð¶Ð½Ð¾ изменить позже в наÑтройках физичеÑких принтеров" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "ИнформациÑ" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "ВоÑÑоздание" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Загрузка текущих профилей" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Загрузка режима проÑмотра" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Выберите один файл (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Выберите один или неÑколько файлов (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Выберите один файл (GCODE/.GCO/.G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Изменение Ñзыка приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Выбор Ñзыка" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Язык" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "изменено" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "ЗапуÑтить %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&Резервные копии конфигурации (Ñнапшот)" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Проверка и Ð°ÐºÑ‚Ð¸Ð²Ð°Ñ†Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ñ‹Ñ… копий конфигурации" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Сделать &Ñнапшот" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Сделать резервную копию конфигурации (Ñнапшот)" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "Проверка наличие обновлений конфигурации" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Проверка наличие обновлений конфигурации" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&ÐаÑтройки приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "ÐаÑтройки приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "ПроÑтой" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "ПроÑтой режим проÑмотра интерфейÑа приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "РаÑширенный" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "РаÑширенный режим проÑмотра интерфейÑа приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "Продвинутый" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Продвинутый режим проÑмотра интерфейÑа приложениÑ" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Режим интерфейÑа" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s режим проÑмотра" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "&Язык программы" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "&Прошивка принтера" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Загрузить прошивку в принтер на оÑнове Arduino" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "Создание резервной копии конфигурации (Ñнапшот)" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." @@ -3677,32 +3677,32 @@ msgstr "" "Ð’ некоторых профилÑÑ… имеютÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ. ÐеÑохранённые Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² них не " "будут запиÑаны в Ñнапшот." -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Ð˜Ð¼Ñ Ñнапшота" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "Загрузка резервной копии конфигурации (Ñнапшот)" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "Ðктивировать резервную копию конфигурации %1%?" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "Сбой активации Ñнапшота." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "ПерезапуÑтить приложение" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Выбор Ñзыка" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3710,87 +3710,87 @@ msgstr "" "Смена Ñзыка вызовет перезапуÑк приложениÑ.\n" "Ð’Ñ‹ потерÑете Ñодержимое Ñтола." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Хотите продолжить?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&ÐаÑтройки" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "Изменённый профиль уÑпешно Ñохранён" msgstr[1] "Изменённые профили уÑпешно Ñохранёны" msgstr[2] "Изменённые профили уÑпешно Ñохранёны" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "Ð”Ð»Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ проекта вÑе Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÑƒÑ‚ Ñброшены" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "Загрузка нового проекта при ÑущеÑтвующих изменениÑÑ… в текущем проекте." -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "Загрузка проекта" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "Открытие нового проекта при неÑохранении некоторых профилей." -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "Загрузки вÑÑ‘ ещё продолжаютÑÑ" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "ОÑтановить их и продолжить?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Текущие загрузки" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "По технологии SLA невозможно напечатать ÑоÑтавную модель(и)." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "ПожалуйÑта, проверьте ÑпиÑок моделей перед изменением профилÑ." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "Редактирование конфигурации Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ маÑтера наÑтроек" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Выбрать файл G-кода:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "Открыть гиперÑÑылку в браузере по умолчанию?" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "PrusaSlicer: Открытие гиперÑÑылки" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "Запретить открытие гиперÑÑылок в браузере" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "PrusaSlicer запомнит ваш выбор." -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -3799,8 +3799,8 @@ msgstr "" "Зайдите в «ÐаÑтройки приложениÑ» и уÑтановите флажок \"%1%\", чтобы изменить " "Ñвой выбор." -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: Ðе Ñпрашивать Ñнова" @@ -3906,7 +3906,7 @@ msgstr "Юбка и кайма" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3916,7 +3916,7 @@ msgid "Advanced" msgstr "Дополнительно" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3930,8 +3930,8 @@ msgid "Supports" msgstr "Поддержка" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3941,8 +3941,8 @@ msgstr "Поддержка" msgid "Pad" msgstr "Подложка" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -4045,7 +4045,7 @@ msgstr "ЭкÑпорт в STL" msgid "Reload the selected volumes from disk" msgstr "Перезагрузить выбранные объёмы Ñ Ð´Ð¸Ñка" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "Заменить STL" @@ -4071,19 +4071,19 @@ msgstr "ОтмаÑштабировать под облаÑть печати" msgid "Scale the selected object to fit the print volume" msgstr "ОтмаÑштабировать выбранную модель до объёма Ñтола" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Преобразовать размер из английÑкой ÑиÑтемы мер" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Отменить преобразование размера из английÑкой ÑиÑтемы мер" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "Преобразовать размер из метричеÑкой ÑиÑтемы мер" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "Отменить преобразование размера из метричеÑкой ÑиÑтемы мер" @@ -4357,7 +4357,7 @@ msgstr "Загрузить модификатор" msgid "Loading" msgstr "Загрузка" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "Загрузка файла" @@ -4802,7 +4802,7 @@ msgstr "Удалить параметр" msgid "Delete Option %s" msgstr "Удаление параметра %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "Изменение параметра %s" @@ -4921,18 +4921,18 @@ msgstr "Маркер инÑтрумента" msgid "Legend/Estimated printing time" msgstr "УÑловные обозначениÑ/РаÑчётное Ð²Ñ€ÐµÐ¼Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "Подробнее" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "Открыть наÑтройки приложениÑ." -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "Открыть документацию в браузере." @@ -5108,11 +5108,11 @@ msgstr "" "Импортированный SLA архив не Ñодержит никаких профилей. Текущие SLA профили " "иÑпользовалиÑÑŒ в качеÑтве резервных." -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "Ð’Ñ‹ не можете загрузить SLA проект Ñ ÑоÑтавной моделью на Ñтоле" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Внимание!" @@ -5153,11 +5153,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Загрузить конфигурацию из ini/amf/3mf/g-кода и объединить" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "ЭкÑпорт в G-код" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "Отправить G-код" @@ -5549,7 +5549,7 @@ msgstr "Показать/Скрыть уÑловные обозначениÑ/Ñ€ msgid "Show/Hide G-code window" msgstr "Показать/Ñкрыть окно Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ G-кода" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "ПредпроÑмотр нарезки" @@ -5667,29 +5667,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "Закрытие PrusaSlicer, при имеющихÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸ÑÑ… в профилÑÑ…." #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "ÐаÑтройки печати" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "ÐаÑтройка материала" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "ÐаÑтройки прутка" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "ÐаÑтройки принтера" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "Без названиÑ" @@ -6205,7 +6205,7 @@ msgid "Open New Instance" msgstr "ЗапуÑтить новый ÑкземплÑÑ€ программы" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "Сравнение профилей" @@ -6314,9 +6314,9 @@ msgstr "G-код" msgid "Save zip file as:" msgstr "Сохранить .zip файл как:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Ðарезка" @@ -6589,7 +6589,7 @@ msgstr "ОШИБКÐ:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "ПРЕДУПРЕЖДЕÐИЕ:" @@ -6615,8 +6615,8 @@ msgstr "Копии" msgid "Instance %d" msgstr "ÐšÐ¾Ð¿Ð¸Ñ %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Слои" @@ -6901,12 +6901,12 @@ msgstr "Под моделью" msgid "Around object" msgstr "Вокруг модели" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Ðа принтер" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "ÐÐРЕЗÐТЬ" @@ -7017,7 +7017,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "Ðе удалоÑÑŒ извлечь уÑтройÑтво %s(%s)." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Ðовый проект" @@ -7025,7 +7025,7 @@ msgstr "Ðовый проект" msgid "Expand sidebar" msgstr "Развернуть боковую панель" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -7042,12 +7042,12 @@ msgstr[2] "" "Приведённые ниже профили были временно уÑтановлены на активной копии " "PrusaSlicer" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "Ðе удалоÑÑŒ загрузить файл \"%1%\" из-за недопуÑтимой конфигурации." -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -7065,11 +7065,11 @@ msgstr[2] "" "Похоже у объектов из файла %s нулевой размер.\n" "Они были удалены из модели." -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "Размер модели равен нулю" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -7092,15 +7092,15 @@ msgstr[2] "" "Внутренней единицей Ð¸Ð·Ð¼ÐµÑ€ÐµÐ½Ð¸Ñ PrusaSlicer ÑвлÑÑŽÑ‚ÑÑ Ð¼Ð¸Ð»Ð»Ð¸Ð¼ÐµÑ‚Ñ€Ñ‹. ПереÑчитать " "размеры моделей?" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "Модель Ñлишком мала" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "Применить ко вÑем загружаемым мелким моделÑм." -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -7123,7 +7123,7 @@ msgstr[2] "" "Внутренней единицей Ð¸Ð·Ð¼ÐµÑ€ÐµÐ½Ð¸Ñ PrusaSlicer ÑвлÑÑŽÑ‚ÑÑ Ð¼Ð¸Ð»Ð»Ð¸Ð¼ÐµÑ‚Ñ€Ñ‹. ПереÑчитать " "размеры моделей?" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" @@ -7133,11 +7133,11 @@ msgstr "" "Следует ли загружать файл как единую модель, ÑоÑтоÑщий из неÑкольких\n" "чаÑтей (вмеÑто того, чтобы раÑÑматривать их как неÑколько моделей)?" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Обнаружена модель, ÑоÑтоÑÑ‰Ð°Ñ Ð¸Ð· неÑкольких чаÑтей" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" @@ -7145,11 +7145,11 @@ msgstr "" "Этот файл не может быть загружен в проÑтом режиме. Хотите перейти в " "раÑширенный режим?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "Обнаружены раÑширенные данные" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -7158,7 +7158,7 @@ msgstr "" "Ð’Ñ‹ не можете добавить модель(и) из %s, потому что одна или неÑколько из них " "ÑвлÑÑŽÑ‚ÑÑ ÑоÑтавными (ÑоÑтоÑÑ‚ из неÑкольких чаÑтей)" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -7168,7 +7168,7 @@ msgstr "" "ВмеÑто того, чтобы раÑÑматривать их как неÑколько моделей, Ñледует ли " "раÑÑматривать их как одну модель, ÑоÑтоÑщую из неÑколько чаÑтей?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7176,54 +7176,54 @@ msgstr "" "Ваша модель Ñлишком большаÑ, поÑтому она была автоматичеÑки уменьшена до " "размера вашего печатного Ñтола." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Модель Ñлишком большаÑ?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "ЭкÑпорт в STL файл:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "ЭкÑпорт в AMF файл:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Сохранить файл как:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "ЭкÑпорт в OBJ файл:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Удаление модели" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "Удаление вÑех моделей" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Обнуление проекта" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" "Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð¼Ð¾Ð´ÐµÐ»ÑŒ не может быть разделена, так как она ÑоÑтоит из одной чаÑти." -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "Ð’Ñе модификаторы были удалены" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Разделить на модели" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." @@ -7231,87 +7231,87 @@ msgstr "" "Модель имеет пользовательÑкие принудительные поддержки, которые не будут " "иÑпользоватьÑÑ, так как поддержки отключены." -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "Разрешить только принудительную поддержку" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Ðеверные данные" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Уже идёт другой процеÑÑ ÑкÑпорта." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "Заменить из:" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "Ðевозможно заменить более чем одним объём" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "Ошибка при выполнении замены" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "Выберите новый файл" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "Файл Ð´Ð»Ñ Ð·Ð°Ð¼ÐµÐ½Ñ‹ не выбран" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "ПожалуйÑта, выберите файл Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "Ð’ выбранном файле" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "отличаетÑÑ Ð¾Ñ‚ иÑходного файла" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "Хотите заменить его" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Перезагрузка из:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "Ðе удалоÑÑŒ перезагрузить:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "Ошибка во Ð²Ñ€ÐµÐ¼Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Перезагрузить вÑÑ‘ Ñ Ð´Ð¸Ñка" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "ИмеютÑÑ Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ðµ Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Ð¾ нарезанных моделÑÑ…:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "вызвала предупреждениÑ" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D-вид" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "Отмена / Повтор в процеÑÑе выполнениÑ" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7322,21 +7322,21 @@ msgstr "" "Ðекоторые профили %1% были изменены и будут потерÑны поÑле Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ " "технологии печати." -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "Создание нового проекта при изменении в текущем проекте." -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" "Создание нового проекта при имеющихÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸ÑÑ… в неÑкольких профилÑÑ…." -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" "Ð’Ñ‹ можете Ñохранить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² профилÑÑ… в новом проекте или отменить их." -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" @@ -7346,125 +7346,125 @@ msgstr "" "Ñохранить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ ÐºÐ°Ðº новые профили.\n" "Примечание: При Ñохранении изменений они не переноÑÑÑ‚ÑÑ Ð² новый проект." -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "Создание нового проекта" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Загрузка проекта" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Импорт модели" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Импорт моделей" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "G-кода ÑодержатÑÑ Ð½ÐµÐ´Ð¾Ð¿ÑƒÑтимые данные." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "Ошибка при загрузке .gcode файла" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - ПеретаÑкивание файла-проекта" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Открыть как проект" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Импортировать только геометрию" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Импортировать только конфигурацию" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Выберите дейÑтвие Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ðº файлу" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "ДейÑтвие" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "Больше не показывать" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "За раз вы можете открыть только один .gcode файл." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "Перетащите G-код файл" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Загрузить файл" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Загрузить файлы" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "Ð’Ñе модели будут удалены, продолжить?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Удаление выбранных моделей" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Добавление копии" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Удаление копии" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Введите количеÑтво копий:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "КоличеÑтво копий выбранной модели" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Задать количеÑтво копий: %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Разрез по плоÑкоÑти" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "Сохранить файл G-кода как:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "Сохранить SL1 / SL1S файл как:" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "Указано недопуÑтимое Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°." -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "Следующие Ñимволы не разрешены файловой ÑиÑтемой FAT:" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" @@ -7472,15 +7472,15 @@ msgstr "" "Ðа Ñтоле ничего нет.\n" "Ð’ÑÑ‘ равно Ñохранить проект?" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "Сохранение проекта" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "ЭкÑпорт" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." @@ -7488,14 +7488,14 @@ msgstr "" "ПоÑле починки Ñетки были удалены пользовательÑкие поддержки, швы и " "Ð¼ÑƒÐ»ÑŒÑ‚Ð¸Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ð¿Ð¾ÐºÑ€Ð°Ñка." -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Ð’Ñтавка из буфера обмена" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Общие" @@ -7636,7 +7636,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7650,7 +7650,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7661,7 +7661,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -8226,13 +8226,13 @@ msgstr "Отправить G-кода на хоÑÑ‚ принтера" msgid "Upload to Printer Host with the following filename:" msgstr "Загрузить на хоÑÑ‚ принтера Ñо Ñледующим именем:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" "При необходимоÑти иÑпользуйте коÑую черту ( / ) в качеÑтве Ñ€Ð°Ð·Ð´ÐµÐ»Ð¸Ñ‚ÐµÐ»Ñ " "каталогов." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Группа" @@ -8241,18 +8241,18 @@ msgstr "Группа" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "Ð˜Ð¼Ñ Ð·Ð°Ð³Ñ€ÑƒÐ¶Ð°ÐµÐ¼Ð¾Ð³Ð¾ файла не заканчиваетÑÑ Ð½Ð° \"%s\". Хотите продолжить?" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "Загрузить" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "Загрузить и напечатать" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "Загрузить и ÑÑмулировать" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "Загрузить" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8715,7 +8715,7 @@ msgstr "полное Ð¸Ð¼Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ" msgid "symbolic profile name" msgstr "ÑимволичеÑкое Ð¸Ð¼Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Слои и периметры" @@ -8799,11 +8799,11 @@ msgstr "Перекрытие" msgid "Flow" msgstr "Поток" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Прочее" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Выходные параметры" @@ -8815,11 +8815,11 @@ msgstr "ПоÑÐ»ÐµÐ´Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¿ÐµÑ‡Ð°Ñ‚ÑŒ" msgid "Extruder clearance" msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð±ÐµÐ·Ð¾Ð¿Ð°Ñной зоны ÑкÑтрудера" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Выходной файл" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Скрипты поÑтобработки" @@ -8827,19 +8827,20 @@ msgstr "Скрипты поÑтобработки" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Заметки" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "ЗавиÑимоÑти" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "ЗавиÑимоÑти профилÑ" @@ -8925,7 +8926,7 @@ msgid "Ramming settings" msgstr "ÐаÑтройки Ñ€Ñмминга" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "ПользовательÑкий G-код" @@ -8971,8 +8972,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Размер и координаты" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "ХарактериÑтики принтера" @@ -9041,11 +9042,11 @@ msgstr "Ðаклон ванночки" msgid "Tilt time" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð½Ð°ÐºÐ»Ð¾Ð½Ð° ванночки" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Корректировка" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "ЭкÑпозициÑ" @@ -9239,42 +9240,46 @@ msgstr "Ð’Ñ‹ уверены, что хотите %1% выбранный проф msgid "%1% Preset" msgstr "Профиль %1%" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Выбор" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Ðайти" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Слово целиком" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "ÐžÐ³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð° будут передаватьÑÑ Ð² G-код и иÑпользоватьÑÑ Ð´Ð»Ñ Ð¾Ñ†ÐµÐ½ÐºÐ¸ " "времени печати." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9284,7 +9289,7 @@ msgstr "" "иÑпользуютÑÑ Ð´Ð»Ñ Ð¾Ñ†ÐµÐ½ÐºÐ¸ времени печати, которое может быть неточным, " "поÑкольку принтер может применÑть другой набор ограничений Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9292,12 +9297,12 @@ msgstr "" "ÐžÐ³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð° не заданы, поÑтому оценка времени печати может быть " "неточной." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "ЗÐКРЫТЫЙ ЗÐМОЧЕК" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9305,12 +9310,12 @@ msgstr "" "указывает, что наÑтройки Ñовпадают Ñ ÑиÑтемными значениÑми (или значениÑми " "по умолчанию) Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы." -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "ОТКРЫТЫЙ ЗÐМОЧЕК" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9322,12 +9327,12 @@ msgstr "" "Ðажмите, чтобы ÑброÑить вÑе наÑтройки текущей группы до ÑиÑтемных значений " "(или значений по умолчанию)." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "БЕЛЫЙ МÐРКЕР" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9335,12 +9340,12 @@ msgstr "" "Ñлева: указывает на не ÑиÑтемный профиль (или профиль не по умолчанию),\n" "Ñправа: указывает, что параметры не были изменены." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "ЗÐÐЧОК СО СТРЕЛКОЙ" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9353,7 +9358,7 @@ msgstr "" "наÑтройки Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы до поÑледнего\n" "Ñохранённого Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9361,7 +9366,7 @@ msgstr "" "ЗÐКРЫТЫЙ ЗÐМОЧЕК указывает, что наÑтройки Ñовпадают Ñ ÑиÑтемными значениÑми " "(или значениÑми по умолчанию) Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы." -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9373,12 +9378,12 @@ msgstr "" "Ðажмите, чтобы ÑброÑить вÑе наÑтройки текущей группы до ÑиÑтемных значений " "(или значений по умолчанию)." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" "БЕЛЫЙ МÐРКЕР указывает на не ÑиÑтемный профиль (или профиль не по умолчанию)." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9386,7 +9391,7 @@ msgstr "" "БЕЛЫЙ МÐРКЕР означает, что наÑтройки Ñовпадают Ñ Ð½Ð°Ñтройками в поÑледнем " "Ñохранённом профиле Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9398,7 +9403,7 @@ msgstr "" "Ðажмите, чтобы ÑброÑить вÑе наÑтройки Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы до поÑледнего " "Ñохранённого Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -9406,7 +9411,7 @@ msgstr "" "ЗÐКРЫТЫЙ ЗÐМОЧЕК указывает, что значение Ñовпадает Ñ ÑиÑтемным значением " "(или значение по умолчанию)." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9417,7 +9422,7 @@ msgstr "" "Ðажмите, чтобы ÑброÑить текущее значение к ÑиÑтемному значению (или значению " "по умолчанию)." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9425,7 +9430,7 @@ msgstr "" "БЕЛЫЙ МÐРКЕР указывает, что значение Ñовпадает Ñо значением в поÑледнем " "Ñохранённом профиле." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9435,31 +9440,31 @@ msgstr "" "значением в поÑледнем Ñохранённом профиле Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ группы.\n" "Ðажмите, чтобы ÑброÑить значение до поÑледнего Ñохранённого Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Материал" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "Профиль печати материалами" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "ÐоÑик поддержки" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Тело поддержки" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "Ð¡Ð¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¾Ð¿Ð¾Ñ€ поддержки Ñо ÑвÑзующим узлом" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "ÐвтоматичеÑÐºÐ°Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9468,74 +9473,74 @@ msgstr "" "\"%1%\" отключена, так как \"%2%\" находитÑÑ Ð² категории \"%3%\".\n" "Чтобы включить \"%1%\", отключите \"%2%\"" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Ð’Ñ‹Ñота подъёма модели" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Подложка вокруг модели" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Ðе задано" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "ÐеÑохранённые изменениÑ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "Смена профилей: неÑохранённые изменениÑ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Старое значение" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Ðовое значение" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "Запомнить" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "ПеренеÑти" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "Ðе ÑохранÑть" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Ðе ÑохранÑть" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Сохранить" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9543,11 +9548,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "PrusaSlicer запомнит ваш выбор." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9556,56 +9561,57 @@ msgstr "" "Зайдите в наÑтройки Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸ уÑтановите флажок \"%1%\",\n" "чтобы вернуть Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð¾ неÑохранённых изменениÑÑ…." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "Ðекоторые Ð¿Ð¾Ð»Ñ Ñлишком длинные. Щёлкните правой кнопкой мыши, чтобы показать " "полный текÑÑ‚." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "Ð’Ñе Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² наÑтройках не будут Ñохранены" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "Ð’Ñе изменённые параметры будут потерÑны." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "Сохранить выбранные параметры." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "Запомнить выбранные наÑтройки." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "ПеренеÑти выбранные параметры во вновь выбранный профиль." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "Сохранить выбранные параметры в профиле \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "ПеренеÑти выбранные параметры во вновь выбранный профиль \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "Был изменён Ñледующий профиль" msgstr[1] "Были изменены Ñледующие профилÑ" msgstr[2] "Были изменены Ñледующие профилей" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "Профиль \"%1%\" имеет Ñледующие неÑохранённые изменениÑ:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9614,7 +9620,7 @@ msgstr "" "Профиль \"%1%\" неÑовмеÑтим Ñ Ð½Ð¾Ð²Ñ‹Ð¼ профилем принтера, и в нём еÑть " "Ñледующие неÑохранённые изменениÑ:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9623,40 +9629,40 @@ msgstr "" "Профиль \"%1%\" неÑовмеÑтим Ñ Ð½Ð¾Ð²Ñ‹Ð¼ профилем печати, и имеет Ñледующие " "неÑохранённые изменениÑ:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "КоличеÑтво ÑкÑтрудеров" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "Выберите профили Ð´Ð»Ñ ÑравнениÑ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "Показать вÑе профили (Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ð½ÐµÑовмеÑтимые)" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "Значение в левом профиле" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "Значение в правом профиле" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "Ðе найден один из профилей" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "Сравниваемые профили имеют различную технологию печати" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "ÐžÑ‚Ð»Ð¸Ñ‡Ð¸Ñ Ð² профилÑÑ… отÑутÑтвуют" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." @@ -9664,11 +9670,11 @@ msgstr "" "Профили отличаютÑÑ.\n" "Ðажмите Ñту кнопку, чтобы выÑтавить в правый профиль тоже что и в левом." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "ÐÐµÐ¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñ‘Ð½Ð½Ð°Ñ ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "ÐÐµÐ¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñ‘Ð½Ð½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°" @@ -10525,27 +10531,27 @@ msgstr "ошибка проверки" msgid "write calledback failed" msgstr "ошибка запиÑи обратного вызова" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Ð’Ñе модели находÑÑ‚ÑÑ Ð·Ð° пределами облаÑти печати." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "Заданные наÑтройки приведут к пуÑтой печати." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "Ðекоторые модели находÑÑ‚ÑÑ Ñлишком близко друг к другу. ЭкÑтрудер при печати " "ÑтолкнётÑÑ Ñ Ð½Ð¸Ð¼Ð¸." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Ðекоторые модели Ñлишком выÑокие и при печати ÑкÑтрудер ÑтолкнётÑÑ Ñ Ð½Ð¸Ð¼Ð¸." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10555,13 +10561,13 @@ msgstr "" "Либо оÑтавьте на Ñтоле одну модель или включите поÑледовательную печать Ñ " "помощью \"complete_objects\"." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "Ð’ режиме Â«Ð¡Ð¿Ð¸Ñ€Ð°Ð»ÑŒÐ½Ð°Ñ Ð²Ð°Ð·Ð°Â» можно печатать только одним материалом." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10569,7 +10575,7 @@ msgstr "" "Режим черновой башни применим только в том Ñлучае, еÑли вÑе ÑкÑтрудеры имеют " "одинаковый диаметр Ñопла и иÑпользуетÑÑ Ð¿Ñ€ÑƒÑ‚Ð¾Ðº одного диаметра." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10577,7 +10583,7 @@ msgstr "" "Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ñ€ÐµÐ¶Ð¸Ð¼ черновой башни поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñледующими " "типами G-кода: Marlin, RepRap/Sprinter, RepRapFirmware, Repetier." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10585,20 +10591,20 @@ msgstr "" "Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð´Ð»Ñ Ñ€ÐµÐ¶Ð¸Ð¼Ð° черновой башни поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ " "отноÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð°Ð´Ñ€ÐµÑÐ°Ñ†Ð¸Ñ ÑкÑтрудера (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "«Предотвращение течи материала» в наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ поддерживаетÑÑ Ð¿Ñ€Ð¸ " "включённой черновой башне." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "Ð§ÐµÑ€Ð½Ð¾Ð²Ð°Ñ Ð±Ð°ÑˆÐ½Ñ Ð² наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ поддерживает объёмные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ E " "(use_volumetric_e=0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10606,7 +10612,7 @@ msgstr "" "Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ñ€ÐµÐ¶Ð¸Ð¼ черновой башни не поддерживает поÑледовательную " "печать Ð´Ð»Ñ Ð¼ÑƒÐ»ÑŒÑ‚Ð¸Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ñ… принтеров." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10614,7 +10620,7 @@ msgstr "" "Режим черновой башни применим Ð´Ð»Ñ Ð½ÐµÑкольких моделей только в том Ñлучае, " "еÑли они имеют одинаковую выÑоту ÑлоÑ." -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10622,7 +10628,7 @@ msgstr "" "Режим черновой башни применим Ð´Ð»Ñ Ð½ÐµÑкольких моделей только в том Ñлучае, " "еÑли они имеют одинаковое чиÑло Ñлоёв подложки." -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10631,7 +10637,7 @@ msgstr "" "еÑли они печатаютÑÑ Ñ Ð¾Ð´Ð¸Ð½Ð°ÐºÐ¾Ð²Ñ‹Ð¼ support_material_contact_distance " "(раÑÑтоÑние от поддержки до модели по вертикали)." -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10639,7 +10645,7 @@ msgstr "" "Режим черновой башни применим Ð´Ð»Ñ Ð½ÐµÑкольких моделей только в том Ñлучае, " "еÑли они нарезаны одинаково." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10647,26 +10653,26 @@ msgstr "" "Режим черновой башни применим только в том Ñлучае, еÑли вÑе модели имеют " "одну и туже переменную выÑоту ÑлоÑ." -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Ð”Ð»Ñ Ð¾Ð´Ð½Ð¾Ð³Ð¾ или неÑкольких моделей был назначен ÑкÑтрудер, который у принтера " "отÑутÑтвует." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" "Значение параметра %1%=%2% мм Ñлишком мало Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸ при выÑоте ÑÐ»Ð¾Ñ %3% мм" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" "Чрезмерное значение параметра %1%=%2% мм Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸ при диаметре Ñопла %3% мм" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10678,7 +10684,7 @@ msgstr "" "(support_material_extruder == 0 или support_material_interface_extruder == " "0), вÑе Ñопла должны иметь одинаковый диаметр." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10686,7 +10692,7 @@ msgstr "" "Ð”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы режим черновой башни работал Ñ Ñ€Ð°Ñтворимой поддержкой, Ñлои " "поддержки должны быть Ñинхронизированы Ñо ÑлоÑми модели." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10699,27 +10705,46 @@ msgstr "" "и «ЭкÑтрудер, печатающий ÑвÑзующий Ñлой поддержки/подложки» должны быть " "уÑтановлены в 0)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "Ð’Ñ‹Ñота первого ÑÐ»Ð¾Ñ Ð½Ðµ может быть больше диаметра Ñопла." -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "Ð’Ñ‹Ñота ÑÐ»Ð¾Ñ Ð½Ðµ может быть больше диаметра Ñопла" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Заполнение Ñлоёв" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ ÑŽÐ±ÐºÐ¸ и каймы" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "ЭкÑпорт в G-код" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ G-кода" diff --git a/resources/localization/tr/PrusaSlicer_tr.po b/resources/localization/tr/PrusaSlicer_tr.po index f7912c4055..0b0e643c4c 100644 --- a/resources/localization/tr/PrusaSlicer_tr.po +++ b/resources/localization/tr/PrusaSlicer_tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2019-05-23 00:37+0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -563,7 +563,7 @@ msgstr "Aktif" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "yazdır" @@ -571,17 +571,17 @@ msgstr "yazdır" msgid "filaments" msgstr "filamentler" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA baskısı" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA malzemesi" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "yazıcı" @@ -640,7 +640,7 @@ msgstr "Standart" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Tümü" @@ -728,7 +728,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "filaman" @@ -819,7 +819,7 @@ msgstr "" "oluÅŸturulur." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "" @@ -1111,7 +1111,7 @@ msgstr "&Bitti" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "İptal" @@ -1175,7 +1175,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1618,8 +1618,8 @@ msgid "parameter name" msgstr "parametre ismi" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Ekle" @@ -2021,7 +2021,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Ayarlar" @@ -2290,7 +2290,7 @@ msgid "Add..." msgstr "Ekle..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Tümünü sil" @@ -3166,25 +3166,25 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " "not be affected." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3196,7 +3196,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3205,19 +3205,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3227,53 +3227,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3286,198 +3286,198 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Yeniden oluÅŸturma" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Geçerli hazır ayarlar yükleniyor" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Mod görünümü yükleniyor" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Bir dosya seçin (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Bir veya daha fazla dosya seçin (STL / OBJ / AMF / 3MF / PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Bir uygulama dilinin deÄŸiÅŸtirilmesi" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Dil seçiniz" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Dil" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "deÄŸiÅŸtirilmiÅŸ" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "%s baÅŸlat" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&Yapılandırma Anlık Görüntüleri" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "Yapılandırma anlık görüntülerini inceleme/etkinleÅŸtirme" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Yapılandırma &Anlık Görüntüsü Al" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Yapılandırma anlık görüntüsünü kaydet" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&Tercihler" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Uygulama tercihleri" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "Basit" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "Basit görünüm modu" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "GeliÅŸmiÅŸ Görünüm Modu" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "Uzman" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Uzman Modu" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Mod" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s Görüntüleme Modu" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Arduino tabanlı bir yazıcıya yazılım yükle" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Anlık görüntü adı" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Dil seçimi" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3485,96 +3485,96 @@ msgstr "" "Dilin deÄŸiÅŸtirilmesi uygulamanın yeniden baÅŸlatılmasını tetikler.\n" "Tabla içeriÄŸini kaybedeceksiniz." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Devam etmek istiyor musunuz?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&Ayarlar" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA teknolojisi ile çok parçalı nesnelerin basılması mümkün deÄŸildir." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "" "Lütfen önceden ayarlanmış deÄŸiÅŸiklik yapmadan önce nesne listenizi kontrol " "edin." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3680,7 +3680,7 @@ msgstr "Etek ve kenar" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3690,7 +3690,7 @@ msgid "Advanced" msgstr "GeliÅŸmiÅŸ" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3704,8 +3704,8 @@ msgid "Supports" msgstr "Destekler" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3715,8 +3715,8 @@ msgstr "Destekler" msgid "Pad" msgstr "Altlık" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3819,7 +3819,7 @@ msgstr "STL Olarak Dışa Aktar" msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3845,19 +3845,19 @@ msgstr "" msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4118,7 +4118,7 @@ msgstr "" msgid "Loading" msgstr "Yükleniyor" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4544,7 +4544,7 @@ msgstr "Parametre kaldır" msgid "Delete Option %s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "" @@ -4663,18 +4663,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4834,11 +4834,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Dikkat!" @@ -4879,11 +4879,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "G-code Dışa Aktar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "G kodunu gönder" @@ -5270,7 +5270,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "Ön izleme" @@ -5382,29 +5382,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Baskı Ayarları" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Malzeme Ayarları" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Filament Ayarları" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Yazıcı ayarları" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5914,7 +5914,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6023,9 +6023,9 @@ msgstr "G-kod" msgid "Save zip file as:" msgstr "Zip dosyasını farklı kaydet:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "Dilimleme" @@ -6287,7 +6287,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6313,8 +6313,8 @@ msgstr "Örnekleri" msgid "Instance %d" msgstr "Kopya %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Katmanlar" @@ -6578,12 +6578,12 @@ msgstr "" msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "Yazıcıya gönder" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Åžimdi dilimle" @@ -6692,7 +6692,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "" @@ -6700,7 +6700,7 @@ msgstr "" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6710,12 +6710,12 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6726,11 +6726,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6743,15 +6743,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6764,28 +6764,28 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "Çok parçalı nesne algılandı" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "GeliÅŸmiÅŸ veriler tespit edildi" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6794,14 +6794,14 @@ msgstr "" "%s öğesinden nesne ekleyemezsiniz çünkü bir yada bir kaçı çoklu parçadan " "oluÅŸuyor" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -6809,139 +6809,139 @@ msgstr "" "Nesneniz çok büyük görünüyor, bu nedenle baskı tablanıza uyacak ÅŸekilde " "otomatik olarak küçültüldü." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Nesne çok mu büyük?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "Dışa aktarılacak STL dosya:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "AMF dosyasını dışa aktar:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Farklı kaydet:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Geçersiz veri" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Åžu anda baÅŸka bir dışa aktarma iÅŸlemi çalışıyor." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3B düzenleme görünümü" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6949,171 +6949,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "G kodu dosyasını farklı kaydet:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "Dışa Aktar" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Genel" @@ -7244,7 +7244,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7258,7 +7258,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7269,7 +7269,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7780,11 +7780,11 @@ msgstr "G-Kodunu yazıcı ana bilgisayarına gönderin" msgid "Upload to Printer Host with the following filename:" msgstr "AÅŸağıdaki dosya adıyla Yazıcı Ana Bilgisayarına yükleyin:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Gerekirse, eÄŸik çizgi (/) iÅŸlevini dizin ayırıcı olarak kullanın." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7793,18 +7793,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "İD" @@ -8244,7 +8244,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Katmanlar ve duvarlar" @@ -8328,11 +8328,11 @@ msgstr "Üzerine bindirme" msgid "Flow" msgstr "Akış" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "DiÄŸer" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Çıktı seçenekleri" @@ -8344,11 +8344,11 @@ msgstr "Sıralı baskı" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Çıktı dosyası" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "İşlem sonrası komut dosyaları" @@ -8356,19 +8356,20 @@ msgstr "İşlem sonrası komut dosyaları" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Notlar" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "Bağımlılıklar" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "Profil bağımlılıkları" @@ -8444,7 +8445,7 @@ msgid "Ramming settings" msgstr "Sıkıştırma ayarları" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "Özel G-code" @@ -8482,8 +8483,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Boyut ve koordinatlar" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "Kabiliyetler" @@ -8548,11 +8549,11 @@ msgstr "EÄŸim" msgid "Tilt time" msgstr "Yatırma zamanı" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Düzeltmeler" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "Poz" @@ -8713,69 +8714,73 @@ msgstr "%1% ayarını seçili ön ayar yapmak istediÄŸinizden emin misiniz?" msgid "%1% Preset" msgstr "%1% Ön Ayar" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Ayarla" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Bul" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Tam kelime" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "KAPALI KİLİT" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "AÇIK KİLİT" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8783,23 +8788,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "BEYAZ NOKTA" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "GERİ OK" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8811,13 +8816,13 @@ msgstr "" "Geçerli seçenek grubunun tüm ayarlarını en son kaydedilen ön ayara " "sıfırlamak için GERİ OK tuÅŸuna basın." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8825,11 +8830,11 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -8837,7 +8842,7 @@ msgstr "" "BEYAZ NOKTA simgesi ayarların geçerli seçenek grubu için en son kaydedilen " "ön ayardakiyle aynı olduÄŸunu gösterir." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8849,20 +8854,20 @@ msgstr "" "Geçerli seçenek grubunun tüm ayarlarını en son kaydedilen ön ayara " "sıfırlamak için tıklayın." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -8870,7 +8875,7 @@ msgstr "" "BEYAZ NOKTA simgesi, deÄŸerin son kaydedilen ön ayardakiyle aynı olduÄŸunu " "gösterir." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -8880,105 +8885,105 @@ msgstr "" "olmadığını gösterir.\n" "Geçerli deÄŸeri son kaydedilen ön ayara sıfırlamak için tıklayın." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Malzeme" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Destek kafa" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Destek ayağı" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "Destek çubuklarının ve birleÅŸimlerinin baÄŸlantısı" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Otomatik oluÅŸturma" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "Nesne yüksekliÄŸi" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "KaydedilmemiÅŸ DeÄŸiÅŸiklikler" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Kaydet" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -8986,121 +8991,122 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9897,31 +9903,31 @@ msgstr "doÄŸrulama baÅŸarısız" msgid "write calledback failed" msgstr "geri arama yazma baÅŸarısız oldu" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "Tüm nesneler baskı hacminin dışında." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "Verilen ayarlar boÅŸ yazdırmaya neden olur." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "Bazı nesneler çok yakın; Ekstrüderiniz onlarla çarpışacaktır." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Bazı nesneler çok uzun ve ekstrüder çarpışmaları olmadan basılamaz." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -9929,19 +9935,19 @@ msgstr "" "Spiral Vazo seçeneÄŸi, yalnızca tek malzeme nesnelerini yazdırırken " "kullanılabilir." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -9949,22 +9955,22 @@ msgstr "" "Temizleme Kulesi ÅŸu anda yalnızca göreceli ekstrüder adreslemesi ile " "desteklenmektedir (use_relative_e_distances = 1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -9972,7 +9978,7 @@ msgstr "" "Temizleme Kulesi, yalnızca eÅŸit katman yüksekliÄŸine sahipse birden çok nesne " "için desteklenir" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -9980,7 +9986,7 @@ msgstr "" "Temizleme Kulesi, yalnızca eÅŸit sayıda sal katmanın üzerine basıldıysa, " "yalnızca birden çok nesne için desteklenir" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -9988,7 +9994,7 @@ msgstr "" "Temizleme Kulesi, yalnızca aynı support_material_contact_distance ile " "yazdırılıyorsa, birden çok nesne için desteklenir" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -9996,30 +10002,30 @@ msgstr "" "Temizleme Kulesi, yalnızca eÅŸit ÅŸekilde dilimlenmeleri durumunda birden çok " "nesne için desteklenir." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Bir veya daha fazla nesneye, yazıcının sahip olmadığı bir ekstrüder " "verilmiÅŸtir." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10031,7 +10037,7 @@ msgstr "" "support_material_interface_ekstrüder == 0), tüm nozullar aynı çapta " "olmalıdır." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10039,7 +10045,7 @@ msgstr "" "Temizleme Kulesi'nin çözülebilir desteklerle çalışması için, destek " "katmanlarının nesne katmanları ile senkronize edilmesi gerekir." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10051,27 +10057,46 @@ msgstr "" "(Hem support_material_ekstrüder hem de support_material_interface_ekstrüder " "0 olarak ayarlanmalıdır)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "İlk katman yüksekliÄŸi nozül çapından büyük olamaz" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "Katman yüksekliÄŸi nozül çapından büyük olamaz" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Dolgu katmanları" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "G-code dışa aktarılıyor" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "G kodu oluÅŸturma" diff --git a/resources/localization/uk/PrusaSlicer_uk.po b/resources/localization/uk/PrusaSlicer_uk.po index af0d1ad58c..41a8403ac0 100644 --- a/resources/localization/uk/PrusaSlicer_uk.po +++ b/resources/localization/uk/PrusaSlicer_uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2021-02-03 17:15+0100\n" "Last-Translator: Oleksandra Iushchenko \n" "Language-Team: \n" @@ -591,7 +591,7 @@ msgstr "Ðктивний" msgid "PrusaSlicer version" msgstr "ВерÑÑ–Ñ PrusaSlicer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "друк" @@ -599,17 +599,17 @@ msgstr "друк" msgid "filaments" msgstr "філаменти" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA-друк" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA-матеріал" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "принтер" @@ -668,7 +668,7 @@ msgstr "Стандартний" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "Ð’ÑÑ–" @@ -755,7 +755,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "філамент" @@ -846,7 +846,7 @@ msgstr "" "конфігурації." #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "Перезавантажити з диÑка" @@ -1152,7 +1152,7 @@ msgstr "Завершити" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "СкаÑувати" @@ -1216,7 +1216,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1693,8 +1693,8 @@ msgid "parameter name" msgstr "назва параметра" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "Ð/Д" @@ -1901,7 +1901,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "Додати" @@ -2103,7 +2103,7 @@ msgid "Wipe" msgstr "ВитираннÑ" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "Параметри" @@ -2374,7 +2374,7 @@ msgid "Add..." msgstr "Додати..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "Видалити вÑе" @@ -3277,7 +3277,7 @@ msgstr "Критична помилка" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -3287,7 +3287,7 @@ msgstr "" "пошкоджений. Спробуйте вручну видалити файл, щоб оговтатиÑÑ Ð²Ñ–Ð´ помилки. Це " "не вплине на профілі кориÑтувачів." -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." @@ -3295,12 +3295,12 @@ msgstr "" "Помилка під Ñ‡Ð°Ñ Ñ€Ð¾Ð·Ð±Ð¾Ñ€Ñƒ файлу конфігурації PrusaGCodeViewer, можливо, він " "пошкоджений. Спробуйте вручну видалити файл, щоб оговтатиÑÑ Ð²Ñ–Ð´ помилки." -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3312,7 +3312,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3321,19 +3321,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3343,7 +3343,7 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" @@ -3352,46 +3352,46 @@ msgstr "" "%s\n" "Бажаєте продовжити?" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "Пам'Ñтати мій вибір" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ—" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "Див. Сторінку випуÑків." -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "Підготовка вкладок параметрів" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3404,24 +3404,24 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" "У Ð²Ð°Ñ Ñ” наÑтупні преÑети із збереженими параметрами Ð´Ð»Ñ \"Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ñ…Ð¾Ñта " "друку(\"Print Host upload\")\"" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" @@ -3431,7 +3431,7 @@ msgstr "" "параметрах принтера.\n" "Ці параметри будуть доÑтупні у налаштуваннÑÑ… фізичних принтерів." -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" @@ -3441,169 +3441,169 @@ msgstr "" "Ñ—Ñ… ÑтвореннÑ.\n" "Примітка: Цю назву можна змінити пізніше в налаштуваннÑÑ… фізичних принтерів" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "ІнформаціÑ" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "Пере-ÑтвореннÑ" -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ… преÑетів" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ñ€ÐµÐ¶Ð¸Ð¼Ñƒ переглÑду" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "Виберіть один файл (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Виберіть один чи кілька файлів (STL/OBJ/AMF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "Виберіть один файл (GCODE/.GCO/.G/.ngc/NGC):" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "Зміна мови заÑтоÑуваннÑ" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "Оберіть мову" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "Мова" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "модифікований" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "ЗапуÑтити %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "Знімки конфігурації" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "ПереглÑньте / активізуйте знімки конфігурації" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "Зробіть знімок конфігурації" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "Зробіть знімок конфігурації" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "Перевірити наÑвніÑть оновлень конфігурації" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&Преференції" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "Преференції заÑтоÑуваннÑ" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "ПроÑтий" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "ПроÑтий режим переглÑду" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "Розширений" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "Розширений режим переглÑду" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "ЕкÑперт" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "Режим переглÑду ЕкÑперт" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "Режим" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "Режим переглÑду %s" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "Мова" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "Прошити принтер" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "Завантажте імідж прошивки на Arduino-принтер" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "Ðазва знімку" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "Ðе вдалоÑÑ Ð°ÐºÑ‚Ð¸Ð²ÑƒÐ²Ð°Ñ‚Ð¸ знімок конфігурації." -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "Вибір мови" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3611,98 +3611,98 @@ msgstr "" "ÐŸÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð¼Ð¾Ð²Ð¸ Ñпричинить перезапуÑк програми.\n" "Ви втратите вміÑÑ‚ платеру." -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "Ви хочете продовжити?" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&КонфігураціÑ" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ñе ще триває" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "Зупинити Ñ—Ñ… Ñ– продовжувати в будь-Ñкому випадку?" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "Триває завантаженнÑ" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" "За технологією SLA неможливо надрукувати об'єкти, що ÑкладаютьÑÑ Ð· декількох " "чаÑтин." -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "" "Будь лаÑка, перевірте Ñвій ÑпиÑок об'єктів перед тим, Ñк змінити преÑет." -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "Виберіть файл G-коду:" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "Заборонити Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð³Ñ–Ð¿ÐµÑ€Ð¿Ð¾Ñилань у браузері" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "PrusaSlicer: Ðе питай мене більше" @@ -3808,7 +3808,7 @@ msgstr "ÐŸÐ»Ñ–Ð½Ñ‚ÑƒÑ Ñ‚Ð° край" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3818,7 +3818,7 @@ msgid "Advanced" msgstr "Розширений" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3832,8 +3832,8 @@ msgid "Supports" msgstr "Підтримки" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3843,8 +3843,8 @@ msgstr "Підтримки" msgid "Pad" msgstr "Подушка" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3947,7 +3947,7 @@ msgstr "ЕкÑпортувати Ñк STL" msgid "Reload the selected volumes from disk" msgstr "Перезавантажити вибрані чаÑті з диÑка" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3973,19 +3973,19 @@ msgstr "МаÑштабувати під облаÑть друку" msgid "Scale the selected object to fit the print volume" msgstr "МаÑштабуйте вибраний об'єкт відповідно до об'єму Ñтолу" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "Конвертувати з імперÑьких одиниць" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "Повернути конвертацію з імперÑьких одиниць" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4256,7 +4256,7 @@ msgstr "" msgid "Loading" msgstr "ЗавантаженнÑ" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ" @@ -4697,7 +4697,7 @@ msgstr "Видалити параметр" msgid "Delete Option %s" msgstr "Видалити параметр %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "Змінити параметр %s" @@ -4816,18 +4816,18 @@ msgstr "Маркер інÑтрументу" msgid "Legend/Estimated printing time" msgstr "Легенда / Приблизний Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "Більше" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4988,13 +4988,13 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" "Ви не можете завантажувати SLA-проект, що міÑтить об'єкт, Ñкий ÑкладаєтьÑÑ Ð· " "кількох чаÑтин" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "Увага!" @@ -5035,11 +5035,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Завантажити конфігурацію з INI/AMF/3MF/GCODE та об’єднати" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "ЕкÑпорт G-коду" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "ÐадіÑÐ»Ð°Ð½Ð½Ñ G-коду" @@ -5433,7 +5433,7 @@ msgstr "Показати / Сховати легенду та приблизни msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "Попередній переглÑд" @@ -5551,29 +5551,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "Параметри друку" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "Параметри матеріалу" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "Параметри філаменту" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "Параметри принтеру" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -6086,7 +6086,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -6195,9 +6195,9 @@ msgstr "G-код" msgid "Save zip file as:" msgstr "Зберегти zip-файл Ñк:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "ÐарізаннÑ" @@ -6466,7 +6466,7 @@ msgstr "ПОМИЛКÐ:" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "ЗÐСТЕРЕЖЕÐÐЯ:" @@ -6492,8 +6492,8 @@ msgstr "ЕкземплÑри" msgid "Instance %d" msgstr "ЕкземплÑÑ€ %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "Шари" @@ -6763,12 +6763,12 @@ msgstr "Під об’єктем" msgid "Around object" msgstr "Ðавколо об'єкта" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "ÐадіÑлати на принтер" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "Ðарізати зараз" @@ -6879,7 +6879,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´'єднати приÑтрій %s (%s)." -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "Ðовий проект" @@ -6887,7 +6887,7 @@ msgstr "Ðовий проект" msgid "Expand sidebar" msgstr "Розгорнути бічну панель" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6898,12 +6898,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6915,11 +6915,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6933,15 +6933,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6955,18 +6955,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "ВиÑвлено об'єкт, що ÑкладаєтьÑÑ Ð· кількох чаÑтин" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" @@ -6974,11 +6974,11 @@ msgstr "" "Цей файл не можна завантажити у проÑтому режимі. Ви хочете перейти в " "розширений режим?" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "ВиÑвлено розширені дані" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -6987,7 +6987,7 @@ msgstr "" "Ви не можете додати об’єкт(и) із %s через те, що один або деÑкі з них " "ÑкладаєтьÑÑ Ð· декількох чаÑтин" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -6997,7 +6997,7 @@ msgstr "" "ЗаміÑть того, щоб розглÑдати Ñ—Ñ… Ñк кілька об'єктів, чи потрібно розглÑнути\n" "ці файл Ñк єдиний об'єкт, що має декілька чаÑтин?" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -7005,139 +7005,139 @@ msgstr "" "Ваш об'єкт видавÑÑ Ð·Ð°Ð½Ð°Ð´Ñ‚Ð¾ великим, тому він автоматично зменшивÑÑ " "відповідно до вашої полотна друку." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "Об'єкт занадто великий?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "ЕкÑпорт STL-файлу:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "ЕкÑпортувати AMF-файл:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "Зберегти файл Ñк:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "ЕкÑпорт OBJ-файлу:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "Видалити об'єкт" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "Скинути проект" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "Розділити на об'єкти" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "Ðекоректні дані" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "Ðа даний Ñ‡Ð°Ñ Ð²Ð¸ÐºÐ¾Ð½ÑƒÑ”Ñ‚ÑŒÑÑ Ñ–Ð½ÑˆÐ¸Ð¹ екÑпорт." -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "Будь лаÑка, виберіть файл Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "Вибраний файл" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "Перезавантажити з:" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "Ðе вдаєтьÑÑ Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸:" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "Помилка під Ñ‡Ð°Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "Перезавантажити вÑе з диÑка" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "ІÑнують активні Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ нарізаних моделей:" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "згенеровані попередженнÑ" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "ПереглÑд у 3D-редакторі" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -7145,171 +7145,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "Завантажити проект" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "Імпорт об'єкту" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "Імпорт об'єктів" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "не міÑтить дійÑного G-коду." -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "Помилка під Ñ‡Ð°Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ GCODE-файлу" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "%s - ПеретÑгнути файл проекту" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "Відкрити Ñк проект" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "Імпорт тільки геометрії" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "Імпорт тільки конфігурації" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "Виберіть дію, Ñку потрібно заÑтоÑувати до файлу" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "ДіÑ" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "Ðе показувати знову" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "ОдночаÑно можна відкрити лише один файл .gcode." -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "ПеретÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ G-коду" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "Завантажити файл" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "Завантажити файли" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "УÑÑ– об’єкти буде видалено, продовжити?" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "Видалити вибрані об'єкти" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "Збільшити кількіÑть копій" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "Зменшити кількіÑть копій" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "Введіть кількіÑть копій об'єкта:" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "КількіÑть копій обраного об'єкта" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "Ð’Ñтановити кількіÑть копій на %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "Вирізати площиною" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "Зберегти G-код файл Ñк:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "ЕкÑпорт" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "Ð’Ñтавити з буферу обміну" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "Загальне" @@ -7452,7 +7452,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7466,7 +7466,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7477,7 +7477,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -8013,11 +8013,11 @@ msgstr "ÐадіÑÐ»Ð°Ð½Ð½Ñ G-коду на хоÑÑ‚ друку" msgid "Upload to Printer Host with the following filename:" msgstr "Завантажити на хоÑÑ‚ принтера з таким ім’Ñм файлу:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "За потреби викориÑтовуйте ÑкіÑні риÑки (/) Ñк роздільник каталогів." -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "Group" @@ -8026,18 +8026,18 @@ msgstr "Group" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8482,7 +8482,7 @@ msgstr "повне ім'Ñ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»ÑŽ" msgid "symbolic profile name" msgstr "Ñимволічне ім'Ñ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»ÑŽ" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "Шари та периметри" @@ -8566,11 +8566,11 @@ msgstr "ПерекриттÑ" msgid "Flow" msgstr "Потік" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "Інше" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "Параметри виводу" @@ -8582,11 +8582,11 @@ msgstr "ПоÑлідовне друкуваннÑ" msgid "Extruder clearance" msgstr "ОблаÑть Ð·Ñ–Ñ‚ÐºÐ½ÐµÐ½Ð½Ñ ÐµÐºÑтрудера" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "Вихідний файл" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "Скрипти поÑÑ‚-обробки" @@ -8594,19 +8594,20 @@ msgstr "Скрипти поÑÑ‚-обробки" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "Примітки" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "ЗалежноÑті" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "ЗалежноÑті профілю" @@ -8682,7 +8683,7 @@ msgid "Ramming settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð°Ð¼Ð¼Ñ–Ð½Ð³Ñƒ" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "КориÑтувацький G-код" @@ -8729,8 +8730,8 @@ msgstr "" msgid "Size and coordinates" msgstr "Розмір Ñ– координати" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "МожливоÑті" @@ -8799,11 +8800,11 @@ msgstr "Ðахил" msgid "Tilt time" msgstr "Ð§Ð°Ñ Ð½Ð°Ñ…Ð¸Ð»Ñƒ" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "Поправки" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "ЕкÑпозиціÑ" @@ -8971,42 +8972,46 @@ msgstr "Ви впевнені, що хочете %1% вибраний преÑе msgid "%1% Preset" msgstr "%1% преÑет" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "Ð’Ñтановити" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "Знайти" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "Тільки цілі Ñлова" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" "Механічних Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿ÑƒÐ±Ð»Ñ–ÐºÑƒÐ²Ð°Ñ‚Ð¸Ð¼ÑƒÑ‚ÑŒÑÑ Ð² G-код Ñ– викориÑтовуватимутьÑÑ Ð´Ð»Ñ " "розрахунку чаÑу друку." -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " @@ -9016,7 +9021,7 @@ msgstr "" "викориÑтовуватиÑÑ Ð´Ð»Ñ Ð¾Ñ†Ñ–Ð½ÐºÐ¸ чаÑу друку, що, отже, може бути неточним, " "оÑкільки принтер може заÑтоÑовувати інший набір механічних обмежень." -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." @@ -9024,12 +9029,12 @@ msgstr "" "Механічних Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð½Ðµ вÑтановлені, тому оцінка чаÑу друку може бути " "неточною." -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "ЗÐКРИТИЙ ЗÐМОК" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -9037,12 +9042,12 @@ msgstr "" "вказує на те, що параметри збігаютьÑÑ Ñ–Ð· ÑиÑтемними (або за замовчуваннÑм) " "значеннÑми Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи опцій" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "ВІДКРИТИЙ ЗÐМОК" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -9054,12 +9059,12 @@ msgstr "" "Клацніть, щоб Ñкинути вÑÑ– Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи опцій до ÑиÑтемних " "значень (або за замовчуваннÑм)." -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "БІЛРКУЛЯ" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -9067,12 +9072,12 @@ msgstr "" "Ð´Ð»Ñ Ð»Ñ–Ð²Ð¾Ñ— кнопки: вказує на неÑиÑтемний (або не за замовчуваннÑм) преÑет,\n" "Ð´Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¾Ñ— кнопки: вказує на те, що параметри не були змінені." -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "СТРІЛКРÐÐЗÐД" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -9084,7 +9089,7 @@ msgstr "" "Клацніть, щоб Ñкинути вÑÑ– параметри Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи параметрів до " "оÑтаннього збереженого преÑету." -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -9092,7 +9097,7 @@ msgstr "" "Значок \"ЗÐКРИТИЙ ЗÐМОК\" вказує на те, що параметри збігаютьÑÑ Ñ–Ð· " "ÑиÑтемними (або за замовчуваннÑм) значеннÑми Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи опцій" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -9105,12 +9110,12 @@ msgstr "" "Клацніть, щоб Ñкинути вÑÑ– Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи опцій до ÑиÑтемних " "значень (або за замовчуваннÑм)." -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" "Значок \"БІЛРКУЛЯ\" вказує на неÑиÑтемний (або не за замовчуваннÑм) преÑет." -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -9118,7 +9123,7 @@ msgstr "" "Значок \"БІЛРКУЛЯ\" вказує на те, що параметри збігаютьÑÑ Ñ‚Ð¸Ð¼Ð¸, Ñкі Ñ” в " "оÑтанньому збереженому преÑеті Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи опцій." -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -9130,7 +9135,7 @@ msgstr "" "Клацніть, щоб Ñкинути вÑÑ– параметри Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— групи параметрів до " "оÑтаннього збереженого преÑету." -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." @@ -9138,7 +9143,7 @@ msgstr "" "Значок \"ЗÐКРИТИЙ ЗÐМОК\" вказує на те, що Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð±Ñ–Ð³Ð°Ñ”Ñ‚ÑŒÑÑ Ñ–Ð· ÑиÑтемним " "(або за замовчуваннÑм)." -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -9148,7 +9153,7 @@ msgstr "" "дорівнює ÑиÑтемному (або за замовчуваннÑм) значенню.\n" "Клацніть, щоб Ñкинути поточне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð¾ ÑиÑтемного (або за замовчуваннÑм)." -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -9156,7 +9161,7 @@ msgstr "" "Значок \"БІЛРКУЛЯ\" вказує на те, що Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð±Ñ–Ð³Ð°Ñ”Ñ‚ÑŒÑÑ Ð· значеннÑм " "збереженого преÑету." -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -9166,31 +9171,31 @@ msgstr "" "дорівнює оÑтанньому збереженому преÑету.\n" "Клацніть, щоб Ñкинути поточне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð¾ оÑтаннього збереженого преÑету." -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "Матеріал" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "Головка підтримки" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "Стовп підтримки" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¾Ð¿Ð¾Ñ€Ð½Ð¸Ñ… Ñтовпів Ñ– Ñтиків" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "Ðвтоматичне згенеруваннÑ" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" @@ -9199,74 +9204,74 @@ msgstr "" "\"%1%\" вимкнено, оÑкільки в категорії \"%3%\" увімкнено \"%2%\".\n" "Щоб увімкнути \"%1%\", вимкніть \"%2%\"" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "ПіднÑÑ‚Ñ‚Ñ Ð¾Ð±â€™Ñ”ÐºÑ‚Ð°" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "Подушка навколо об’єкта" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "Ðевизначений" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "Ðезбережені зміни" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "ÐŸÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð¿Ñ€ÐµÑетів: незбережені зміни" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "Старе значеннÑ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "Ðове значеннÑ" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "ПеренеÑти" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "Відхилити" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "Зберегти" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -9274,11 +9279,11 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "PrusaSlicer запам'Ñтає ваші дії." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" @@ -9287,56 +9292,57 @@ msgstr "" "Відвідайте \"Преференції\" та вÑтановіть прапорець \"%1%\"\n" "щоб знову запитати про незбережені зміни." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" "ДеÑкі Ð¿Ð¾Ð»Ñ Ð·Ð°Ð½Ð°Ð´Ñ‚Ð¾ довгі, щоб вміÑтитиÑÑ Ñƒ чарунку. Клацніть правою кнопкою " "миші, щоб відкрити повний текÑÑ‚." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "УÑÑ– зміни параметрів буде відхилено." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "Зберегти вибрані параметри." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "ПеренеÑти вибрані параметри до нещодавно вибраного преÑету." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format msgid "Save the selected options to preset \"%1%\"." msgstr "Зберегти вибрані параметри до преÑету \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 #, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "ПеренеÑти вибрані параметри до нещодавно вибраного преÑету \"%1%\"." -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "ПреÑет \"%1%\" має такі незбережені зміни:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " @@ -9345,7 +9351,7 @@ msgstr "" "ПреÑет \"%1%\" неÑуміÑний з новим профілем принтера, Ñ– він має такі " "незбережені зміни:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " @@ -9354,50 +9360,50 @@ msgstr "" "ПреÑет \"%1%\" неÑуміÑний з новим профілем друку, Ñ– він має такі незбережені " "зміни:" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "КількіÑть екÑтрудерів" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -10218,27 +10224,27 @@ msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€Ð¸Ñ‚Ð¸" msgid "write calledback failed" msgstr "помилка запиÑу зворотного виклику" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "УÑÑ– об'єкти знаходÑтьÑÑ Ð¿Ð¾Ð·Ð° проÑторем друку." -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "Ðадані параметри ÑпричинÑть порожній друк." -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "ДеÑкі предмети розташовано занадто близько; ваш екÑтрудер зіткнетьÑÑ Ð· ними." -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "ДеÑкі предмети занадто виÑокі, Ñ– Ñ—Ñ… неможливо надрукувати без Ð·Ñ–Ñ‚ÐºÐ½ÐµÐ½Ð½Ñ " "екÑтрудера." -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " @@ -10248,7 +10254,7 @@ msgstr "" "видаліть уÑÑ–, крім оÑтаннього об'єкта, або ввімкніть поÑлідовний режим за " "допомогою \"повних об'єктів\" (\"complete_objects\")." -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." @@ -10256,7 +10262,7 @@ msgstr "" "Варіант Ñпіральної вази можна викориÑтовувати лише під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ одно-" "матеріальних об’єктів." -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -10264,7 +10270,7 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑ”Ñ‚ÑŒÑÑ Ð»Ð¸ÑˆÐµ в тому випадку, Ñкщо вÑÑ– екÑтрудери мають " "однаковий діаметр Ñопла Ñ– викориÑтовують філаменти одинакового діаметру." -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." @@ -10272,7 +10278,7 @@ msgstr "" "Ðаразі вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑ”Ñ‚ÑŒÑÑ Ð»Ð¸ÑˆÐµ Ð´Ð»Ñ G-кодів, ÑуміÑних з Marlin, " "RepRap/Sprinter, RepRapFirmware та Repetier ." -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -10280,18 +10286,18 @@ msgstr "" "Ðаразі вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑ” лише відноÑну адреÑацію екÑтрудерів " "(use_relative_e_distances = 1)." -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "Ðаразі Ð·Ð°Ð¿Ð¾Ð±Ñ–Ð³Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ÑÐ¾Ñ‡ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ підтримуєтьÑÑ Ð· увімкненою вежею " "витираннÑ." -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Ðаразі вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð½Ðµ підтримує об'ємне E (use_volumetric_e = 0)." -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." @@ -10299,7 +10305,7 @@ msgstr "" "Ðаразі вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð½Ðµ підтримуєтьÑÑ Ð´Ð»Ñ Ð±Ð°Ð³Ð°Ñ‚Ð¾-матеріального поÑлідовного " "друку." -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -10307,7 +10313,7 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñ… об’єктів підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ у випадку, коли вони " "мають однакову виÑоту шару" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -10315,7 +10321,7 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñ… об’єктів підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ у випадку, коли вони " "надруковані на рівній кількоÑті шарів плоту" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -10323,7 +10329,7 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñ… об’єктів підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ у випадку, коли вони " "надруковані з однаковою відÑтанню support_material_contact_distance" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -10331,7 +10337,7 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñ… об’єктів підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ у випадку, коли вони " "нарізані однаково." -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -10339,24 +10345,24 @@ msgstr "" "Вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑ”Ñ‚ÑŒÑÑ Ð»Ð¸ÑˆÐµ в тому випадку, Ñкщо вÑÑ– об’єкти мають " "однакову виÑоту змінного шару" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Одному або декільком об’єктам було призначено екÑтрудер, Ñкого принтер не " "має." -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% мм Ñ” занадто низьким Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ на виÑоті шару %3% мм" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "%1% = %2% мм Ñ” надмірно Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ з діаметром Ñопла %3% мм" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -10368,7 +10374,7 @@ msgstr "" "0 або support_material_interface_extruder == 0), уÑÑ– Ñопла повинні мати " "однаковий діаметр." -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -10376,7 +10382,7 @@ msgstr "" "Ð”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, щоб вежа Ð²Ð¸Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð¿Ñ€Ð°Ñ†ÑŽÐ²Ð°Ð»Ð° з розчинними підтримками, шари " "підтримки повинні бути Ñинхронізовані з шарами об'єкта." -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -10388,27 +10394,46 @@ msgstr "" "Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ support_material_extruder Ñ– support_material_interface_extruder " "повинні бути вÑтановлені на 0)." -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "ВиÑота першого шару не може перевищувати діаметр Ñопла" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "ВиÑота шару не може перевищувати діаметр Ñопла" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "Шари наповненнÑ" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "ЕкÑÐ¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ G-коду" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "Ð“ÐµÐ½ÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ G-коду" diff --git a/resources/localization/zh_CN/PrusaSlicer_zh_CN.po b/resources/localization/zh_CN/PrusaSlicer_zh_CN.po index bd796eca92..d702c6479b 100644 --- a/resources/localization/zh_CN/PrusaSlicer_zh_CN.po +++ b/resources/localization/zh_CN/PrusaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2019-09-06 16:24+0800\n" "Last-Translator: Jiang Yue \n" "Language-Team: \n" @@ -552,7 +552,7 @@ msgstr "激活" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "打å°" @@ -560,17 +560,17 @@ msgstr "打å°" msgid "filaments" msgstr "耗æ" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA 打å°" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA ææ–™" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "æ‰“å°æœº" @@ -629,7 +629,7 @@ msgstr "标准" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "所有" @@ -715,7 +715,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "ä¸" @@ -799,7 +799,7 @@ msgid "" msgstr "此外,在应用更新之å‰ï¼Œå°†åˆ›å»ºæ•´ä¸ªé…置的备份快照。" #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "" @@ -1085,7 +1085,7 @@ msgstr "&结æŸ" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "å–æ¶ˆ" @@ -1149,7 +1149,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1592,8 +1592,8 @@ msgid "parameter name" msgstr "傿•°åç§°" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "N/A" @@ -1794,7 +1794,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "加入" @@ -1996,7 +1996,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "选项" @@ -2263,7 +2263,7 @@ msgid "Add..." msgstr "添加..." #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "全部删除" @@ -3143,25 +3143,25 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " "not be affected." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3173,7 +3173,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3182,19 +3182,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3204,53 +3204,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3263,198 +3263,198 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "é‡é€ " -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "加载当å‰é¢„设" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "加载模å¼è§†å›¾" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "选择一个文件 (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "选择一个或多个文件 (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "更改应用程åºè¯­è¨€" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "选择语言" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "语言" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "修改" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "è¿è¡Œ %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "检查/激活é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "ä¿å­˜é…ç½® &å¿«ç…§" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "æ•获é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&首选项" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "应用程åºé¦–选项" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "简å•" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "简å•ç•Œé¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "é«˜çº§ç•Œé¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "专家" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "ä¸“å®¶ç•Œé¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "模å¼" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "%s 视图模å¼" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "将固件镜åƒä¸Šä¼ åˆ°åŸºäºŽ arduino çš„æ‰“å°æœº" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "å¿«ç…§åç§°" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "语言选择" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." @@ -3462,93 +3462,93 @@ msgstr "" "切æ¢è¯­è¨€å°†è§¦å‘应用程åºé‡æ–°å¯åŠ¨ã€‚\n" "您将丢失未ä¿å­˜çš„内容。" -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "是å¦ç»§ç»­ï¼Ÿ" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&é…ç½®" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "无法使用 SLA 技术打å°å¤šéƒ¨åˆ†å¯¹è±¡ã€‚" -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "è¯·åœ¨é¢„è®¾æ›´æ”¹ä¹‹å‰æ£€æŸ¥å¯¹è±¡åˆ—表。" -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "裙边" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3664,7 +3664,7 @@ msgid "Advanced" msgstr "高级" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3678,8 +3678,8 @@ msgid "Supports" msgstr "支æŒ" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3689,8 +3689,8 @@ msgstr "支æŒ" msgid "Pad" msgstr "åž«" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3793,7 +3793,7 @@ msgstr "导出为 STL" msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3819,19 +3819,19 @@ msgstr "缩放打å°ä½“积" msgid "Scale the selected object to fit the print volume" msgstr "缩放所选对象以适åˆå¯æ‰“å°ä½“积" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4085,7 +4085,7 @@ msgstr "" msgid "Loading" msgstr "载入中" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4507,7 +4507,7 @@ msgstr "åˆ é™¤å‚æ•°" msgid "Delete Option %s" msgstr "删除选项 %s" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "更改选项 %s" @@ -4626,18 +4626,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4797,11 +4797,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "注æ„ï¼" @@ -4842,11 +4842,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "导出 G-code" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "å‘é€ G 代ç " @@ -5227,7 +5227,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "预览" @@ -5339,29 +5339,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "打å°è®¾ç½®" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "ææ–™è®¾ç½®" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "耗æä¸è®¾ç½®" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "æ‰“å°æœºè®¾ç½®" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5871,7 +5871,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -5980,9 +5980,9 @@ msgstr "G-code" msgid "Save zip file as:" msgstr "å°† zip 文件å¦å­˜ä¸ºï¼š" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "切片" @@ -6238,7 +6238,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6264,8 +6264,8 @@ msgstr "实例" msgid "Instance %d" msgstr "实例 %d" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "图层" @@ -6523,12 +6523,12 @@ msgstr "对象底部" msgid "Around object" msgstr "对象周围" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "å‘é€åˆ°æ‰“å°æœº" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "ç«‹å³åˆ‡ç‰‡" @@ -6633,7 +6633,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "新项目" @@ -6641,7 +6641,7 @@ msgstr "新项目" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6650,12 +6650,12 @@ msgid_plural "" "PrusaSlicer" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6665,11 +6665,11 @@ msgid_plural "" "These objects have been removed from the model" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6681,15 +6681,15 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6701,180 +6701,180 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "检测到多部分对象" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "检测到高级数æ®" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "ä¸èƒ½ä»Ž %s 中添加对象, 因为其中一个或一些有多个部分" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "对象看起æ¥å¤ªå¤§ï¼Œå› æ­¤ä¼šè‡ªåŠ¨ç¼©å°ï¼Œä»¥é€‚应构建æ¿ã€‚" -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "对象太大?" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "导出 STL 文件:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "导出 AMF 文件:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "将文件å¦å­˜ä¸ºï¼š" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "导出 OBJ 文件:" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "删除对象" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "é‡ç½®é¡¹ç›®" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "拆分为对象" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "无效数æ®" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "当剿­£åœ¨è¿è¡Œå¦ä¸€ä¸ªå¯¼å‡ºä½œä¸šã€‚" -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "3D 编辑器视图" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6882,171 +6882,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "加载项目" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "导入对象" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "导入对象" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "加载文件" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "加载文件" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "删除选定对象" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "增加实例" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "å‡å°‘实例" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "将副本数设置为 %d" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "按平é¢åˆ‡å‰²" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "å°† G-code 文件å¦å­˜ä¸º:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "导出" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "从剪贴æ¿ç²˜è´´" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "常规" @@ -7172,7 +7172,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7186,7 +7186,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7197,7 +7197,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7704,11 +7704,11 @@ msgstr "呿‰“å°æœºä¸»æœºå‘é€ G-Code" msgid "Upload to Printer Host with the following filename:" msgstr "使用以下文件åä¸Šä¼ åˆ°æ‰“å°æœºä¸»æœºï¼š" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "如果需è¦ï¼Œè¯·ä½¿ç”¨æ­£å‘æ–œæ  ï¼ˆ / ) 作为目录分隔符。" -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7717,18 +7717,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "ID" @@ -8166,7 +8166,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "层和轮廓" @@ -8250,11 +8250,11 @@ msgstr "交å " msgid "Flow" msgstr "æµé‡" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "å…¶ä»–" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "输出选项" @@ -8266,11 +8266,11 @@ msgstr "é¡ºåºæ‰“å°" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "输出文件" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "åŽå¤„ç†è„šæœ¬" @@ -8278,19 +8278,20 @@ msgstr "åŽå¤„ç†è„šæœ¬" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "备注" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "ä¾èµ–" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "é…置文件ä¾èµ–" @@ -8364,7 +8365,7 @@ msgid "Ramming settings" msgstr "冲击设置" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "自定义 G-code" @@ -8402,8 +8403,8 @@ msgstr "" msgid "Size and coordinates" msgstr "大å°å’Œåæ ‡" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "æƒé™" @@ -8471,11 +8472,11 @@ msgstr "倾斜" msgid "Tilt time" msgstr "倾斜时间" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "修正" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "æ›å…‰" @@ -8630,69 +8631,73 @@ msgstr "是å¦ç¡®å®žè¦å°†æ‰€é€‰é¢„设 %1%?" msgid "%1% Preset" msgstr "%1% 预设" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "设置" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "查找" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "æ•´å­—" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "é”定é”" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "指示设置与当å‰é€‰é¡¹ç»„的系统(或默认值)值相åŒ" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "è§£é”é”" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8702,12 +8707,12 @@ msgstr "" "指示æŸäº›è®¾ç½®å·²æ›´æ”¹,并且ä¸ç­‰äºŽå½“å‰é€‰é¡¹ç»„的系统(或默认值)值。\n" "å•击\"é”定é”定\"图标å¯å°†å½“å‰é€‰é¡¹ç»„的所有设置é‡ç½®ä¸ºç³»ç»Ÿ(或默认值)值。" -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "白色å­å¼¹" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." @@ -8715,12 +8720,12 @@ msgstr "" "对于左侧按钮:指示éžç³»ç»Ÿ(或éžé»˜è®¤)预设,\n" "对于å³ä¾§æŒ‰é’®:指示设置尚未修改。" -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "åŽç®­å¤´" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8730,13 +8735,13 @@ msgstr "" "指示设置已更改,ä¸ç­‰äºŽå½“å‰é€‰é¡¹ç»„的最åŽä¸€ä¸ªä¿å­˜é¢„设。\n" "å•击\"åŽé€€ç®­å¤´\"图标å¯å°†å½“å‰é€‰é¡¹ç»„的所有设置é‡ç½®ä¸ºä¸Šæ¬¡ä¿å­˜çš„预设。" -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "é”定é”定图标表示设置与当å‰é€‰é¡¹ç»„的系统(或默认值)值相åŒ" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8746,17 +8751,17 @@ msgstr "" "é”å®šçš„é” å›¾æ ‡æŒ‡ç¤ºæŸäº›è®¾ç½®å·²æ›´æ”¹,并且ä¸ç­‰äºŽå½“å‰é€‰é¡¹ç»„的系统(或默认值)值。\n" "å•击此处å¯å°†å½“å‰é€‰é¡¹ç»„的所有设置é‡ç½®ä¸ºç³»ç»Ÿ(或默认值)值。" -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "白色 BULLET 图标表示éžç³»ç»Ÿ(或éžé»˜è®¤)预设。" -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "白色å­å¼¹å›¾æ ‡è¡¨ç¤ºè®¾ç½®ä¸Žå½“å‰é€‰é¡¹ç»„上次ä¿å­˜çš„预设中的设置相åŒã€‚" -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8766,13 +8771,13 @@ msgstr "" "åŽé€€ç®­å¤´å›¾æ ‡è¡¨ç¤ºè®¾ç½®å·²æ›´æ”¹ï¼Œä¸ç­‰äºŽå½“å‰é€‰é¡¹ç»„的最åŽä¿å­˜é¢„设。\n" "å•击此处å¯å°†å½“å‰é€‰é¡¹ç»„的所有设置é‡ç½®ä¸ºä¸Šæ¬¡ä¿å­˜çš„预设。" -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "é”定é”定图标表示该值与系统(或默认值)值相åŒã€‚" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -8781,13 +8786,13 @@ msgstr "" "é”å®šçš„é” å›¾æ ‡æŒ‡ç¤ºè¯¥å€¼å·²æ›´æ”¹,ä¸ç­‰äºŽç³»ç»Ÿ(或默认值)值。\n" "å•击以将当å‰å€¼é‡ç½®ä¸ºç³»ç»Ÿ(或默认值)值。" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "白色å­å¼¹å›¾æ ‡è¡¨ç¤ºè¯¥å€¼ä¸Žä¸Šæ¬¡ä¿å­˜çš„预设中的值相åŒã€‚" -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -8796,105 +8801,105 @@ msgstr "" "åŽé€€ç®­å¤´å›¾æ ‡æŒ‡ç¤ºè¯¥å€¼å·²æ›´æ”¹ï¼Œä¸ç­‰äºŽä¸Šæ¬¡ä¿å­˜çš„预设。\n" "å•击以将当å‰å€¼é‡ç½®ä¸ºä¸Šæ¬¡ä¿å­˜çš„预设。" -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "ææ–™" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "支撑头" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "支撑支柱" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "支撑æ†å’ŒæŽ¥å¤´çš„连接" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "自动生æˆ" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "对象高程" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "对象周围填充" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "未ä¿å­˜çš„修改" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "ä¿å­˜" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -8902,120 +8907,121 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9799,83 +9805,83 @@ msgstr "验è¯å¤±è´¥" msgid "write calledback failed" msgstr "写入回å«å¤±è´¥" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "所有对象都在打å°èŒƒå›´ä¹‹å¤–。" -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "å½“å‰æä¾›çš„è®¾ç½®å°†å¯¼è‡´ç©ºæ‰“å°ã€‚" -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "有些对象太近; 你的挤出机会和他们相撞。" -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "æŸäº›å¯¹è±¡å¤ªé«˜, 无法在挤出机ä¸å†²çªçš„æƒ…况下打å°ã€‚" -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "螺旋花瓶选项åªèƒ½åœ¨æ‰“å°å•个æè´¨å¯¹è±¡æ—¶ä½¿ç”¨ã€‚" -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" "仅当所有挤出机具有相åŒçš„喷嘴直径并使用相åŒç›´å¾„的耗æä¸æ—¶,æ‰æ”¯æŒæ“¦æ–™å¡”。" -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "擦料塔目å‰ä»…支æŒç›¸å¯¹æŒ¤å‡ºæœºå¯»å€ (use_relative_e_distances=1)。" -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "å¯ç”¨æ“¦æ–™å¡”时,当å‰ä¸æ”¯æŒ Ooze 预防。" -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "仅当多个对象具有相等的图层高度时,æ‰æ”¯æŒæ“¦æ–™å¡”" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" msgstr "åªæœ‰åœ¨ç›¸åŒæ•°é‡çš„基座层上打å°çš„对象时, æ‰æ”¯æŒæ“¦æ–™å¡”" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -9883,34 +9889,34 @@ msgstr "" "åªæœ‰åœ¨ä½¿ç”¨ç›¸åŒçš„support_material_contact_distanceï¼ˆæ”¯æ’‘ææ–™è·ç¦»ï¼‰æ‰“å°å¤šä¸ªå¯¹è±¡" "æ—¶, æ‰æ”¯æŒæ“¦æ–™å¡”" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "åªæœ‰åœ¨å¤šä¸ªå¯¹è±¡è¢«å¹³å‡åˆ‡å‰²çš„æƒ…况下, æ‰æ”¯æŒæ“¦æ–™å¡”。" -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "为一个或多个对象分é…äº†æ‰“å°æœºæ²¡æœ‰çš„æŒ¤å‡ºæœºã€‚" -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm 太低,在图层高度 %3% mm 时无法打å°" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "è¿‡é‡ %1%=%2% mm 坿‰“å°ï¼Œä½¿ç”¨å–·å˜´ç›´å¾„ %3% mm" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -9921,13 +9927,13 @@ msgstr "" "(support_material_extruder == 0 或 support_material_interface_extruder == 0)" "æ‰“å°æ”¯æ’‘物, 则所有喷嘴的直径必须相åŒã€‚" -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." msgstr "è¦ä½¿æ“¦æ–™å¡”ä¸Žå¯æº¶æ€§æ”¯æ’‘é…åˆä½¿ç”¨, 支撑层需è¦ä¸Žå¯¹è±¡å›¾å±‚åŒæ­¥ã€‚" -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -9938,27 +9944,46 @@ msgstr "" "溶支撑于的支架。(support_material_extruder å’Œ" "support_material_interface_extruder 都需è¦è®¾ç½®ä¸º 0)。" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "第一层高度ä¸èƒ½å¤§äºŽå–·å˜´ç›´å¾„" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "层高度ä¸èƒ½å¤§äºŽå–·å˜´ç›´å¾„" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "填充图层" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "导出 G 代ç " -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "ç”Ÿæˆ G 代ç " diff --git a/resources/localization/zh_TW/PrusaSlicer_zh_TW.po b/resources/localization/zh_TW/PrusaSlicer_zh_TW.po index 93e02f3fe3..662aae16f2 100644 --- a/resources/localization/zh_TW/PrusaSlicer_zh_TW.po +++ b/resources/localization/zh_TW/PrusaSlicer_zh_TW.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-25 17:28+0100\n" +"POT-Creation-Date: 2022-02-09 09:04+0100\n" "PO-Revision-Date: 2019-05-22 10:35+0800\n" "Last-Translator: Jiang Yue , patched traditional " "chinese by Cheng-Hsien Ho \n" @@ -550,7 +550,7 @@ msgstr "" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1338 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:64 src/libslic3r/Preset.cpp:1339 msgid "print" msgstr "列å°" @@ -558,17 +558,17 @@ msgstr "列å°" msgid "filaments" msgstr "耗æ" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1340 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68 src/libslic3r/Preset.cpp:1341 msgid "SLA print" msgstr "SLA 列å°" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69 #: src/slic3r/GUI/ConfigWizard.cpp:755 src/slic3r/GUI/GUI.cpp:340 -#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1341 +#: src/slic3r/GUI/Plater.cpp:820 src/libslic3r/Preset.cpp:1342 msgid "SLA material" msgstr "SLA ææ–™" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1342 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71 src/libslic3r/Preset.cpp:1343 msgid "printer" msgstr "å°è¡¨æ©Ÿ" @@ -627,7 +627,7 @@ msgstr "標準" #: src/slic3r/GUI/ConfigWizard.cpp:331 src/slic3r/GUI/ConfigWizard.cpp:651 #: src/slic3r/GUI/Preferences.cpp:434 src/slic3r/GUI/Tab.cpp:3816 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1153 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1154 msgid "All" msgstr "所有" @@ -712,7 +712,7 @@ msgstr "" msgid "All installed printers are compatible with the selected %1%." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1339 +#: src/slic3r/GUI/ConfigWizard.cpp:755 src/libslic3r/Preset.cpp:1340 msgid "filament" msgstr "耗æ" @@ -791,7 +791,7 @@ msgid "" msgstr "此外, 在應用更新之å‰, 將創建整個é…置的備份快照。" #: src/slic3r/GUI/ConfigWizard.cpp:1243 src/slic3r/GUI/GUI_Factories.cpp:726 -#: src/slic3r/GUI/Plater.cpp:3548 +#: src/slic3r/GUI/Plater.cpp:3560 msgid "Reload from disk" msgstr "" @@ -1077,7 +1077,7 @@ msgstr "&çµæŸ" #: src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp:58 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 #: src/slic3r/GUI/SendSystemInfoDialog.cpp:93 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:878 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:879 msgid "Cancel" msgstr "å–æ¶ˆ" @@ -1141,7 +1141,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/DesktopIntegrationDialog.cpp:459 -#: src/slic3r/GUI/GUI_App.cpp:2223 +#: src/slic3r/GUI/GUI_App.cpp:2243 msgid "Desktop Integration" msgstr "" @@ -1584,8 +1584,8 @@ msgid "parameter name" msgstr "åƒæ•¸å稱" #: src/slic3r/GUI/Field.cpp:204 src/slic3r/GUI/OptionsGroup.cpp:827 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1066 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1078 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1067 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1079 msgid "N/A" msgstr "" @@ -1783,7 +1783,7 @@ msgstr "" msgid "Add selected shape(s) to the bed" msgstr "" -#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4100 +#: src/slic3r/GUI/GalleryDialog.cpp:117 src/slic3r/GUI/Tab.cpp:4135 msgid "Add" msgstr "加入" @@ -1985,7 +1985,7 @@ msgid "Wipe" msgstr "" #: src/slic3r/GUI/GCodeViewer.cpp:3667 src/slic3r/GUI/GUI_Preview.cpp:257 -#: src/slic3r/GUI/GUI_Preview.cpp:272 src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/GUI_Preview.cpp:272 msgid "Options" msgstr "é¸é …" @@ -2252,7 +2252,7 @@ msgid "Add..." msgstr "" #: src/slic3r/GUI/GLCanvas3D.cpp:4489 src/slic3r/GUI/KBShortcutsDialog.cpp:96 -#: src/slic3r/GUI/Plater.cpp:5463 src/slic3r/GUI/Tab.cpp:4106 +#: src/slic3r/GUI/Plater.cpp:5476 src/slic3r/GUI/Tab.cpp:4141 msgid "Delete all" msgstr "" @@ -3128,25 +3128,25 @@ msgstr "" msgid "Internal error: %1%" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:901 src/slic3r/GUI/GUI_App.cpp:999 +#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " "not be affected." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:907 src/slic3r/GUI/GUI_App.cpp:1005 +#: src/slic3r/GUI/GUI_App.cpp:913 src/slic3r/GUI/GUI_App.cpp:1011 msgid "" "Error parsing PrusaGCodeViewer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:954 +#: src/slic3r/GUI/GUI_App.cpp:960 #, boost-format msgid "You are opening %1% version %2%." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:957 +#: src/slic3r/GUI/GUI_App.cpp:963 #, boost-format msgid "" "The active configuration was created by %1% %2%,\n" @@ -3158,7 +3158,7 @@ msgid "" "configuration." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:965 +#: src/slic3r/GUI/GUI_App.cpp:971 #, boost-format msgid "" "An existing configuration was found in %3%\n" @@ -3167,19 +3167,19 @@ msgid "" "Shall this configuration be imported?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:973 +#: src/slic3r/GUI/GUI_App.cpp:979 msgid "Import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:974 +#: src/slic3r/GUI/GUI_App.cpp:980 msgid "Don't import" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:982 +#: src/slic3r/GUI/GUI_App.cpp:988 msgid "Continue and import newer configuration?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1043 +#: src/slic3r/GUI/GUI_App.cpp:1051 msgid "" "You are running a 32 bit build of PrusaSlicer on 64-bit Windows.\n" "32 bit build of PrusaSlicer will likely not be able to utilize all the RAM " @@ -3189,53 +3189,53 @@ msgid "" "Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1126 +#: src/slic3r/GUI/GUI_App.cpp:1134 #, c-format, boost-format msgid "" "%s\n" "Do you want to continue?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1128 src/slic3r/GUI/GUI_App.cpp:3070 -#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:888 +#: src/slic3r/GUI/GUI_App.cpp:1136 src/slic3r/GUI/GUI_App.cpp:3094 +#: src/slic3r/GUI/Plater.cpp:1728 src/slic3r/GUI/UnsavedChangesDialog.cpp:889 msgid "Remember my choice" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1170 +#: src/slic3r/GUI/GUI_App.cpp:1178 msgid "Loading configuration" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1203 +#: src/slic3r/GUI/GUI_App.cpp:1209 #, boost-format msgid "New release version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1204 +#: src/slic3r/GUI/GUI_App.cpp:1210 msgid "See Download page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1218 +#: src/slic3r/GUI/GUI_App.cpp:1224 #, boost-format msgid "New prerelease version %1% is available." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1219 +#: src/slic3r/GUI/GUI_App.cpp:1225 msgid "See Releases page." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1256 +#: src/slic3r/GUI/GUI_App.cpp:1262 msgid "Preparing settings tabs" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1327 src/slic3r/GUI/Preferences.cpp:287 +#: src/slic3r/GUI/GUI_App.cpp:1334 src/slic3r/GUI/Preferences.cpp:287 msgid "Restore window position on start" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1329 +#: src/slic3r/GUI/GUI_App.cpp:1336 msgid "PrusaSlicer started after a crash" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1330 +#: src/slic3r/GUI/GUI_App.cpp:1337 #, boost-format msgid "" "PrusaSlicer crashed last time when attempting to set window position.\n" @@ -3248,290 +3248,290 @@ msgid "" "Otherwise, the application will most likely crash again next time." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1342 +#: src/slic3r/GUI/GUI_App.cpp:1349 #, boost-format msgid "Disable \"%1%\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1343 +#: src/slic3r/GUI/GUI_App.cpp:1350 #, boost-format msgid "Leave \"%1%\" enabled" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1657 +#: src/slic3r/GUI/GUI_App.cpp:1677 msgid "" "You have the following presets with saved options for \"Print Host upload\"" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1661 +#: src/slic3r/GUI/GUI_App.cpp:1681 msgid "" "But since this version of PrusaSlicer we don't show this information in " "Printer Settings anymore.\n" "Settings will be available in physical printers settings." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1663 +#: src/slic3r/GUI/GUI_App.cpp:1683 msgid "" "By default new Printer devices will be named as \"Printer N\" during its " "creation.\n" "Note: This name can be changed later from the physical printers settings" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1667 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 +#: src/slic3r/GUI/GUI_App.cpp:1687 src/slic3r/GUI/PhysicalPrinterDialog.cpp:722 msgid "Information" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1680 src/slic3r/GUI/GUI_App.cpp:1691 +#: src/slic3r/GUI/GUI_App.cpp:1700 src/slic3r/GUI/GUI_App.cpp:1711 msgid "Recreating" msgstr "å†é€ " -#: src/slic3r/GUI/GUI_App.cpp:1694 +#: src/slic3r/GUI/GUI_App.cpp:1714 msgid "Loading of current presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1699 +#: src/slic3r/GUI/GUI_App.cpp:1719 msgid "Loading of a mode view" msgstr "載入模å¼è¦–圖" -#: src/slic3r/GUI/GUI_App.cpp:1837 +#: src/slic3r/GUI/GUI_App.cpp:1857 msgid "Choose one file (3MF/AMF):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1849 +#: src/slic3r/GUI/GUI_App.cpp:1869 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "鏿“‡ä¸€å€‹æˆ–多個文件 (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/GUI_App.cpp:1861 +#: src/slic3r/GUI/GUI_App.cpp:1881 msgid "Choose one file (GCODE/.GCO/.G/.ngc/NGC):" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1872 +#: src/slic3r/GUI/GUI_App.cpp:1892 msgid "Changing of an application language" msgstr "更改應用程åºèªžè¨€" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Select the language" msgstr "鏿“‡èªžè¨€" -#: src/slic3r/GUI/GUI_App.cpp:2011 +#: src/slic3r/GUI/GUI_App.cpp:2031 msgid "Language" msgstr "語言" -#: src/slic3r/GUI/GUI_App.cpp:2160 +#: src/slic3r/GUI/GUI_App.cpp:2180 msgid "modified" msgstr "修改" -#: src/slic3r/GUI/GUI_App.cpp:2214 +#: src/slic3r/GUI/GUI_App.cpp:2234 #, c-format, boost-format msgid "Run %s" msgstr "é‹è¡Œ %s" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "&Configuration Snapshots" msgstr "&é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2218 +#: src/slic3r/GUI/GUI_App.cpp:2238 msgid "Inspect / activate configuration snapshots" msgstr "檢查/啟用é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Take Configuration &Snapshot" msgstr "ç²å–é…置和快照" -#: src/slic3r/GUI/GUI_App.cpp:2219 +#: src/slic3r/GUI/GUI_App.cpp:2239 msgid "Capture a configuration snapshot" msgstr "æ“·å–é…置快照" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for Configuration Updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2220 +#: src/slic3r/GUI/GUI_App.cpp:2240 msgid "Check for configuration updates" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2227 +#: src/slic3r/GUI/GUI_App.cpp:2247 msgid "&Preferences" msgstr "&首é¸é …" -#: src/slic3r/GUI/GUI_App.cpp:2233 +#: src/slic3r/GUI/GUI_App.cpp:2253 msgid "Application preferences" msgstr "應用程åºé¦–é¸é …" -#: src/slic3r/GUI/GUI_App.cpp:2238 src/slic3r/GUI/wxExtensions.cpp:708 +#: src/slic3r/GUI/GUI_App.cpp:2258 src/slic3r/GUI/wxExtensions.cpp:708 msgid "Simple" msgstr "ç°¡å–®" -#: src/slic3r/GUI/GUI_App.cpp:2238 +#: src/slic3r/GUI/GUI_App.cpp:2258 msgid "Simple View Mode" msgstr "ç°¡å–®ä»‹é¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2240 src/slic3r/GUI/wxExtensions.cpp:710 +#: src/slic3r/GUI/GUI_App.cpp:2260 src/slic3r/GUI/wxExtensions.cpp:710 msgctxt "Mode" msgid "Advanced" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2240 +#: src/slic3r/GUI/GUI_App.cpp:2260 msgid "Advanced View Mode" msgstr "é«˜ç´šä»‹é¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2241 src/slic3r/GUI/wxExtensions.cpp:711 +#: src/slic3r/GUI/GUI_App.cpp:2261 src/slic3r/GUI/wxExtensions.cpp:711 msgid "Expert" msgstr "專家" -#: src/slic3r/GUI/GUI_App.cpp:2241 +#: src/slic3r/GUI/GUI_App.cpp:2261 msgid "Expert View Mode" msgstr "å°ˆå®¶ä»‹é¢æ¨¡å¼" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 msgid "Mode" msgstr "模å¼" -#: src/slic3r/GUI/GUI_App.cpp:2246 +#: src/slic3r/GUI/GUI_App.cpp:2266 #, c-format, boost-format msgid "%s View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2249 +#: src/slic3r/GUI/GUI_App.cpp:2269 msgid "&Language" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Flash Printer &Firmware" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2252 +#: src/slic3r/GUI/GUI_App.cpp:2272 msgid "Upload a firmware image into an Arduino based printer" msgstr "將韌體é¡åƒæª”上傳到基於 arduino çš„å°è¡¨æ©Ÿ" -#: src/slic3r/GUI/GUI_App.cpp:2272 +#: src/slic3r/GUI/GUI_App.cpp:2292 msgid "Taking a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2273 +#: src/slic3r/GUI/GUI_App.cpp:2293 msgid "" "Some presets are modified and the unsaved changes will not be captured by " "the configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2274 +#: src/slic3r/GUI/GUI_App.cpp:2294 msgid "Snapshot name" msgstr "å¿«ç…§å稱" -#: src/slic3r/GUI/GUI_App.cpp:2290 +#: src/slic3r/GUI/GUI_App.cpp:2310 msgid "Loading a configuration snapshot" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2299 +#: src/slic3r/GUI/GUI_App.cpp:2319 #, boost-format msgid "Continue to activate a configuration snapshot %1%?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2313 +#: src/slic3r/GUI/GUI_App.cpp:2333 msgid "Failed to activate configuration snapshot." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2332 +#: src/slic3r/GUI/GUI_App.cpp:2352 msgid "Restart application" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2366 +#: src/slic3r/GUI/GUI_App.cpp:2386 msgid "Language selection" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2369 +#: src/slic3r/GUI/GUI_App.cpp:2389 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2371 src/slic3r/GUI/Preferences.cpp:582 +#: src/slic3r/GUI/GUI_App.cpp:2391 src/slic3r/GUI/Preferences.cpp:582 msgid "Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2398 +#: src/slic3r/GUI/GUI_App.cpp:2418 msgid "&Configuration" msgstr "&é…ç½®" -#: src/slic3r/GUI/GUI_App.cpp:2515 src/slic3r/GUI/GUI_App.cpp:2576 +#: src/slic3r/GUI/GUI_App.cpp:2535 src/slic3r/GUI/GUI_App.cpp:2596 msgid "The preset modifications are successfully saved" msgid_plural "The presets modifications are successfully saved" msgstr[0] "" -#: src/slic3r/GUI/GUI_App.cpp:2579 +#: src/slic3r/GUI/GUI_App.cpp:2599 msgid "For new project all modifications will be reseted" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2617 +#: src/slic3r/GUI/GUI_App.cpp:2637 msgid "Loading a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Project is loading" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2620 +#: src/slic3r/GUI/GUI_App.cpp:2640 msgid "Opening new project while some presets are unsaved." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "The uploads are still ongoing" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2639 +#: src/slic3r/GUI/GUI_App.cpp:2659 msgid "Stop them and continue anyway?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2643 +#: src/slic3r/GUI/GUI_App.cpp:2663 msgid "Ongoing uploads" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2849 +#: src/slic3r/GUI/GUI_App.cpp:2869 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "無法使用 SLA 技術列å°å¤šéƒ¨åˆ†å°è±¡ã€‚" -#: src/slic3r/GUI/GUI_App.cpp:2850 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 -#: src/slic3r/GUI/Plater.cpp:2427 +#: src/slic3r/GUI/GUI_App.cpp:2870 src/slic3r/GUI/Jobs/SLAImportJob.cpp:224 +#: src/slic3r/GUI/Plater.cpp:2439 msgid "Please check your object list before preset changing." msgstr "在é è¨­æ›´æ”¹ä¹‹å‰, 請檢查å°è±¡åˆ—表。" -#: src/slic3r/GUI/GUI_App.cpp:2874 +#: src/slic3r/GUI/GUI_App.cpp:2894 msgid "Configuration is editing from ConfigWizard" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:2899 +#: src/slic3r/GUI/GUI_App.cpp:2919 msgid "Select a gcode file:" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "Open hyperlink in default browser?" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3069 src/slic3r/GUI/GUI_App.cpp:3092 +#: src/slic3r/GUI/GUI_App.cpp:3093 src/slic3r/GUI/GUI_App.cpp:3116 msgid "PrusaSlicer: Open hyperlink" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3074 src/slic3r/GUI/Preferences.cpp:382 +#: src/slic3r/GUI/GUI_App.cpp:3098 src/slic3r/GUI/Preferences.cpp:382 msgid "Suppress to open hyperlink in browser" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3076 src/slic3r/GUI/Plater.cpp:1734 +#: src/slic3r/GUI/GUI_App.cpp:3100 src/slic3r/GUI/Plater.cpp:1734 msgid "PrusaSlicer will remember your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3077 +#: src/slic3r/GUI/GUI_App.cpp:3101 msgid "You will not be asked about it again on hyperlinks hovering." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3078 src/slic3r/GUI/Plater.cpp:1738 +#: src/slic3r/GUI/GUI_App.cpp:3102 src/slic3r/GUI/Plater.cpp:1738 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to changes your choice." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:3080 src/slic3r/GUI/Plater.cpp:1740 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:905 +#: src/slic3r/GUI/GUI_App.cpp:3104 src/slic3r/GUI/Plater.cpp:1740 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:906 msgid "PrusaSlicer: Don't ask me again" msgstr "" @@ -3637,7 +3637,7 @@ msgstr "環邊和裙邊" #: src/slic3r/GUI/GUI_Factories.cpp:138 src/slic3r/GUI/Tab.cpp:1495 #: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1645 #: src/slic3r/GUI/Tab.cpp:1649 src/slic3r/GUI/Tab.cpp:2023 -#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4673 +#: src/slic3r/GUI/Tab.cpp:2393 src/slic3r/GUI/Tab.cpp:4712 #: src/libslic3r/PrintConfig.cpp:247 src/libslic3r/PrintConfig.cpp:472 #: src/libslic3r/PrintConfig.cpp:1396 src/libslic3r/PrintConfig.cpp:1483 #: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:2480 @@ -3647,7 +3647,7 @@ msgid "Advanced" msgstr "進階" #: src/slic3r/GUI/GUI_Factories.cpp:140 src/slic3r/GUI/Plater.cpp:428 -#: src/slic3r/GUI/Tab.cpp:4607 src/slic3r/GUI/Tab.cpp:4608 +#: src/slic3r/GUI/Tab.cpp:4646 src/slic3r/GUI/Tab.cpp:4647 #: src/libslic3r/PrintConfig.cpp:3418 src/libslic3r/PrintConfig.cpp:3425 #: src/libslic3r/PrintConfig.cpp:3434 src/libslic3r/PrintConfig.cpp:3443 #: src/libslic3r/PrintConfig.cpp:3453 src/libslic3r/PrintConfig.cpp:3463 @@ -3661,8 +3661,8 @@ msgid "Supports" msgstr "支æ’" #: src/slic3r/GUI/GUI_Factories.cpp:141 src/slic3r/GUI/Plater.cpp:574 -#: src/slic3r/GUI/Tab.cpp:4648 src/slic3r/GUI/Tab.cpp:4649 -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3606 +#: src/slic3r/GUI/Tab.cpp:4687 src/slic3r/GUI/Tab.cpp:4688 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3606 #: src/libslic3r/PrintConfig.cpp:3613 src/libslic3r/PrintConfig.cpp:3627 #: src/libslic3r/PrintConfig.cpp:3638 src/libslic3r/PrintConfig.cpp:3648 #: src/libslic3r/PrintConfig.cpp:3670 src/libslic3r/PrintConfig.cpp:3681 @@ -3672,8 +3672,8 @@ msgstr "支æ’" msgid "Pad" msgstr "墊" -#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4666 -#: src/slic3r/GUI/Tab.cpp:4667 src/libslic3r/SLA/Hollowing.cpp:72 +#: src/slic3r/GUI/GUI_Factories.cpp:142 src/slic3r/GUI/Tab.cpp:4705 +#: src/slic3r/GUI/Tab.cpp:4706 src/libslic3r/SLA/Hollowing.cpp:72 #: src/libslic3r/SLA/Hollowing.cpp:84 src/libslic3r/SLA/Hollowing.cpp:91 #: src/libslic3r/SLA/Hollowing.cpp:100 src/libslic3r/PrintConfig.cpp:3734 #: src/libslic3r/PrintConfig.cpp:3741 src/libslic3r/PrintConfig.cpp:3751 @@ -3776,7 +3776,7 @@ msgstr "導出爲 STL" msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3534 +#: src/slic3r/GUI/GUI_Factories.cpp:733 src/slic3r/GUI/Plater.cpp:3546 msgid "Replace with STL" msgstr "" @@ -3802,19 +3802,19 @@ msgstr "" msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5605 +#: src/slic3r/GUI/GUI_Factories.cpp:835 src/slic3r/GUI/Plater.cpp:5618 msgid "Convert from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5606 +#: src/slic3r/GUI/GUI_Factories.cpp:836 src/slic3r/GUI/Plater.cpp:5619 msgid "Revert conversion from imperial units" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:837 src/slic3r/GUI/Plater.cpp:5620 msgid "Convert from meters" msgstr "" -#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5607 +#: src/slic3r/GUI/GUI_Factories.cpp:838 src/slic3r/GUI/Plater.cpp:5620 msgid "Revert conversion from meters" msgstr "" @@ -4068,7 +4068,7 @@ msgstr "" msgid "Loading" msgstr "載入中" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1540 src/slic3r/GUI/Plater.cpp:2400 msgid "Loading file" msgstr "" @@ -4485,7 +4485,7 @@ msgstr "" msgid "Delete Option %s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:154 #, c-format, boost-format msgid "Change Option %s" msgstr "" @@ -4604,18 +4604,18 @@ msgstr "" msgid "Legend/Estimated printing time" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:767 -#: src/slic3r/GUI/HintNotification.cpp:793 +#: src/slic3r/GUI/HintNotification.cpp:771 +#: src/slic3r/GUI/HintNotification.cpp:797 #: src/slic3r/GUI/NotificationManager.cpp:374 #: src/slic3r/GUI/NotificationManager.cpp:391 msgid "More" msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:908 +#: src/slic3r/GUI/HintNotification.cpp:912 msgid "Open Preferences." msgstr "" -#: src/slic3r/GUI/HintNotification.cpp:1000 +#: src/slic3r/GUI/HintNotification.cpp:1004 msgid "Open Documentation in web browser." msgstr "" @@ -4775,11 +4775,11 @@ msgid "" "presets were used as fallback." msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2426 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:223 src/slic3r/GUI/Plater.cpp:2438 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2428 +#: src/slic3r/GUI/Jobs/SLAImportJob.cpp:225 src/slic3r/GUI/Plater.cpp:2440 msgid "Attention!" msgstr "注æ„ï¼" @@ -4820,11 +4820,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:87 src/slic3r/GUI/Plater.cpp:912 -#: src/slic3r/GUI/Plater.cpp:6492 src/libslic3r/PrintConfig.cpp:4271 +#: src/slic3r/GUI/Plater.cpp:6505 src/libslic3r/PrintConfig.cpp:4271 msgid "Export G-code" msgstr "導出 G-code" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:88 src/slic3r/GUI/Plater.cpp:6506 msgid "Send G-code" msgstr "ç™¼é€ G 代碼" @@ -5205,7 +5205,7 @@ msgstr "" msgid "Show/Hide G-code window" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4446 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:230 src/slic3r/GUI/Plater.cpp:4458 #: src/slic3r/GUI/Tab.cpp:2822 msgid "Preview" msgstr "é è¦½" @@ -5317,29 +5317,29 @@ msgid "Closing PrusaSlicer while some presets are modified." msgstr "" #: src/slic3r/GUI/MainFrame.cpp:285 src/slic3r/GUI/MainFrame.cpp:335 -#: src/slic3r/GUI/Tab.hpp:414 src/slic3r/GUI/Tab.hpp:537 +#: src/slic3r/GUI/Tab.hpp:427 src/slic3r/GUI/Tab.hpp:550 msgid "Print Settings" msgstr "列å°è¨­ç½®" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:339 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:522 +#: src/slic3r/GUI/Tab.hpp:535 msgid "Material Settings" msgstr "ææ–™è¨­ç½®" #: src/slic3r/GUI/MainFrame.cpp:286 src/slic3r/GUI/MainFrame.cpp:337 #: src/slic3r/GUI/MainFrame.cpp:2096 src/slic3r/GUI/MainFrame.cpp:2097 -#: src/slic3r/GUI/Tab.hpp:448 +#: src/slic3r/GUI/Tab.hpp:461 msgid "Filament Settings" msgstr "耗æçµ²è¨­ç½®" #: src/slic3r/GUI/MainFrame.cpp:287 src/slic3r/GUI/MainFrame.cpp:341 -#: src/slic3r/GUI/Tab.hpp:490 +#: src/slic3r/GUI/Tab.hpp:503 msgid "Printer Settings" msgstr "å°è¡¨æ©Ÿè¨­ç½®" #: src/slic3r/GUI/MainFrame.cpp:632 src/slic3r/GUI/Plater.cpp:1721 -#: src/slic3r/GUI/Plater.cpp:2818 +#: src/slic3r/GUI/Plater.cpp:2830 msgid "Untitled" msgstr "" @@ -5849,7 +5849,7 @@ msgid "Open New Instance" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:1417 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1562 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1564 msgid "Compare Presets" msgstr "" @@ -5958,9 +5958,9 @@ msgstr "G-code" msgid "Save zip file as:" msgstr "å°‡ zip 文件å¦å­˜çˆ²:" -#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6011 src/slic3r/GUI/Tab.cpp:1666 -#: src/slic3r/GUI/Tab.cpp:4674 +#: src/slic3r/GUI/MainFrame.cpp:1682 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6024 src/slic3r/GUI/Tab.cpp:1666 +#: src/slic3r/GUI/Tab.cpp:4713 msgid "Slicing" msgstr "切片" @@ -6216,7 +6216,7 @@ msgstr "" #: src/slic3r/GUI/NotificationManager.cpp:1459 #: src/slic3r/GUI/NotificationManager.cpp:1486 #: src/slic3r/GUI/NotificationManager.cpp:1494 -#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3163 +#: src/slic3r/GUI/NotificationManager.cpp:1505 src/slic3r/GUI/Plater.cpp:3175 msgid "WARNING:" msgstr "" @@ -6242,8 +6242,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4512 -#: src/slic3r/GUI/Tab.cpp:4603 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:105 src/slic3r/GUI/Tab.cpp:4551 +#: src/slic3r/GUI/Tab.cpp:4642 msgid "Layers" msgstr "圖層" @@ -6499,12 +6499,12 @@ msgstr "" msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6493 +#: src/slic3r/GUI/Plater.cpp:893 src/slic3r/GUI/Plater.cpp:6506 msgid "Send to printer" msgstr "發é€åˆ°å°è¡¨æ©Ÿ" -#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3295 -#: src/slic3r/GUI/Plater.cpp:6014 +#: src/slic3r/GUI/Plater.cpp:913 src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:6027 msgid "Slice now" msgstr "ç«‹å³åˆ‡ç‰‡" @@ -6609,7 +6609,7 @@ msgstr "" msgid "Ejecting of device %s(%s) has failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5074 +#: src/slic3r/GUI/Plater.cpp:2221 src/slic3r/GUI/Plater.cpp:5086 msgid "New Project" msgstr "" @@ -6617,7 +6617,7 @@ msgstr "" msgid "Expand sidebar" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2486 +#: src/slic3r/GUI/Plater.cpp:2498 msgid "" "The preset below was temporarily installed on the active instance of " "PrusaSlicer" @@ -6626,12 +6626,12 @@ msgid_plural "" "PrusaSlicer" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2516 +#: src/slic3r/GUI/Plater.cpp:2528 #, boost-format msgid "Failed loading file \"%1%\" due to an invalid configuration." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2536 +#: src/slic3r/GUI/Plater.cpp:2548 #, c-format, boost-format msgid "" "Object size from file %s appears to be zero.\n" @@ -6641,11 +6641,11 @@ msgid_plural "" "These objects have been removed from the model" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2540 +#: src/slic3r/GUI/Plater.cpp:2552 msgid "The size of the object is zero" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2553 +#: src/slic3r/GUI/Plater.cpp:2565 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in meters.\n" @@ -6657,15 +6657,15 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2557 src/slic3r/GUI/Plater.cpp:2579 +#: src/slic3r/GUI/Plater.cpp:2569 src/slic3r/GUI/Plater.cpp:2591 msgid "The object is too small" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2558 src/slic3r/GUI/Plater.cpp:2580 +#: src/slic3r/GUI/Plater.cpp:2570 src/slic3r/GUI/Plater.cpp:2592 msgid "Apply to all the remaining small objects being loaded." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2587 #, c-format, boost-format msgid "" "The dimensions of the object from file %s seem to be defined in inches.\n" @@ -6677,180 +6677,180 @@ msgid_plural "" "the dimensions of these objects?" msgstr[0] "" -#: src/slic3r/GUI/Plater.cpp:2593 +#: src/slic3r/GUI/Plater.cpp:2605 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2596 src/slic3r/GUI/Plater.cpp:2651 +#: src/slic3r/GUI/Plater.cpp:2608 src/slic3r/GUI/Plater.cpp:2663 msgid "Multi-part object detected" msgstr "檢測到多部分å°è±¡" -#: src/slic3r/GUI/Plater.cpp:2604 +#: src/slic3r/GUI/Plater.cpp:2616 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:2617 msgid "Detected advanced data" msgstr "檢測到的高級數據" -#: src/slic3r/GUI/Plater.cpp:2625 +#: src/slic3r/GUI/Plater.cpp:2637 #, c-format, boost-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "ä¸èƒ½å¾ž %s 中添加å°è±¡, 因爲其中一個或一些有多個部分" -#: src/slic3r/GUI/Plater.cpp:2648 +#: src/slic3r/GUI/Plater.cpp:2660 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2767 +#: src/slic3r/GUI/Plater.cpp:2779 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "您的å°è±¡çœ‹èµ·ä¾†å¤ªå¤§, 因此它被自動縮å°ä»¥é©åˆæ‚¨çš„列å°ç‰€ã€‚" -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2780 msgid "Object too large?" msgstr "å°è±¡å¤ªå¤§ï¼Ÿ" -#: src/slic3r/GUI/Plater.cpp:2846 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Export STL file:" msgstr "導出 STL 文件:" -#: src/slic3r/GUI/Plater.cpp:2853 +#: src/slic3r/GUI/Plater.cpp:2865 msgid "Export AMF file:" msgstr "導出 AMF 文件:" -#: src/slic3r/GUI/Plater.cpp:2859 +#: src/slic3r/GUI/Plater.cpp:2871 msgid "Save file as:" msgstr "將文件å¦å­˜çˆ²:" -#: src/slic3r/GUI/Plater.cpp:2865 +#: src/slic3r/GUI/Plater.cpp:2877 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2963 +#: src/slic3r/GUI/Plater.cpp:2975 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2975 +#: src/slic3r/GUI/Plater.cpp:2987 msgid "Delete All Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3003 +#: src/slic3r/GUI/Plater.cpp:3015 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3086 +#: src/slic3r/GUI/Plater.cpp:3098 msgid "" "The selected object couldn't be split because it contains only one solid " "part." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3105 msgid "All non-solid parts (modifiers) were deleted" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3095 +#: src/slic3r/GUI/Plater.cpp:3107 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3145 +#: src/slic3r/GUI/Plater.cpp:3157 msgid "" "An object has custom support enforcers which will not be used because " "supports are disabled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3147 +#: src/slic3r/GUI/Plater.cpp:3159 msgid "Enable supports for enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3276 src/slic3r/GUI/Plater.cpp:4142 +#: src/slic3r/GUI/Plater.cpp:3288 src/slic3r/GUI/Plater.cpp:4154 msgid "Invalid data" msgstr "無效數據" -#: src/slic3r/GUI/Plater.cpp:3346 +#: src/slic3r/GUI/Plater.cpp:3358 msgid "Another export job is currently running." msgstr "å¦ä¸€å€‹å°Žå‡ºä½œæ¥­ç•¶å‰æ­£åœ¨é‹è¡Œã€‚" -#: src/slic3r/GUI/Plater.cpp:3432 +#: src/slic3r/GUI/Plater.cpp:3444 msgid "Replace from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 +#: src/slic3r/GUI/Plater.cpp:3462 msgid "Unable to replace with more than one volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3450 src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3462 src/slic3r/GUI/Plater.cpp:3541 msgid "Error during replace" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3521 +#: src/slic3r/GUI/Plater.cpp:3533 msgid "Select the new file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3529 +#: src/slic3r/GUI/Plater.cpp:3541 msgid "File for the replace wasn't selected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3620 +#: src/slic3r/GUI/Plater.cpp:3632 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3651 src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:3663 src/slic3r/GUI/Plater.cpp:5215 msgid "The selected file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "differs from the original file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3652 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Do you want to replace it" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/Plater.cpp:3675 +#: src/slic3r/GUI/Plater.cpp:3681 src/slic3r/GUI/Plater.cpp:3687 msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3778 +#: src/slic3r/GUI/Plater.cpp:3790 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3783 +#: src/slic3r/GUI/Plater.cpp:3795 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3801 +#: src/slic3r/GUI/Plater.cpp:3813 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4096 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "There are active warnings concerning sliced models:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4107 +#: src/slic3r/GUI/Plater.cpp:4119 msgid "generated warnings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4438 +#: src/slic3r/GUI/Plater.cpp:4450 msgid "3D editor view" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4859 +#: src/slic3r/GUI/Plater.cpp:4871 msgid "Undo / Redo is processing" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4861 +#: src/slic3r/GUI/Plater.cpp:4873 #, boost-format msgid "" "Switching the printer technology from %1% to %2%.\n" @@ -6858,171 +6858,171 @@ msgid "" "printer technology." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5058 +#: src/slic3r/GUI/Plater.cpp:5070 msgid "Creating a new project while the current project is modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5061 +#: src/slic3r/GUI/Plater.cpp:5073 msgid "Creating a new project while some presets are modified." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5062 +#: src/slic3r/GUI/Plater.cpp:5074 msgid "You can keep presets modifications to the new project or discard them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5063 +#: src/slic3r/GUI/Plater.cpp:5075 msgid "" "You can keep presets modifications to the new project, discard them or save " "changes as new presets.\n" "Note, if changes will be saved then new project wouldn't keep them" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5069 +#: src/slic3r/GUI/Plater.cpp:5081 msgid "Creating a new project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5100 +#: src/slic3r/GUI/Plater.cpp:5112 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5126 src/slic3r/GUI/Plater.cpp:5386 +#: src/slic3r/GUI/Plater.cpp:5139 src/slic3r/GUI/Plater.cpp:5399 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5130 +#: src/slic3r/GUI/Plater.cpp:5143 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5202 +#: src/slic3r/GUI/Plater.cpp:5215 msgid "does not contain valid gcode." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5203 +#: src/slic3r/GUI/Plater.cpp:5216 msgid "Error while loading .gcode file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5256 +#: src/slic3r/GUI/Plater.cpp:5269 #, c-format, boost-format msgid "%s - Drop project file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5263 +#: src/slic3r/GUI/Plater.cpp:5276 msgid "Open as project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5264 +#: src/slic3r/GUI/Plater.cpp:5277 msgid "Import geometry only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5265 +#: src/slic3r/GUI/Plater.cpp:5278 msgid "Import config only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5268 +#: src/slic3r/GUI/Plater.cpp:5281 msgid "Select an action to apply to the file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5273 +#: src/slic3r/GUI/Plater.cpp:5286 msgid "Action" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5289 +#: src/slic3r/GUI/Plater.cpp:5302 msgid "Don't show again" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5330 +#: src/slic3r/GUI/Plater.cpp:5343 msgid "You can open only one .gcode file at a time." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5331 +#: src/slic3r/GUI/Plater.cpp:5344 msgid "Drag and drop G-code file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5408 +#: src/slic3r/GUI/Plater.cpp:5421 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5413 +#: src/slic3r/GUI/Plater.cpp:5426 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5463 +#: src/slic3r/GUI/Plater.cpp:5476 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5474 +#: src/slic3r/GUI/Plater.cpp:5487 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5483 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5517 +#: src/slic3r/GUI/Plater.cpp:5530 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5568 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Enter the number of copies:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5569 +#: src/slic3r/GUI/Plater.cpp:5582 msgid "Copies of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5573 +#: src/slic3r/GUI/Plater.cpp:5586 #, c-format, boost-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5647 +#: src/slic3r/GUI/Plater.cpp:5660 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save G-code file as:" msgstr "å°‡ G-code 文件å¦å­˜çˆ²:" -#: src/slic3r/GUI/Plater.cpp:5707 +#: src/slic3r/GUI/Plater.cpp:5720 msgid "Save SL1 / SL1S file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5716 +#: src/slic3r/GUI/Plater.cpp:5729 msgid "The provided file name is not valid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:5717 +#: src/slic3r/GUI/Plater.cpp:5730 msgid "The following characters are not allowed by a FAT file system:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "" "The plater is empty.\n" "Do you want to save the project?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5904 +#: src/slic3r/GUI/Plater.cpp:5917 msgid "Save project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:6492 +#: src/slic3r/GUI/Plater.cpp:6505 msgid "Export" msgstr "導出" -#: src/slic3r/GUI/Plater.cpp:6526 +#: src/slic3r/GUI/Plater.cpp:6539 msgid "" "Custom supports, seams and multimaterial painting were removed after " "repairing the mesh." msgstr "" -#: src/slic3r/GUI/Plater.cpp:6640 +#: src/slic3r/GUI/Plater.cpp:6653 msgid "Paste From Clipboard" msgstr "" #: src/slic3r/GUI/Preferences.cpp:106 src/slic3r/GUI/Tab.cpp:2282 #: src/slic3r/GUI/Tab.cpp:2508 src/slic3r/GUI/Tab.cpp:2614 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "General" msgstr "常è¦" @@ -7148,7 +7148,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:233 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 msgid "" "Ask to save unsaved changes in presets when closing the application or when " "loading a new project" @@ -7162,7 +7162,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:242 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:896 msgid "Ask for unsaved changes in presets when selecting new preset" msgstr "" @@ -7173,7 +7173,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/Preferences.cpp:249 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:894 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:895 msgid "Ask for unsaved changes in presets when creating new project" msgstr "" @@ -7678,11 +7678,11 @@ msgstr "å‘å°è¡¨æ©Ÿä¸»æ©Ÿç™¼é€ G-Code" msgid "Upload to Printer Host with the following filename:" msgstr "使用以下文件å上載到å°è¡¨æ©Ÿä¸»æ©Ÿ:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:50 +#: src/slic3r/GUI/PrintHostDialogs.cpp:51 msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "如果需è¦, ä½¿ç”¨æ­£å‘æ–œæ§“ (/) 作爲目錄分隔符。" -#: src/slic3r/GUI/PrintHostDialogs.cpp:59 +#: src/slic3r/GUI/PrintHostDialogs.cpp:60 msgid "Group" msgstr "" @@ -7691,18 +7691,18 @@ msgstr "" msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:92 +#: src/slic3r/GUI/PrintHostDialogs.cpp:91 +msgid "Upload" +msgstr "" + +#: src/slic3r/GUI/PrintHostDialogs.cpp:101 msgid "Upload and Print" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:103 +#: src/slic3r/GUI/PrintHostDialogs.cpp:112 msgid "Upload and Simulate" msgstr "" -#: src/slic3r/GUI/PrintHostDialogs.cpp:115 -msgid "Upload" -msgstr "" - #: src/slic3r/GUI/PrintHostDialogs.cpp:247 msgid "ID" msgstr "" @@ -8140,7 +8140,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4601 +#: src/slic3r/GUI/Tab.cpp:1451 src/slic3r/GUI/Tab.cpp:4640 msgid "Layers and perimeters" msgstr "層和輪廓" @@ -8224,11 +8224,11 @@ msgstr "交疊" msgid "Flow" msgstr "æµé‡" -#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:1674 src/slic3r/GUI/Tab.cpp:1692 msgid "Other" msgstr "å…¶ä»–" -#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4678 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:4717 msgid "Output options" msgstr "輸出é¸é …" @@ -8240,11 +8240,11 @@ msgstr "é †åºåˆ—å°" msgid "Extruder clearance" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4679 +#: src/slic3r/GUI/Tab.cpp:1685 src/slic3r/GUI/Tab.cpp:4718 msgid "Output file" msgstr "輸出文件" -#: src/slic3r/GUI/Tab.cpp:1692 src/libslic3r/PrintConfig.cpp:1992 +#: src/slic3r/GUI/Tab.cpp:1704 src/libslic3r/PrintConfig.cpp:1992 msgid "Post-processing scripts" msgstr "後處ç†è…³æœ¬" @@ -8252,19 +8252,20 @@ msgstr "後處ç†è…³æœ¬" #: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:2103 #: src/slic3r/GUI/Tab.cpp:2489 src/slic3r/GUI/Tab.cpp:2490 #: src/slic3r/GUI/Tab.cpp:2561 src/slic3r/GUI/Tab.cpp:2562 -#: src/slic3r/GUI/Tab.cpp:4529 src/slic3r/GUI/Tab.cpp:4530 +#: src/slic3r/GUI/Tab.cpp:3940 src/slic3r/GUI/Tab.cpp:4568 +#: src/slic3r/GUI/Tab.cpp:4569 msgid "Notes" msgstr "備註" #: src/slic3r/GUI/Tab.cpp:1723 src/slic3r/GUI/Tab.cpp:2110 #: src/slic3r/GUI/Tab.cpp:2496 src/slic3r/GUI/Tab.cpp:2568 -#: src/slic3r/GUI/Tab.cpp:4537 src/slic3r/GUI/Tab.cpp:4684 +#: src/slic3r/GUI/Tab.cpp:4576 src/slic3r/GUI/Tab.cpp:4723 msgid "Dependencies" msgstr "ä¾è³´" #: src/slic3r/GUI/Tab.cpp:1724 src/slic3r/GUI/Tab.cpp:2111 #: src/slic3r/GUI/Tab.cpp:2497 src/slic3r/GUI/Tab.cpp:2569 -#: src/slic3r/GUI/Tab.cpp:4538 src/slic3r/GUI/Tab.cpp:4685 +#: src/slic3r/GUI/Tab.cpp:4577 src/slic3r/GUI/Tab.cpp:4724 msgid "Profile dependencies" msgstr "é…置文件ä¾è³´" @@ -8338,7 +8339,7 @@ msgid "Ramming settings" msgstr "è¡å£“設置" #: src/slic3r/GUI/Tab.cpp:2081 src/slic3r/GUI/Tab.cpp:2401 -#: src/slic3r/GUI/Tab.cpp:4208 src/libslic3r/GCode.cpp:733 +#: src/slic3r/GUI/Tab.cpp:4247 src/libslic3r/GCode.cpp:733 #: src/libslic3r/PrintConfig.cpp:2450 msgid "Custom G-code" msgstr "自定義 G-code" @@ -8376,8 +8377,8 @@ msgstr "" msgid "Size and coordinates" msgstr "尺寸和座標" -#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1283 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1671 +#: src/slic3r/GUI/Tab.cpp:2292 src/slic3r/GUI/UnsavedChangesDialog.cpp:1285 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1673 msgid "Capabilities" msgstr "權é™" @@ -8442,11 +8443,11 @@ msgstr "傾斜" msgid "Tilt time" msgstr "傾斜時間" -#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4519 +#: src/slic3r/GUI/Tab.cpp:2538 src/slic3r/GUI/Tab.cpp:4558 msgid "Corrections" msgstr "修正" -#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4515 +#: src/slic3r/GUI/Tab.cpp:2551 src/slic3r/GUI/Tab.cpp:4554 msgid "Exposure" msgstr "æ›å…‰" @@ -8600,69 +8601,73 @@ msgstr "" msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4142 +#: src/slic3r/GUI/Tab.cpp:3819 src/slic3r/GUI/Tab.cpp:4181 msgid "Set" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3938 msgid "Find" msgstr "尋找" -#: src/slic3r/GUI/Tab.cpp:3906 +#: src/slic3r/GUI/Tab.cpp:3939 msgid "Replace with" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3992 +#: src/slic3r/GUI/Tab.cpp:4028 msgid "Regular expression" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3996 +#: src/slic3r/GUI/Tab.cpp:4032 msgid "Case insensitive" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4000 +#: src/slic3r/GUI/Tab.cpp:4036 msgid "Whole word" msgstr "整個字" -#: src/slic3r/GUI/Tab.cpp:4004 +#: src/slic3r/GUI/Tab.cpp:4040 msgid "Match single line" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4236 +#: src/slic3r/GUI/Tab.cpp:4143 +msgid "Are you sure you want to delete all substitutions?" +msgstr "" + +#: src/slic3r/GUI/Tab.cpp:4275 msgid "" "Machine limits will be emitted to G-code and used to estimate print time." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4239 +#: src/slic3r/GUI/Tab.cpp:4278 msgid "" "Machine limits will NOT be emitted to G-code, however they will be used to " "estimate print time, which may therefore not be accurate as the printer may " "apply a different set of machine limits." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4243 +#: src/slic3r/GUI/Tab.cpp:4282 msgid "" "Machine limits are not set, therefore the print time estimate may not be " "accurate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4265 +#: src/slic3r/GUI/Tab.cpp:4304 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4267 +#: src/slic3r/GUI/Tab.cpp:4306 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4269 +#: src/slic3r/GUI/Tab.cpp:4308 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:4271 +#: src/slic3r/GUI/Tab.cpp:4310 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -8670,23 +8675,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4276 +#: src/slic3r/GUI/Tab.cpp:4315 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:4278 +#: src/slic3r/GUI/Tab.cpp:4317 msgid "" "for the left button: indicates a non-system (or non-default) preset,\n" "for the right button: indicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4281 +#: src/slic3r/GUI/Tab.cpp:4320 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:4283 +#: src/slic3r/GUI/Tab.cpp:4322 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -8694,13 +8699,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4293 +#: src/slic3r/GUI/Tab.cpp:4332 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4295 +#: src/slic3r/GUI/Tab.cpp:4334 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -8708,17 +8713,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4298 +#: src/slic3r/GUI/Tab.cpp:4337 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4301 +#: src/slic3r/GUI/Tab.cpp:4340 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "白色å­å½ˆåœ–標表示設置與當å‰é¸é …組上次ä¿å­˜çš„é è¨­ä¸­çš„設置相åŒã€‚" -#: src/slic3r/GUI/Tab.cpp:4303 +#: src/slic3r/GUI/Tab.cpp:4342 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -8728,26 +8733,26 @@ msgstr "" "\"後退箭頭\" 圖標表示設置已更改, 與當å‰é¸é …組的上次ä¿å­˜çš„é è¨­ä¸ç›¸ç­‰ã€‚\n" "單擊å¯å°‡ç•¶å‰é¸é …組的所有設置é‡ç½®çˆ²ä¸Šæ¬¡ä¿å­˜çš„é è¨­ã€‚" -#: src/slic3r/GUI/Tab.cpp:4309 +#: src/slic3r/GUI/Tab.cpp:4348 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4310 +#: src/slic3r/GUI/Tab.cpp:4349 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:4316 +#: src/slic3r/GUI/Tab.cpp:4355 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "白色å­å½ˆåœ–標表示該值與上次ä¿å­˜çš„é è¨­ä¸­çš„值相åŒã€‚" -#: src/slic3r/GUI/Tab.cpp:4317 +#: src/slic3r/GUI/Tab.cpp:4356 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -8756,105 +8761,105 @@ msgstr "" "\"後退箭頭\" 圖標表示該值已更改, ä¸ç­‰æ–¼ä¸Šæ¬¡ä¿å­˜çš„é è¨­ã€‚\n" "單擊å¯å°‡ç•¶å‰å€¼é‡ç½®çˆ²ä¸Šæ¬¡ä¿å­˜çš„é è¨­ã€‚" -#: src/slic3r/GUI/Tab.cpp:4471 src/slic3r/GUI/Tab.cpp:4473 +#: src/slic3r/GUI/Tab.cpp:4510 src/slic3r/GUI/Tab.cpp:4512 msgid "Material" msgstr "ææ–™" -#: src/slic3r/GUI/Tab.cpp:4558 src/slic3r/GUI/Tab.cpp:4559 +#: src/slic3r/GUI/Tab.cpp:4597 src/slic3r/GUI/Tab.cpp:4598 msgid "Material printing profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4611 +#: src/slic3r/GUI/Tab.cpp:4650 msgid "Support head" msgstr "支æ’頭部寬度" -#: src/slic3r/GUI/Tab.cpp:4616 +#: src/slic3r/GUI/Tab.cpp:4655 msgid "Support pillar" msgstr "æ”¯æ’æ”¯æŸ±" -#: src/slic3r/GUI/Tab.cpp:4639 +#: src/slic3r/GUI/Tab.cpp:4678 msgid "Connection of the support sticks and junctions" msgstr "æ”¯æ’æ†å’Œé€£æŽ¥é»žçš„連接" -#: src/slic3r/GUI/Tab.cpp:4644 +#: src/slic3r/GUI/Tab.cpp:4683 msgid "Automatic generation" msgstr "自動生æˆ" -#: src/slic3r/GUI/Tab.cpp:4719 +#: src/slic3r/GUI/Tab.cpp:4758 #, boost-format msgid "" "\"%1%\" is disabled because \"%2%\" is on in \"%3%\" category.\n" "To enable \"%1%\", please switch off \"%2%\"" msgstr "" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3578 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3578 msgid "Object elevation" msgstr "å°è±¡é«˜ç¨‹" -#: src/slic3r/GUI/Tab.cpp:4721 src/libslic3r/PrintConfig.cpp:3680 +#: src/slic3r/GUI/Tab.cpp:4760 src/libslic3r/PrintConfig.cpp:3680 msgid "Pad around object" msgstr "" #: src/slic3r/GUI/UnsavedChangesDialog.cpp:153 #: src/slic3r/GUI/UnsavedChangesDialog.cpp:162 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1046 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1099 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1114 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1129 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1144 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1047 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1100 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1115 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1130 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1145 msgid "Undef" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:771 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:772 msgid "Unsaved Changes" msgstr "未ä¿å­˜çš„æ›´æ”¹" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:789 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:790 msgid "Switching Presets: Unsaved Changes" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:831 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 msgid "Old Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:832 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:833 msgid "New Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:866 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:867 msgid "Keep" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:863 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:864 msgid "Transfer" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Don't save" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:870 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:871 msgid "Discard" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:876 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:877 msgid "Save" msgstr "儲存" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:897 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "create new project" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:898 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 msgid "" "You will not be asked about the unsaved changes in presets the next time you " "switch a preset" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:899 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:900 msgid "" "You will not be asked about the unsaved changes in presets the next time " "you: \n" @@ -8862,120 +8867,121 @@ msgid "" "- Loading a new project while some presets are modified" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:902 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 msgid "PrusaSlicer will remember your action." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:903 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:904 #, boost-format msgid "" "Visit \"Preferences\" and check \"%1%\"\n" "to be asked about unsaved changes again." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:935 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:936 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1695 msgid "" "Some fields are too long to fit. Right mouse click reveals the full text." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will not be saved" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:937 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:938 msgid "All settings changes will be discarded." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:940 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 msgid "Save the selected options." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:941 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 msgid "Keep the selected settings." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:942 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:943 msgid "Transfer the selected settings to the newly selected preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:946 -#, boost-format -msgid "Save the selected options to preset \"%1%\"." -msgstr "" - #: src/slic3r/GUI/UnsavedChangesDialog.cpp:947 #, boost-format +msgid "Save the selected options to preset \"%1%\"." +msgstr "" + +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:948 +#, boost-format msgid "Transfer the selected options to the newly selected preset \"%1%\"." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1222 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1224 msgid "The following preset was modified" msgid_plural "The following presets were modified" msgstr[0] "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1228 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1230 #, boost-format msgid "Preset \"%1%\" has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1232 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1234 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1233 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1235 #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new print profile and it has the " "following unsaved changes:" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1279 -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1667 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1281 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1669 msgid "Extruders count" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1452 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1454 msgid "Select presets to compare" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1501 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1503 msgid "Show all presets (including incompatible)" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1516 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1518 msgid "Left Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1517 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1519 msgid "Right Preset Value" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1624 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1626 msgid "One of the presets doesn't found" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1635 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1637 msgid "Compared presets has different printer technology" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1649 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1651 msgid "Presets are the same" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1657 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1659 msgid "" "Presets are different.\n" "Click this button to select the same preset for the right and left preset." msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef category" msgstr "" -#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1681 +#: src/slic3r/GUI/UnsavedChangesDialog.cpp:1683 msgid "Undef group" msgstr "" @@ -9751,82 +9757,82 @@ msgstr "驗證失敗" msgid "write calledback failed" msgstr "寫回失敗" -#: src/libslic3r/Print.cpp:449 +#: src/libslic3r/Print.cpp:451 msgid "All objects are outside of the print volume." msgstr "所有å°è±¡éƒ½åœ¨åˆ—å°ç¯„åœä¹‹å¤–。" -#: src/libslic3r/Print.cpp:452 +#: src/libslic3r/Print.cpp:454 msgid "The supplied settings will cause an empty print." msgstr "ç•¶å‰æä¾›çš„è¨­ç½®å°‡å°Žè‡´ç©ºåˆ—å°ã€‚" -#: src/libslic3r/Print.cpp:456 +#: src/libslic3r/Print.cpp:458 msgid "Some objects are too close; your extruder will collide with them." msgstr "有些物體太éŽé è¿‘; 你的擠出頭有機會和他們相撞。" -#: src/libslic3r/Print.cpp:458 +#: src/libslic3r/Print.cpp:460 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "有些物體太高, 無法在擠出頭ä¸è¡çªçš„æƒ…æ³ä¸‹åˆ—å°ã€‚" -#: src/libslic3r/Print.cpp:467 +#: src/libslic3r/Print.cpp:469 msgid "" "Only a single object may be printed at a time in Spiral Vase mode. Either " "remove all but the last object, or enable sequential mode by " "\"complete_objects\"." msgstr "" -#: src/libslic3r/Print.cpp:471 +#: src/libslic3r/Print.cpp:473 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "\"螺旋花瓶\" é¸é …åªèƒ½åœ¨åˆ—å°å–®å€‹ææ–™å°è±¡æ™‚使用。" -#: src/libslic3r/Print.cpp:484 +#: src/libslic3r/Print.cpp:486 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" -#: src/libslic3r/Print.cpp:490 +#: src/libslic3r/Print.cpp:492 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:492 +#: src/libslic3r/Print.cpp:494 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "擦料塔目å‰åƒ…支æŒç›¸å°æ“ å‡ºæ©Ÿå°‹å€ (use_relative_e_distances=1)。" -#: src/libslic3r/Print.cpp:494 +#: src/libslic3r/Print.cpp:496 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" -#: src/libslic3r/Print.cpp:496 +#: src/libslic3r/Print.cpp:498 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:498 +#: src/libslic3r/Print.cpp:500 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:519 +#: src/libslic3r/Print.cpp:521 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" -#: src/libslic3r/Print.cpp:521 +#: src/libslic3r/Print.cpp:523 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" msgstr "åªæœ‰åœ¨ç›¸åŒæ•¸é‡çš„基座層上列å°çš„å°è±¡æ™‚, æ‰æ”¯æŒæ“¦æ–™å¡”" -#: src/libslic3r/Print.cpp:524 +#: src/libslic3r/Print.cpp:526 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -9834,34 +9840,34 @@ msgstr "" "åªæœ‰åœ¨ä½¿ç”¨ç›¸åŒçš„support_material_contact_distanceï¼ˆæ”¯æ’ææ–™è·é›¢ï¼‰åˆ—å°å¤šå€‹å°è±¡" "時, æ‰æ”¯æŒæ“¦æ–™å¡”" -#: src/libslic3r/Print.cpp:526 +#: src/libslic3r/Print.cpp:528 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "åªæœ‰åœ¨å¤šå€‹å°è±¡è¢«å¹³å‡åˆ‡å‰²çš„æƒ…æ³ä¸‹, æ‰æ”¯æŒæ“¦æ–™å¡”。" -#: src/libslic3r/Print.cpp:539 +#: src/libslic3r/Print.cpp:541 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:561 +#: src/libslic3r/Print.cpp:563 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "爲一個或多個å°è±¡åˆ†é…了å°è¡¨æ©Ÿä¸å­˜åœ¨çš„æ“ å‡ºæ©Ÿã€‚" -#: src/libslic3r/Print.cpp:574 +#: src/libslic3r/Print.cpp:576 #, boost-format msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:577 +#: src/libslic3r/Print.cpp:579 #, boost-format msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:588 +#: src/libslic3r/Print.cpp:590 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -9872,13 +9878,13 @@ msgstr "" "(support_material_extruder == 0 或 support_material_interface_extruder == 0)" "åˆ—å°æ”¯æ’物, 則所有噴嘴的直徑必須相åŒã€‚" -#: src/libslic3r/Print.cpp:596 +#: src/libslic3r/Print.cpp:598 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." msgstr "è¦ä½¿æ“¦æ–™å¡”èˆ‡å¯æº¶æ€§æ”¯æ’é…åˆä½¿ç”¨, 支æŒå±¤éœ€è¦èˆ‡å°è±¡åœ–å±¤åŒæ­¥ã€‚" -#: src/libslic3r/Print.cpp:600 +#: src/libslic3r/Print.cpp:602 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -9889,27 +9895,46 @@ msgstr "" "於的支架。(support_material_extruder å’Œsupport_material_interface_extruder " "都需è¦è¨­ç½®çˆ² 0)。" -#: src/libslic3r/Print.cpp:636 +#: src/libslic3r/Print.cpp:638 msgid "First layer height can't be greater than nozzle diameter" msgstr "第一層高度ä¸èƒ½å¤§æ–¼å™´å˜´ç›´å¾‘" -#: src/libslic3r/Print.cpp:641 +#: src/libslic3r/Print.cpp:643 msgid "Layer height can't be greater than nozzle diameter" msgstr "層高度ä¸èƒ½å¤§æ–¼å™´å˜´ç›´å¾‘" -#: src/libslic3r/Print.cpp:795 +#: src/libslic3r/Print.cpp:663 +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" + +#: src/libslic3r/Print.cpp:665 +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:667 +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" + +#: src/libslic3r/Print.cpp:809 msgid "Infilling layers" msgstr "" -#: src/libslic3r/Print.cpp:817 +#: src/libslic3r/Print.cpp:831 msgid "Generating skirt and brim" msgstr "" -#: src/libslic3r/Print.cpp:865 +#: src/libslic3r/Print.cpp:879 msgid "Exporting G-code" msgstr "" -#: src/libslic3r/Print.cpp:869 +#: src/libslic3r/Print.cpp:883 msgid "Generating G-code" msgstr "" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ab1c7b9645..61a2a90d8b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -126,7 +126,7 @@ if (NOT WIN32 AND NOT APPLE) set_target_properties(PrusaSlicer PROPERTIES OUTPUT_NAME "prusa-slicer") endif () -target_link_libraries(PrusaSlicer libslic3r cereal) +target_link_libraries(PrusaSlicer libslic3r libcereal) if (APPLE) # add_compile_options(-stdlib=libc++) # add_definitions(-DBOOST_THREAD_DONT_USE_CHRONO -DBOOST_NO_CXX11_RVALUE_REFERENCES -DBOOST_THREAD_USES_MOVE) diff --git a/src/libslic3r/Brim.cpp b/src/libslic3r/Brim.cpp index 08e0d41517..0fec89ced0 100644 --- a/src/libslic3r/Brim.cpp +++ b/src/libslic3r/Brim.cpp @@ -10,7 +10,10 @@ #include #include #include +#include + #include +#include #ifndef NDEBUG // #define BRIM_DEBUG_TO_SVG @@ -200,20 +203,94 @@ static ExPolygons top_level_outer_brim_area(const Print &print return diff_ex(brim_area, no_brim_area); } -static ExPolygons inner_brim_area(const Print &print, - const ConstPrintObjectPtrs &top_level_objects_with_brim, - const std::vector &bottom_layers_expolygons, - const float no_brim_offset) +// Return vector of booleans indicated if polygons from bottom_layers_expolygons contain another polygon or not. +// Every ExPolygon is counted as several Polygons (contour and holes). Contour polygon is always processed before holes. +static std::vector has_polygons_nothing_inside(const Print &print, const std::vector &bottom_layers_expolygons) { assert(print.objects().size() == bottom_layers_expolygons.size()); + Polygons islands; + for(size_t print_object_idx = 0; print_object_idx < print.objects().size(); ++print_object_idx) { + const PrintObject *object = print.objects()[print_object_idx]; + const Polygons islands_object = to_polygons(bottom_layers_expolygons[print_object_idx]); + + islands.reserve(islands.size() + object->instances().size() * islands_object.size()); + for (const PrintInstance &instance : object->instances()) + append_and_translate(islands, islands_object, instance); + } + + ClipperLib_Z::Paths islands_clip; + islands_clip.reserve(islands.size()); + for (const Polygon &poly : islands) { + size_t island_idx = &poly - &islands.front(); + ClipperLib_Z::Path island_clip; + for (const Point &pt : poly.points) + island_clip.emplace_back(pt.x(), pt.y(), island_idx + 1); + islands_clip.emplace_back(island_clip); + } + + ClipperLib_Z::Clipper clipper; + // Always assign zero to detect cases when two polygons are overlapping. + clipper.ZFillFunction([](const ClipperLib_Z::IntPoint &e1bot, const ClipperLib_Z::IntPoint &e1top, const ClipperLib_Z::IntPoint &e2bot, const ClipperLib_Z::IntPoint &e2top, ClipperLib_Z::IntPoint &pt) { + pt.z() = 0; + }); + + clipper.AddPaths(islands_clip, ClipperLib_Z::ptSubject, true); + ClipperLib_Z::PolyTree islands_polytree; + clipper.Execute(ClipperLib_Z::ctUnion, islands_polytree, ClipperLib_Z::pftEvenOdd, ClipperLib_Z::pftEvenOdd); + + std::vector has_nothing_inside(islands.size()); + std::function check_contours = [&check_contours, &has_nothing_inside](const ClipperLib_Z::PolyNode &parent_node)->void { + if (!parent_node.Childs.empty()) + for(const ClipperLib_Z::PolyNode *child_node : parent_node.Childs) + check_contours(*child_node); + + if (parent_node.Childs.empty() && !parent_node.Contour.empty() && parent_node.Contour.front().z() != 0) { + int polygon_idx = parent_node.Contour.front().z(); + assert(polygon_idx > 0 && polygon_idx <= int(has_nothing_inside.size())); + + // The whole contour must have the same ID. In other cases, some counters overlap. + for (const ClipperLib_Z::IntPoint &point : parent_node.Contour) + if (polygon_idx != point.z()) + return; + + has_nothing_inside[polygon_idx - 1] = true; + } + }; + + check_contours(islands_polytree); + return has_nothing_inside; +} + +// INNERMOST means that ExPolygon doesn't contain any other ExPolygons. +// NORMAL is for other cases. +enum class InnerBrimType {NORMAL, INNERMOST}; + +struct InnerBrimExPolygons +{ + ExPolygons brim_area; + InnerBrimType type = InnerBrimType::NORMAL; + double brim_width = 0.; +}; + +static std::vector inner_brim_area(const Print &print, + const ConstPrintObjectPtrs &top_level_objects_with_brim, + const std::vector &bottom_layers_expolygons, + const float no_brim_offset) +{ + assert(print.objects().size() == bottom_layers_expolygons.size()); + std::vector has_nothing_inside = has_polygons_nothing_inside(print, bottom_layers_expolygons); std::unordered_set top_level_objects_idx; top_level_objects_idx.reserve(top_level_objects_with_brim.size()); for (const PrintObject *object : top_level_objects_with_brim) top_level_objects_idx.insert(object->id().id); - ExPolygons brim_area; - ExPolygons no_brim_area; - Polygons holes; + std::vector brim_area_innermost(print.objects().size()); + ExPolygons brim_area; + ExPolygons no_brim_area; + Polygons holes_reversed; + + // polygon_idx must correspond to idx generated inside has_polygons_nothing_inside() + size_t polygon_idx = 0; for(size_t print_object_idx = 0; print_object_idx < print.objects().size(); ++print_object_idx) { const PrintObject *object = print.objects()[print_object_idx]; const BrimType brim_type = object->config().brim_type.value; @@ -221,9 +298,10 @@ static ExPolygons inner_brim_area(const Print &print, const float brim_width = scale_(object->config().brim_width.value); const bool top_outer_brim = top_level_objects_idx.find(object->id().id) != top_level_objects_idx.end(); + ExPolygons brim_area_innermost_object; ExPolygons brim_area_object; ExPolygons no_brim_area_object; - Polygons holes_object; + Polygons holes_reversed_object; for (const ExPolygon &ex_poly : bottom_layers_expolygons[print_object_idx]) { if (brim_type == BrimType::btOuterOnly || brim_type == BrimType::btOuterAndInner) { if (top_outer_brim) @@ -235,8 +313,20 @@ static ExPolygons inner_brim_area(const Print &print, // After 7ff76d07684858fd937ef2f5d863f105a10f798e offset and shrink don't work with CW polygons (holes), so let's make it CCW. Polygons ex_poly_holes_reversed = ex_poly.holes; polygons_reverse(ex_poly_holes_reversed); - if (brim_type == BrimType::btInnerOnly || brim_type == BrimType::btOuterAndInner) - append(brim_area_object, diff_ex(shrink_ex(ex_poly_holes_reversed, brim_separation, ClipperLib::jtSquare), shrink_ex(ex_poly_holes_reversed, brim_width + brim_separation, ClipperLib::jtSquare))); + for (const PrintInstance &instance : object->instances()) { + ++polygon_idx; // Increase idx because of the contour of the ExPolygon. + + if (brim_type == BrimType::btInnerOnly || brim_type == BrimType::btOuterAndInner) + for(const Polygon &hole : ex_poly_holes_reversed) { + size_t hole_idx = &hole - &ex_poly_holes_reversed.front(); + if (has_nothing_inside[polygon_idx + hole_idx]) + append(brim_area_innermost_object, shrink_ex({hole}, brim_separation, ClipperLib::jtSquare)); + else + append(brim_area_object, diff_ex(shrink_ex({hole}, brim_separation, ClipperLib::jtSquare), shrink_ex({hole}, brim_width + brim_separation, ClipperLib::jtSquare))); + } + + polygon_idx += ex_poly.holes.size(); // Increase idx for every hole of the ExPolygon. + } if (brim_type == BrimType::btInnerOnly || brim_type == BrimType::btNoBrim) append(no_brim_area_object, diff_ex(offset(ex_poly.contour, no_brim_offset, ClipperLib::jtSquare), ex_poly_holes_reversed)); @@ -244,18 +334,34 @@ static ExPolygons inner_brim_area(const Print &print, if (brim_type == BrimType::btOuterOnly || brim_type == BrimType::btNoBrim) append(no_brim_area_object, diff_ex(ExPolygon(ex_poly.contour), shrink_ex(ex_poly_holes_reversed, no_brim_offset, ClipperLib::jtSquare))); - append(holes_object, ex_poly_holes_reversed); + append(holes_reversed_object, ex_poly_holes_reversed); } append(no_brim_area_object, offset_ex(bottom_layers_expolygons[print_object_idx], brim_separation, ClipperLib::jtSquare)); for (const PrintInstance &instance : object->instances()) { + append_and_translate(brim_area_innermost[print_object_idx], brim_area_innermost_object, instance); append_and_translate(brim_area, brim_area_object, instance); append_and_translate(no_brim_area, no_brim_area_object, instance); - append_and_translate(holes, holes_object, instance); + append_and_translate(holes_reversed, holes_reversed_object, instance); } } + assert(polygon_idx == has_nothing_inside.size()); - return diff_ex(intersection_ex(to_polygons(std::move(brim_area)), holes), no_brim_area); + ExPolygons brim_area_innermost_merged; + // Append all innermost brim areas. + std::vector brim_area_out; + for (size_t print_object_idx = 0; print_object_idx < print.objects().size(); ++print_object_idx) + if (const double brim_width = print.objects()[print_object_idx]->config().brim_width.value; !brim_area_innermost[print_object_idx].empty()) { + append(brim_area_innermost_merged, brim_area_innermost[print_object_idx]); + brim_area_out.push_back({std::move(brim_area_innermost[print_object_idx]), InnerBrimType::INNERMOST, brim_width}); + } + + // Append all normal brim areas. + brim_area_out.push_back({diff_ex(intersection_ex(to_polygons(std::move(brim_area)), holes_reversed), no_brim_area), InnerBrimType::NORMAL}); + + // Cut out a huge brim areas that overflows into the INNERMOST holes. + brim_area_out.back().brim_area = diff_ex(brim_area_out.back().brim_area, brim_area_innermost_merged); + return brim_area_out; } // Flip orientation of open polylines to minimize travel distance. @@ -359,17 +465,28 @@ static void make_inner_brim(const Print &print, ExtrusionEntityCollection &brim) { assert(print.objects().size() == bottom_layers_expolygons.size()); - const auto scaled_resolution = scaled(print.config().gcode_resolution.value); - Flow flow = print.brim_flow(); - ExPolygons islands_ex = inner_brim_area(print, top_level_objects_with_brim, bottom_layers_expolygons, float(flow.scaled_spacing())); - Polygons loops; - islands_ex = offset_ex(islands_ex, -0.5f * float(flow.scaled_spacing()), ClipperLib::jtSquare); - for (size_t i = 0; !islands_ex.empty(); ++i) { - for (ExPolygon &poly_ex : islands_ex) - poly_ex.douglas_peucker(scaled_resolution); - polygons_append(loops, to_polygons(islands_ex)); - islands_ex = offset_ex(islands_ex, -float(flow.scaled_spacing()), ClipperLib::jtSquare); - } + const auto scaled_resolution = scaled(print.config().gcode_resolution.value); + Flow flow = print.brim_flow(); + std::vector inner_brims_ex = inner_brim_area(print, top_level_objects_with_brim, bottom_layers_expolygons, float(flow.scaled_spacing())); + Polygons loops; + std::mutex loops_mutex; + tbb::parallel_for(tbb::blocked_range(0, inner_brims_ex.size()), [&inner_brims_ex, &flow, &scaled_resolution, &loops, &loops_mutex](const tbb::blocked_range &range) { + for (size_t brim_idx = range.begin(); brim_idx < range.end(); ++brim_idx) { + const InnerBrimExPolygons &inner_brim_ex = inner_brims_ex[brim_idx]; + auto num_loops = size_t(floor(inner_brim_ex.brim_width / flow.spacing())); + ExPolygons islands_ex = offset_ex(inner_brim_ex.brim_area, -0.5f * float(flow.scaled_spacing()), ClipperLib::jtSquare); + for (size_t i = 0; (inner_brim_ex.type == InnerBrimType::INNERMOST ? i < num_loops : !islands_ex.empty()); ++i) { + for (ExPolygon &poly_ex : islands_ex) + poly_ex.douglas_peucker(scaled_resolution); + + { + boost::lock_guard lock(loops_mutex); + polygons_append(loops, to_polygons(islands_ex)); + } + islands_ex = offset_ex(islands_ex, -float(flow.scaled_spacing()), ClipperLib::jtSquare); + } + } + }); // end of parallel_for loops = union_pt_chained_outside_in(loops); std::reverse(loops.begin(), loops.end()); diff --git a/src/libslic3r/BuildVolume.hpp b/src/libslic3r/BuildVolume.hpp index 6b928d48b0..be8d224c39 100644 --- a/src/libslic3r/BuildVolume.hpp +++ b/src/libslic3r/BuildVolume.hpp @@ -94,6 +94,12 @@ public: // Called on initial G-code preview on OpenGL vertex buffer interleaved normals and vertices. bool all_paths_inside_vertices_and_normals_interleaved(const std::vector& paths, const Eigen::AlignedBox& bbox, bool ignore_bottom = true) const; + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + const std::pair, std::vector>& top_bottom_convex_hull_decomposition_scene() const { return m_top_bottom_convex_hull_decomposition_scene; } + const std::pair, std::vector>& top_bottom_convex_hull_decomposition_bed() const { return m_top_bottom_convex_hull_decomposition_bed; } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + private: // Source definition of the print bed geometry (PrintConfig::bed_shape) std::vector m_bed_shape; diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt index ea663f2e1f..5e8d681f1a 100644 --- a/src/libslic3r/CMakeLists.txt +++ b/src/libslic3r/CMakeLists.txt @@ -94,6 +94,8 @@ set(SLIC3R_SOURCES Format/objparser.hpp Format/STL.cpp Format/STL.hpp + Format/SLAArchive.hpp + Format/SLAArchive.cpp Format/SL1.hpp Format/SL1.cpp Format/SL1_SVG.hpp @@ -356,7 +358,7 @@ find_package(JPEG REQUIRED) target_link_libraries(libslic3r libnest2d admesh - cereal + libcereal libigl miniz boost_libs diff --git a/src/libslic3r/Execution/Execution.hpp b/src/libslic3r/Execution/Execution.hpp index 62e49cfeb3..dcfd86bde8 100644 --- a/src/libslic3r/Execution/Execution.hpp +++ b/src/libslic3r/Execution/Execution.hpp @@ -5,6 +5,7 @@ #include #include #include +#include #include "libslic3r/libslic3r.h" @@ -44,7 +45,8 @@ size_t max_concurrency(const EP &ep) template> void for_each(const EP &ep, It from, It to, Fn &&fn, size_t granularity = 1) { - AsTraits::for_each(ep, from, to, std::forward(fn), granularity); + AsTraits::for_each(ep, from, to, std::forward(fn), + std::max(granularity, size_t(1))); } // A reduce operation with the execution policy passed as argument. @@ -68,7 +70,7 @@ T reduce(const EP & ep, return AsTraits::reduce(ep, from, to, init, std::forward(mergefn), std::forward(accessfn), - granularity); + std::max(granularity, size_t(1))); } // An overload of reduce method to be used with iterators as 'from' and 'to' @@ -87,7 +89,7 @@ T reduce(const EP &ep, { return reduce( ep, from, to, init, std::forward(mergefn), - [](const auto &i) { return i; }, granularity); + [](const auto &i) { return i; }, std::max(granularity, size_t(1))); } template{}, - std::forward(accessfn), granularity); + std::forward(accessfn), + std::max(granularity, size_t(1))); } @@ -119,7 +122,7 @@ T accumulate(const EP &ep, { return reduce( ep, from, to, init, std::plus{}, [](const auto &i) { return i; }, - granularity); + std::max(granularity, size_t(1))); } } // namespace execution_policy diff --git a/src/libslic3r/Format/SL1.hpp b/src/libslic3r/Format/SL1.hpp index 874786eb9c..493550db4b 100644 --- a/src/libslic3r/Format/SL1.hpp +++ b/src/libslic3r/Format/SL1.hpp @@ -3,8 +3,12 @@ #include +#include "SLAArchive.hpp" + #include "libslic3r/Zipper.hpp" -#include "libslic3r/SLAPrint.hpp" +#include "libslic3r/PrintConfig.hpp" + +struct indexed_triangle_set; namespace Slic3r { diff --git a/src/libslic3r/Format/SL1_SVG.cpp b/src/libslic3r/Format/SL1_SVG.cpp index a7a8c9ed6b..372348283a 100644 --- a/src/libslic3r/Format/SL1_SVG.cpp +++ b/src/libslic3r/Format/SL1_SVG.cpp @@ -2,6 +2,7 @@ #include "SLA/RasterBase.hpp" #include "libslic3r/LocalesUtils.hpp" #include "libslic3r/ClipperUtils.hpp" +#include "libslic3r/BoundingBox.hpp" #include #include diff --git a/src/libslic3r/Format/SLAArchive.cpp b/src/libslic3r/Format/SLAArchive.cpp new file mode 100644 index 0000000000..8e2bf2824f --- /dev/null +++ b/src/libslic3r/Format/SLAArchive.cpp @@ -0,0 +1,74 @@ +#include "SLAArchive.hpp" + +#include "SL1.hpp" +#include "SL1_SVG.hpp" +#include "pwmx.hpp" + +#include "libslic3r/libslic3r.h" + +#include +#include +#include +#include + +namespace Slic3r { + +using ArchiveFactory = std::function(const SLAPrinterConfig&)>; + +struct ArchiveEntry { + const char *ext; + ArchiveFactory factoryfn; +}; + +static const std::map REGISTERED_ARCHIVES { + { + "SL1", + { "sl1", [] (const auto &cfg) { return std::make_unique(cfg); } } + }, + { + "SL2", + { "sl2", [] (const auto &cfg) { return std::make_unique(cfg); } } + }, + { + "pwmx", + { "pwmx", [] (const auto &cfg) { return std::make_unique(cfg); } } + } +}; + +std::unique_ptr +SLAArchive::create(const std::string &archtype, const SLAPrinterConfig &cfg) +{ + auto entry = REGISTERED_ARCHIVES.find(archtype); + + if (entry != REGISTERED_ARCHIVES.end()) + return entry->second.factoryfn(cfg); + + return nullptr; +} + +const std::vector& SLAArchive::registered_archives() +{ + static std::vector archnames; + + if (archnames.empty()) { + archnames.reserve(REGISTERED_ARCHIVES.size()); + + for (auto &[name, _] : REGISTERED_ARCHIVES) + archnames.emplace_back(name.c_str()); + } + + return archnames; +} + +const char *SLAArchive::get_extension(const char *archtype) +{ + static const char* DEFAULT_EXT = "zip"; + + auto entry = REGISTERED_ARCHIVES.find(archtype); + if (entry != REGISTERED_ARCHIVES.end()) + return entry->second.ext; + + return DEFAULT_EXT; +} + +} // namespace Slic3r diff --git a/src/libslic3r/Format/SLAArchive.hpp b/src/libslic3r/Format/SLAArchive.hpp new file mode 100644 index 0000000000..971d7ba7b8 --- /dev/null +++ b/src/libslic3r/Format/SLAArchive.hpp @@ -0,0 +1,64 @@ +#ifndef SLAARCHIVE_HPP +#define SLAARCHIVE_HPP + +#include + +#include "libslic3r/SLA/RasterBase.hpp" +#include "libslic3r/Execution/ExecutionTBB.hpp" +#include "libslic3r/GCode/ThumbnailData.hpp" + +namespace Slic3r { + +class SLAPrint; +class SLAPrinterConfig; + +class SLAArchive { +protected: + std::vector m_layers; + + virtual std::unique_ptr create_raster() const = 0; + virtual sla::RasterEncoder get_encoder() const = 0; + +public: + virtual ~SLAArchive() = default; + + // Fn have to be thread safe: void(sla::RasterBase& raster, size_t lyrid); + template + void draw_layers( + size_t layer_num, + Fn && drawfn, + CancelFn cancelfn = []() { return false; }, + const EP & ep = {}) + { + m_layers.resize(layer_num); + execution::for_each( + ep, size_t(0), m_layers.size(), + [this, &drawfn, &cancelfn](size_t idx) { + if (cancelfn()) return; + + sla::EncodedRaster &enc = m_layers[idx]; + auto rst = create_raster(); + drawfn(*rst, idx); + enc = rst->encode(get_encoder()); + }, + execution::max_concurrency(ep)); + } + + // Export the print into an archive using the provided filename. + virtual void export_print(const std::string fname, + const SLAPrint &print, + const ThumbnailsList &thumbnails, + const std::string &projectname = "") = 0; + + // Factory method to create an archiver instance + static std::unique_ptr create(const std::string &archtype, const SLAPrinterConfig&); + + // Get the names of currently known archiver implementations + static const std::vector & registered_archives(); + + // Get the default file extension belonging to an archive format + static const char *get_extension(const char *archtype); +}; + +} // namespace Slic3r +#endif // SLAARCHIVE_HPP diff --git a/src/libslic3r/Format/pwmx.cpp b/src/libslic3r/Format/pwmx.cpp index 5b420a49ec..f3f0f6802a 100644 --- a/src/libslic3r/Format/pwmx.cpp +++ b/src/libslic3r/Format/pwmx.cpp @@ -1,6 +1,7 @@ #include "pwmx.hpp" #include "GCode/ThumbnailData.hpp" #include "SLA/RasterBase.hpp" +#include "libslic3r/SLAPrint.hpp" #include #include @@ -277,8 +278,9 @@ void fill_header(pwmx_format_header &h, std::float_t bottle_volume_ml; std::float_t bottle_cost; std::float_t material_density; - auto & cfg = print.full_print_config(); - std::string mnotes = cfg.option("material_notes")->serialize(); + auto &cfg = print.full_print_config(); + auto mat_opt = cfg.option("material_notes"); + std::string mnotes = mat_opt? cfg.option("material_notes")->serialize() : ""; // create a config parser from the material notes Slic3r::PwmxFormatDynamicConfig mat_cfg; SLAPrintStatistics stats = print.print_statistics(); diff --git a/src/libslic3r/Format/pwmx.hpp b/src/libslic3r/Format/pwmx.hpp index d1179c0144..65fb199102 100644 --- a/src/libslic3r/Format/pwmx.hpp +++ b/src/libslic3r/Format/pwmx.hpp @@ -3,7 +3,9 @@ #include -#include "libslic3r/SLAPrint.hpp" +#include "SLAArchive.hpp" + +#include "libslic3r/PrintConfig.hpp" namespace Slic3r { diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index fb6dee37ba..6be35a8c82 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -274,7 +274,6 @@ namespace Slic3r { // Otherwise, leave control to the user completely. std::string toolchange_gcode_str; const std::string& toolchange_gcode = gcodegen.config().toolchange_gcode.value; -// m_max_layer_z = std::max(m_max_layer_z, tcr.print_z); if (! toolchange_gcode.empty()) { DynamicConfig config; int previous_extruder_id = gcodegen.writer().extruder() ? (int)gcodegen.writer().extruder()->id() : -1; @@ -283,7 +282,7 @@ namespace Slic3r { config.set_key_value("layer_num", new ConfigOptionInt(gcodegen.m_layer_index)); config.set_key_value("layer_z", new ConfigOptionFloat(tcr.print_z)); config.set_key_value("toolchange_z", new ConfigOptionFloat(z)); -// config.set_key_value("max_layer_z", new ConfigOptionFloat(m_max_layer_z)); + config.set_key_value("max_layer_z", new ConfigOptionFloat(gcodegen.m_max_layer_z)); toolchange_gcode_str = gcodegen.placeholder_parser_process("toolchange_gcode", toolchange_gcode, new_extruder_id, &config); check_add_eol(toolchange_gcode_str); } @@ -305,6 +304,9 @@ namespace Slic3r { if (!start_filament_gcode.empty()) { // Process the start_filament_gcode for the active filament only. DynamicConfig config; + config.set_key_value("layer_num", new ConfigOptionInt(gcodegen.m_layer_index)); + config.set_key_value("layer_z", new ConfigOptionFloat(gcodegen.writer().get_position()(2) - gcodegen.m_config.z_offset.value)); + config.set_key_value("max_layer_z", new ConfigOptionFloat(gcodegen.m_max_layer_z)); config.set_key_value("filament_extruder_id", new ConfigOptionInt(new_extruder_id)); start_filament_gcode_str = gcodegen.placeholder_parser_process("start_filament_gcode", start_filament_gcode, new_extruder_id, &config); check_add_eol(start_filament_gcode_str); @@ -1045,7 +1047,7 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato if (! print.config().gcode_substitutions.values.empty()) { m_find_replace = make_unique(print.config()); - file.set_find_replace(m_find_replace.get()); + file.set_find_replace(m_find_replace.get(), false); } // resets analyzer's tracking data @@ -1153,6 +1155,9 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato } print.throw_if_canceled(); + // Starting now, the G-code find / replace post-processor will be enabled. + file.find_replace_enable(); + // adds tags for time estimators if (print.config().remaining_times.value) file.write_format(";%s\n", GCodeProcessor::reserved_tag(GCodeProcessor::ETags::First_Line_M73_Placeholder).c_str()); @@ -1274,15 +1279,6 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato // Write the custom start G-code file.writeln(start_gcode); - // Process filament-specific gcode. - /* if (has_wipe_tower) { - // Wipe tower will control the extruder switching, it will call the start_filament_gcode. - } else { - DynamicConfig config; - config.set_key_value("filament_extruder_id", new ConfigOptionInt(int(initial_extruder_id))); - file.writeln(this->placeholder_parser_process("start_filament_gcode", print.config().start_filament_gcode.values[initial_extruder_id], initial_extruder_id, &config)); - } -*/ this->_print_first_layer_extruder_temperatures(file, print, start_gcode, initial_extruder_id, true); print.throw_if_canceled(); @@ -1468,6 +1464,10 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato file.write_format("; total toolchanges = %i\n", print.m_print_statistics.total_toolchanges); file.write_format(";%s\n", GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Estimated_Printing_Time_Placeholder).c_str()); + // From now to the end of G-code, the G-code find / replace post-processor will be disabled. + // Thus the PrusaSlicer generated config will NOT be processed by the G-code post-processor, see GH issue #7952. + file.find_replace_supress(); + // Append full config, delimited by two 'phony' configuration keys prusaslicer_config = begin and prusaslicer_config = end. // The delimiters are structured as configuration key / value pairs to be parsable by older versions of PrusaSlicer G-code viewer. { @@ -1525,7 +1525,7 @@ void GCode::process_layers( ); // The pipeline elements are joined using const references, thus no copying is performed. - output_stream.set_find_replace(nullptr); + output_stream.find_replace_supress(); if (m_spiral_vase && m_find_replace) tbb::parallel_pipeline(12, generator & spiral_vase & cooling & find_replace & output); else if (m_spiral_vase) @@ -1534,7 +1534,7 @@ void GCode::process_layers( tbb::parallel_pipeline(12, generator & cooling & find_replace & output); else tbb::parallel_pipeline(12, generator & cooling & output); - output_stream.set_find_replace(m_find_replace.get()); + output_stream.find_replace_enable(); } // Process all layers of a single object instance (sequential mode) with a parallel pipeline: @@ -1578,7 +1578,7 @@ void GCode::process_layers( ); // The pipeline elements are joined using const references, thus no copying is performed. - output_stream.set_find_replace(nullptr); + output_stream.find_replace_supress(); if (m_spiral_vase && m_find_replace) tbb::parallel_pipeline(12, generator & spiral_vase & cooling & find_replace & output); else if (m_spiral_vase) @@ -1587,7 +1587,7 @@ void GCode::process_layers( tbb::parallel_pipeline(12, generator & cooling & find_replace & output); else tbb::parallel_pipeline(12, generator & cooling & output); - output_stream.set_find_replace(m_find_replace.get()); + output_stream.find_replace_enable(); } std::string GCode::placeholder_parser_process(const std::string &name, const std::string &templ, unsigned int current_extruder_id, const DynamicConfig *config_override) @@ -1899,6 +1899,8 @@ namespace ProcessLayer // && !MMU1 ) { //! FIXME_in_fw show message during print pause + // FIXME: Why is pause_print_gcode here? Why is it supplied "color_change_extruder"? Why is that not + // passed to color_change_gcode below? DynamicConfig cfg; cfg.set_key_value("color_change_extruder", new ConfigOptionInt(m600_extruder_before_layer)); gcode += gcodegen.placeholder_parser_process("pause_print_gcode", config.pause_print_gcode, current_extruder_id, &cfg); @@ -2109,10 +2111,10 @@ GCode::LayerResult GCode::process_layer( DynamicConfig config; config.set_key_value("layer_num", new ConfigOptionInt(m_layer_index)); config.set_key_value("layer_z", new ConfigOptionFloat(print_z)); + config.set_key_value("max_layer_z", new ConfigOptionFloat(m_max_layer_z)); gcode += this->placeholder_parser_process("layer_gcode", print.config().layer_gcode.value, m_writer.extruder()->id(), &config) + "\n"; - config.set_key_value("max_layer_z", new ConfigOptionFloat(m_max_layer_z)); } if (! first_layer && ! m_second_layer_things_done) { @@ -3146,7 +3148,9 @@ std::string GCode::set_extruder(unsigned int extruder_id, double print_z) const std::string &start_filament_gcode = m_config.start_filament_gcode.get_at(extruder_id); if (! start_filament_gcode.empty()) { // Process the start_filament_gcode for the filament. - gcode += this->placeholder_parser_process("start_filament_gcode", start_filament_gcode, extruder_id); + DynamicConfig config; + config.set_key_value("filament_extruder_id", new ConfigOptionInt(int(extruder_id))); + gcode += this->placeholder_parser_process("start_filament_gcode", start_filament_gcode, extruder_id, &config); check_add_eol(gcode); } gcode += m_writer.toolchange(extruder_id); @@ -3215,7 +3219,9 @@ std::string GCode::set_extruder(unsigned int extruder_id, double print_z) const std::string &start_filament_gcode = m_config.start_filament_gcode.get_at(extruder_id); if (! start_filament_gcode.empty()) { // Process the start_filament_gcode for the new filament. - gcode += this->placeholder_parser_process("start_filament_gcode", start_filament_gcode, extruder_id); + DynamicConfig config; + config.set_key_value("filament_extruder_id", new ConfigOptionInt(int(extruder_id))); + gcode += this->placeholder_parser_process("start_filament_gcode", start_filament_gcode, extruder_id, &config); check_add_eol(gcode); } // Set the new extruder to the operating temperature. diff --git a/src/libslic3r/GCode.hpp b/src/libslic3r/GCode.hpp index c0e636c797..aa4682e34b 100644 --- a/src/libslic3r/GCode.hpp +++ b/src/libslic3r/GCode.hpp @@ -196,7 +196,9 @@ private: // Set a find-replace post-processor to modify the G-code before GCodePostProcessor. // It is being set to null inside process_layers(), because the find-replace process // is being called on a secondary thread to improve performance. - void set_find_replace(GCodeFindReplace *find_replace) { m_find_replace = find_replace; } + void set_find_replace(GCodeFindReplace *find_replace, bool enabled) { m_find_replace_backup = find_replace; m_find_replace = enabled ? find_replace : nullptr; } + void find_replace_enable() { m_find_replace = m_find_replace_backup; } + void find_replace_supress() { m_find_replace = nullptr; } bool is_open() const { return f; } bool is_error() const; @@ -220,6 +222,8 @@ private: FILE *f { nullptr }; // Find-replace post-processor to be called before GCodePostProcessor. GCodeFindReplace *m_find_replace { nullptr }; + // If suppressed, the backoup holds m_find_replace. + GCodeFindReplace *m_find_replace_backup { nullptr }; GCodeProcessor &m_processor; }; void _do_export(Print &print, GCodeOutputStream &file, ThumbnailsGeneratorCallback thumbnail_cb); diff --git a/src/libslic3r/MultiMaterialSegmentation.cpp b/src/libslic3r/MultiMaterialSegmentation.cpp index 75537b6c64..9560096bed 100644 --- a/src/libslic3r/MultiMaterialSegmentation.cpp +++ b/src/libslic3r/MultiMaterialSegmentation.cpp @@ -605,7 +605,7 @@ struct MMU_Graph if (arcs[arc_idx].to_idx == to_idx) return; for (const size_t &arc_idx : this->nodes[to_idx].arc_idxs) - if (arcs[arc_idx].to_idx == to_idx) + if (arcs[arc_idx].to_idx == from_idx) return; this->nodes[from_idx].arc_idxs.push_back(this->arcs.size()); @@ -1201,7 +1201,7 @@ static inline double compute_edge_length(const MMU_Graph &graph, const size_t st used_arcs[start_arc_idx] = true; const MMU_Graph::Arc *arc = &graph.arcs[start_arc_idx]; size_t idx = start_idx; - double line_total_length = (graph.nodes[arc->to_idx].point - graph.nodes[idx].point).norm();; + double line_total_length = (graph.nodes[arc->to_idx].point - graph.nodes[idx].point).norm(); while (graph.nodes[arc->to_idx].arc_idxs.size() == 2) { bool found = false; for (const size_t &arc_idx : graph.nodes[arc->to_idx].arc_idxs) { @@ -1711,7 +1711,7 @@ std::vector> multi_material_segmentation_by_painting(con // Such close points sometimes caused that the Voronoi diagram has self-intersecting edges around these vertices. // This consequently leads to issues with the extraction of colored segments by function extract_colored_segments. // Calling expolygons_simplify fixed these issues. - input_expolygons[layer_idx] = smooth_outward(expolygons_simplify(offset_ex(ex_polygons, -10.f * float(SCALED_EPSILON)), 5 * SCALED_EPSILON), 10 * coord_t(SCALED_EPSILON)); + input_expolygons[layer_idx] = remove_duplicates(expolygons_simplify(offset_ex(ex_polygons, -10.f * float(SCALED_EPSILON)), 5 * SCALED_EPSILON), scaled(0.01), PI/6); #ifdef MMU_SEGMENTATION_DEBUG_INPUT { diff --git a/src/libslic3r/MutablePolygon.cpp b/src/libslic3r/MutablePolygon.cpp index 403d625bfc..45c74d0a6e 100644 --- a/src/libslic3r/MutablePolygon.cpp +++ b/src/libslic3r/MutablePolygon.cpp @@ -37,6 +37,36 @@ void remove_duplicates(MutablePolygon &polygon, double eps) } } +// Remove nearly duplicate points. If a distance between two points is less than scaled_eps +// and if the angle between its surrounding lines is less than max_angle, the point will be removed. +// May reduce the polygon down to empty polygon. +void remove_duplicates(MutablePolygon &polygon, coord_t scaled_eps, const double max_angle) +{ + if (polygon.size() >= 3) { + auto cos_max_angle_2 = Slic3r::sqr(cos(max_angle)); + auto scaled_eps_sqr = Slic3r::sqr(scaled_eps); + auto begin = polygon.begin(); + auto it = begin; + for (++it; it != begin;) { + auto prev = it.prev(); + auto next = it.next(); + Vec2i64 v1 = (*it - *prev).cast(); + int64_t v1_sqr_norm = v1.squaredNorm(); + if (v1_sqr_norm < scaled_eps_sqr) { + if (Vec2i64 v2 = (*next - *prev).cast(); + Slic3r::sqr(double(v1.dot(v2))) > cos_max_angle_2 * double(v1_sqr_norm) * double(v2.squaredNorm())) { + it = it.remove(); + continue; + } + } + it = next; + } + } + + if (polygon.size() < 3) + polygon.clear(); +} + // Adapted from Cura ConstPolygonRef::smooth_corner_complex() by Tim Kuipers. // A concave corner at it1 with position p1 has been removed by the caller between it0 and it2, where |p2 - p0| < shortcut_length. // Now try to close a concave crack by walking left from it0 and right from it2 as long as the new clipping edge is smaller than shortcut_length diff --git a/src/libslic3r/MutablePolygon.hpp b/src/libslic3r/MutablePolygon.hpp index 1b2b4e4459..ea41d6fb40 100644 --- a/src/libslic3r/MutablePolygon.hpp +++ b/src/libslic3r/MutablePolygon.hpp @@ -309,6 +309,28 @@ inline bool operator!=(const MutablePolygon &p1, const MutablePolygon &p2) { ret void remove_duplicates(MutablePolygon &polygon); void remove_duplicates(MutablePolygon &polygon, double eps); +// Remove nearly duplicate points. If a distance between two points is less than scaled_eps +// and if the angle between its surrounding lines is less than max_angle, the point will be removed. +// May reduce the polygon down to empty polygon. +void remove_duplicates(MutablePolygon &polygon, coord_t scaled_eps, const double max_angle); +inline ExPolygons remove_duplicates(ExPolygons expolygons, coord_t scaled_eps, double max_angle) +{ + MutablePolygon mp; + for (ExPolygon &expolygon : expolygons) { + mp.assign(expolygon.contour, expolygon.contour.size() * 2); + remove_duplicates(mp, scaled_eps, max_angle); + mp.polygon(expolygon.contour); + for (Polygon &hole : expolygon.holes) { + mp.assign(hole, hole.size() * 2); + remove_duplicates(mp, scaled_eps, max_angle); + mp.polygon(hole); + } + expolygon.holes.erase(std::remove_if(expolygon.holes.begin(), expolygon.holes.end(), [](const auto &p) { return p.empty(); }), expolygon.holes.end()); + } + expolygons.erase(std::remove_if(expolygons.begin(), expolygons.end(), [](const auto &p) { return p.empty(); }), expolygons.end()); + return expolygons; +} + void smooth_outward(MutablePolygon &polygon, coord_t clip_dist_scaled); inline Polygon smooth_outward(Polygon polygon, coord_t clip_dist_scaled) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index ca1363da24..2e630b9c83 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -412,6 +412,8 @@ void Preset::set_visible_from_appconfig(const AppConfig &app_config) for (auto it = this->renamed_from.begin(); ! is_visible && it != this->renamed_from.end(); ++ it) is_visible = has(*it); } + else + is_visible = false; } } @@ -791,7 +793,8 @@ std::pair PresetCollection::load_external_preset( // The source config may contain keys from many possible preset types. Just copy those that relate to this preset. this->get_edited_preset().config.apply_only(combined_config, keys, true); this->update_dirty(); - update_saved_preset_from_current_preset(); + // Don't save the newly loaded project as a "saved into project" state. + //update_saved_preset_from_current_preset(); assert(this->get_edited_preset().is_dirty); return std::make_pair(&(*it), this->get_edited_preset().is_dirty); } @@ -1226,7 +1229,6 @@ Preset& PresetCollection::select_preset(size_t idx) idx = first_visible_idx(); m_idx_selected = idx; m_edited_preset = m_presets[idx]; - update_saved_preset_from_current_preset(); bool default_visible = ! m_default_suppressed || m_idx_selected < m_num_default_presets; for (size_t i = 0; i < m_num_default_presets; ++i) m_presets[i].is_visible = default_visible; diff --git a/src/libslic3r/Preset.hpp b/src/libslic3r/Preset.hpp index fc45110fd4..25ae37484b 100644 --- a/src/libslic3r/Preset.hpp +++ b/src/libslic3r/Preset.hpp @@ -397,6 +397,7 @@ public: void discard_current_changes() { m_presets[m_idx_selected].reset_dirty(); m_edited_preset = m_presets[m_idx_selected]; + // Don't save the resetted preset state as a "saved into project" state. // update_saved_preset_from_current_preset(); } diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 9f848b49b6..85246df315 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -660,7 +660,8 @@ std::string Print::validate(std::string* warning) const bool layer_gcode_resets_extruder = boost::regex_search(m_config.layer_gcode.value, regex_g92e0); if (m_config.use_relative_e_distances) { // See GH issues #6336 #5073 - if (! before_layer_gcode_resets_extruder && ! layer_gcode_resets_extruder) + if ((m_config.gcode_flavor == gcfMarlinLegacy || m_config.gcode_flavor == gcfMarlinFirmware) && + ! before_layer_gcode_resets_extruder && ! layer_gcode_resets_extruder) return L("Relative extruder addressing requires resetting the extruder position at each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to layer_gcode."); } else if (before_layer_gcode_resets_extruder) return L("\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing."); diff --git a/src/libslic3r/SLA/SupportTreeBuildsteps.cpp b/src/libslic3r/SLA/SupportTreeBuildsteps.cpp index 6134e1f5ab..aa69fdc777 100644 --- a/src/libslic3r/SLA/SupportTreeBuildsteps.cpp +++ b/src/libslic3r/SLA/SupportTreeBuildsteps.cpp @@ -982,7 +982,7 @@ bool SupportTreeBuildsteps::connect_to_model_body(Head &head) double w = dist - 2 * head.r_pin_mm - head.r_back_mm; if (w < 0.) { - BOOST_LOG_TRIVIAL(error) << "Pinhead width is negative!"; + BOOST_LOG_TRIVIAL(warning) << "Pinhead width is negative!"; w = 0.; } diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index 2622b6a23c..72cb96dd04 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -245,15 +245,8 @@ SLAPrint::ApplyStatus SLAPrint::apply(const Model &model, DynamicPrintConfig con // Handle changes to object config defaults m_default_object_config.apply_only(config, object_diff, true); - if (!m_archiver || !printer_diff.empty()) { - if (m_printer_config.sla_archive_format.value == "SL1") - m_archiver = std::make_unique(m_printer_config); - else if (m_printer_config.sla_archive_format.value == "SL2") - m_archiver = std::make_unique(m_printer_config); - else if (m_printer_config.sla_archive_format.value == "pwmx") { - m_archiver = std::make_unique(m_printer_config); - } - } + if (!m_archiver || !printer_diff.empty()) + m_archiver = SLAArchive::create(m_printer_config.sla_archive_format.value.c_str(), m_printer_config); struct ModelObjectStatus { enum Status { diff --git a/src/libslic3r/SLAPrint.hpp b/src/libslic3r/SLAPrint.hpp index 2d49139a4f..0723382b39 100644 --- a/src/libslic3r/SLAPrint.hpp +++ b/src/libslic3r/SLAPrint.hpp @@ -9,6 +9,7 @@ #include "Point.hpp" #include "MTUtils.hpp" #include "Zipper.hpp" +#include "Format/SLAArchive.hpp" #include "GCode/ThumbnailData.hpp" #include "libslic3r/Execution/ExecutionTBB.hpp" @@ -390,45 +391,6 @@ struct SLAPrintStatistics } }; -class SLAArchive { -protected: - std::vector m_layers; - - virtual std::unique_ptr create_raster() const = 0; - virtual sla::RasterEncoder get_encoder() const = 0; - -public: - virtual ~SLAArchive() = default; - - // Fn have to be thread safe: void(sla::RasterBase& raster, size_t lyrid); - template - void draw_layers( - size_t layer_num, - Fn && drawfn, - CancelFn cancelfn = []() { return false; }, - const EP & ep = {}) - { - m_layers.resize(layer_num); - execution::for_each( - ep, size_t(0), m_layers.size(), - [this, &drawfn, &cancelfn](size_t idx) { - if (cancelfn()) return; - - sla::EncodedRaster &enc = m_layers[idx]; - auto rst = create_raster(); - drawfn(*rst, idx); - enc = rst->encode(get_encoder()); - }, - execution::max_concurrency(ep)); - } - - // Export the print into an archive using the provided filename. - virtual void export_print(const std::string fname, - const SLAPrint &print, - const ThumbnailsList &thumbnails, - const std::string &projectname = "") = 0; -}; - /** * @brief This class is the high level FSM for the SLA printing process. * diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt index 34c0efd014..022bba2a8a 100644 --- a/src/slic3r/CMakeLists.txt +++ b/src/slic3r/CMakeLists.txt @@ -270,7 +270,7 @@ endforeach() encoding_check(libslic3r_gui) -target_link_libraries(libslic3r_gui libslic3r avrdude cereal imgui GLEW::GLEW OpenGL::GL hidapi libcurl ${wxWidgets_LIBRARIES}) +target_link_libraries(libslic3r_gui libslic3r avrdude libcereal imgui GLEW::GLEW OpenGL::GL hidapi libcurl ${wxWidgets_LIBRARIES}) if (MSVC) target_link_libraries(libslic3r_gui Setupapi.lib) diff --git a/src/slic3r/GUI/3DScene.cpp b/src/slic3r/GUI/3DScene.cpp index 23ca974dd7..2405f39bca 100644 --- a/src/slic3r/GUI/3DScene.cpp +++ b/src/slic3r/GUI/3DScene.cpp @@ -1,10 +1,12 @@ #include +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #if ENABLE_SMOOTH_NORMALS #include #include #include #endif // ENABLE_SMOOTH_NORMALS +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #include "3DScene.hpp" #include "GLShader.hpp" @@ -69,6 +71,7 @@ void glAssertRecentCallImpl(const char* file_name, unsigned int line, const char namespace Slic3r { +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #if ENABLE_SMOOTH_NORMALS static void smooth_normals_corner(TriangleMesh& mesh, std::vector& normals) { @@ -287,6 +290,7 @@ void GLIndexedVertexArray::render( glsafe(::glBindBuffer(GL_ARRAY_BUFFER, 0)); } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL const float GLVolume::SinkingContours::HalfWidth = 0.25f; @@ -483,7 +487,9 @@ GLVolume::GLVolume(float r, float g, float b, float a) , force_neutral_color(false) , force_sinking_contours(false) , tverts_range(0, size_t(-1)) +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL , qverts_range(0, size_t(-1)) +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { color = { r, g, b, a }; set_render_color(color); @@ -599,6 +605,36 @@ const BoundingBoxf3& GLVolume::transformed_non_sinking_bounding_box() const return *m_transformed_non_sinking_bounding_box; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GLVolume::set_range(double min_z, double max_z) +{ + this->tverts_range.first = 0; + this->tverts_range.second = this->model.indices_count(); + + if (!this->print_zs.empty()) { + // The Z layer range is specified. + // First test whether the Z span of this object is not out of (min_z, max_z) completely. + if (this->print_zs.front() > max_z || this->print_zs.back() < min_z) + this->tverts_range.second = 0; + else { + // Then find the lowest layer to be displayed. + size_t i = 0; + for (; i < this->print_zs.size() && this->print_zs[i] < min_z; ++i); + if (i == this->print_zs.size()) + // This shall not happen. + this->tverts_range.second = 0; + else { + // Remember start of the layer. + this->tverts_range.first = this->offsets[i]; + // Some layers are above $min_z. Which? + for (; i < this->print_zs.size() && this->print_zs[i] <= max_z; ++i); + if (i < this->print_zs.size()) + this->tverts_range.second = this->offsets[i]; + } + } + } +} +#else void GLVolume::set_range(double min_z, double max_z) { this->qverts_range.first = 0; @@ -611,7 +647,8 @@ void GLVolume::set_range(double min_z, double max_z) if (this->print_zs.front() > max_z || this->print_zs.back() < min_z) { this->qverts_range.second = 0; this->tverts_range.second = 0; - } else { + } + else { // Then find the lowest layer to be displayed. size_t i = 0; for (; i < this->print_zs.size() && this->print_zs[i] < min_z; ++ i); @@ -619,7 +656,8 @@ void GLVolume::set_range(double min_z, double max_z) // This shall not happen. this->qverts_range.second = 0; this->tverts_range.second = 0; - } else { + } + else { // Remember start of the layer. this->qverts_range.first = this->offsets[i * 2]; this->tverts_range.first = this->offsets[i * 2 + 1]; @@ -633,8 +671,9 @@ void GLVolume::set_range(double min_z, double max_z) } } } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL -void GLVolume::render() const +void GLVolume::render() { if (!is_active) return; @@ -645,7 +684,14 @@ void GLVolume::render() const glsafe(::glPushMatrix()); glsafe(::glMultMatrixd(world_matrix().data())); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (tverts_range == std::make_pair(0, -1)) + model.render(); + else + model.render(this->tverts_range); +#else this->indexed_vertex_array.render(this->tverts_range, this->qverts_range); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL glsafe(::glPopMatrix()); if (this->is_left_handed()) @@ -680,25 +726,44 @@ void GLVolume::render_non_manifold_edges() } #endif // ENABLE_SHOW_NON_MANIFOLD_EDGES +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +std::vector GLVolumeCollection::load_object( + const ModelObject* model_object, + int obj_idx, + const std::vector& instance_idxs) +#else std::vector GLVolumeCollection::load_object( const ModelObject *model_object, int obj_idx, const std::vector &instance_idxs, bool opengl_initialized) +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { std::vector volumes_idx; for (int volume_idx = 0; volume_idx < int(model_object->volumes.size()); ++volume_idx) for (int instance_idx : instance_idxs) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volumes_idx.emplace_back(this->GLVolumeCollection::load_object_volume(model_object, obj_idx, volume_idx, instance_idx)); +#else volumes_idx.emplace_back(this->GLVolumeCollection::load_object_volume(model_object, obj_idx, volume_idx, instance_idx, opengl_initialized)); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL return volumes_idx; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +int GLVolumeCollection::load_object_volume( + const ModelObject* model_object, + int obj_idx, + int volume_idx, + int instance_idx) +#else int GLVolumeCollection::load_object_volume( const ModelObject *model_object, int obj_idx, int volume_idx, int instance_idx, bool opengl_initialized) +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { const ModelVolume *model_volume = model_object->volumes[volume_idx]; const int extruder_id = model_volume->extruder_id(); @@ -707,15 +772,22 @@ int GLVolumeCollection::load_object_volume( this->volumes.emplace_back(new GLVolume()); GLVolume& v = *this->volumes.back(); v.set_color(color_from_model_volume(*model_volume)); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_SMOOTH_NORMALS + v.model.init_from(mesh, true); +#else + v.model.init_from(mesh); +#endif // ENABLE_SMOOTH_NORMALS +#else #if ENABLE_SMOOTH_NORMALS v.indexed_vertex_array.load_mesh(mesh, true); #else v.indexed_vertex_array.load_mesh(mesh); #endif // ENABLE_SMOOTH_NORMALS v.indexed_vertex_array.finalize_geometry(opengl_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.composite_id = GLVolume::CompositeID(obj_idx, volume_idx, instance_idx); - if (model_volume->is_model_part()) - { + if (model_volume->is_model_part()) { // GLVolume will reference a convex hull from model_volume! v.set_convex_hull(model_volume->get_convex_hull_shared_ptr()); if (extruder_id != -1) @@ -732,6 +804,16 @@ int GLVolumeCollection::load_object_volume( // Load SLA auxiliary GLVolumes (for support trees or pad). // This function produces volumes for multiple instances in a single shot, // as some object specific mesh conversions may be expensive. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GLVolumeCollection::load_object_auxiliary( + const SLAPrintObject* print_object, + int obj_idx, + // pairs of + const std::vector>& instances, + SLAPrintObjectStep milestone, + // Timestamp of the last change of the milestone + size_t timestamp) +#else void GLVolumeCollection::load_object_auxiliary( const SLAPrintObject *print_object, int obj_idx, @@ -741,6 +823,7 @@ void GLVolumeCollection::load_object_auxiliary( // Timestamp of the last change of the milestone size_t timestamp, bool opengl_initialized) +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { assert(print_object->is_step_done(milestone)); Transform3d mesh_trafo_inv = print_object->trafo().inverse(); @@ -753,12 +836,21 @@ void GLVolumeCollection::load_object_auxiliary( const ModelInstance& model_instance = *print_object->model_object()->instances[instance_idx.first]; this->volumes.emplace_back(new GLVolume((milestone == slaposPad) ? GLVolume::SLA_PAD_COLOR : GLVolume::SLA_SUPPORT_COLOR)); GLVolume& v = *this->volumes.back(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_SMOOTH_NORMALS + v.model.init_from(mesh, true); +#else + v.model.init_from(mesh); +#endif // ENABLE_SMOOTH_NORMALS + v.model.set_color((milestone == slaposPad) ? GLVolume::SLA_PAD_COLOR : GLVolume::SLA_SUPPORT_COLOR); +#else #if ENABLE_SMOOTH_NORMALS v.indexed_vertex_array.load_mesh(mesh, true); #else v.indexed_vertex_array.load_mesh(mesh); #endif // ENABLE_SMOOTH_NORMALS v.indexed_vertex_array.finalize_geometry(opengl_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.composite_id = GLVolume::CompositeID(obj_idx, -int(milestone), (int)instance_idx.first); v.geometry_id = std::pair(timestamp, model_instance.id().id); // Create a copy of the convex hull mesh for each instance. Use a move operator on the last instance. @@ -774,6 +866,17 @@ void GLVolumeCollection::load_object_auxiliary( } } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +int GLVolumeCollection::load_wipe_tower_preview( + float pos_x, float pos_y, float width, float depth, float height, + float rotation_angle, bool size_unknown, float brim_width) +#else +int GLVolumeCollection::load_wipe_tower_preview( + int obj_idx, float pos_x, float pos_y, float width, float depth, float height, + float rotation_angle, bool size_unknown, float brim_width) +#endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#else #if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL int GLVolumeCollection::load_wipe_tower_preview( float pos_x, float pos_y, float width, float depth, float height, @@ -783,6 +886,7 @@ int GLVolumeCollection::load_wipe_tower_preview( int obj_idx, float pos_x, float pos_y, float width, float depth, float height, float rotation_angle, bool size_unknown, float brim_width, bool opengl_initialized) #endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { if (depth < 0.01f) return int(this->volumes.size() - 1); @@ -839,9 +943,16 @@ int GLVolumeCollection::load_wipe_tower_preview( volumes.emplace_back(new GLVolume(color)); GLVolume& v = *volumes.back(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + v.model.init_from(mesh); + v.model.set_color(color); +#else v.indexed_vertex_array.load_mesh(mesh); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.set_convex_hull(mesh.convex_hull_3d()); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.indexed_vertex_array.finalize_geometry(opengl_initialized); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.set_volume_offset(Vec3d(pos_x, pos_y, 0.0)); v.set_volume_rotation(Vec3d(0., 0., (M_PI / 180.) * rotation_angle)); #if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL @@ -856,6 +967,22 @@ int GLVolumeCollection::load_wipe_tower_preview( return int(volumes.size() - 1); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +GLVolume* GLVolumeCollection::new_toolpath_volume(const ColorRGBA& rgba) +{ + GLVolume* out = new_nontoolpath_volume(rgba); + out->is_extrusion_path = true; + return out; +} + +GLVolume* GLVolumeCollection::new_nontoolpath_volume(const ColorRGBA& rgba) +{ + GLVolume* out = new GLVolume(rgba); + out->is_extrusion_path = false; + this->volumes.emplace_back(out); + return out; +} +#else GLVolume* GLVolumeCollection::new_toolpath_volume(const ColorRGBA& rgba, size_t reserve_vbo_floats) { GLVolume *out = new_nontoolpath_volume(rgba, reserve_vbo_floats); @@ -872,6 +999,7 @@ GLVolume* GLVolumeCollection::new_nontoolpath_volume(const ColorRGBA& rgba, size this->volumes.emplace_back(out); return out; } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL GLVolumeWithIdAndZList volumes_to_render(const GLVolumePtrs& volumes, GLVolumeCollection::ERenderType type, const Transform3d& view_matrix, std::function filter_func) { @@ -960,7 +1088,10 @@ void GLVolumeCollection::render(GLVolumeCollection::ERenderType type, bool disab glsafe(::glEnableClientState(GL_VERTEX_ARRAY)); glsafe(::glEnableClientState(GL_NORMAL_ARRAY)); - shader->set_uniform("uniform_color", volume.first->render_color); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (!volume.first->model.is_initialized()) +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + shader->set_uniform("uniform_color", volume.first->render_color); shader->set_uniform("z_range", m_z_range, 2); shader->set_uniform("clipping_plane", m_clipping_plane, 4); shader->set_uniform("print_volume.type", static_cast(m_print_volume.type)); @@ -980,6 +1111,9 @@ void GLVolumeCollection::render(GLVolumeCollection::ERenderType type, bool disab #endif // ENABLE_ENVIRONMENT_MAP glcheck(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.first->model.set_color(volume.first->render_color); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL volume.first->render(); #if ENABLE_ENVIRONMENT_MAP @@ -1215,6 +1349,466 @@ std::string GLVolumeCollection::log_memory_info() const return " (GLVolumeCollection RAM: " + format_memsize_MB(this->cpu_memory_used()) + " GPU: " + format_memsize_MB(this->gpu_memory_used()) + " Both: " + format_memsize_MB(this->gpu_memory_used()) + ")"; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +static void thick_lines_to_geometry( + const Lines& lines, + const std::vector& widths, + const std::vector& heights, + bool closed, + double top_z, + GUI::GLModel::Geometry& geometry) +{ + assert(!lines.empty()); + if (lines.empty()) + return; + + enum Direction : unsigned char + { + Left, + Right, + Top, + Bottom + }; + + // right, left, top, bottom + std::array idx_prev = { -1, -1, -1, -1 }; + std::array idx_initial = { -1, -1, -1, -1 }; + + double bottom_z_prev = 0.0; + Vec2d b1_prev(Vec2d::Zero()); + Vec2d v_prev(Vec2d::Zero()); + double len_prev = 0.0; + double width_initial = 0.0; + double bottom_z_initial = 0.0; + + // loop once more in case of closed loops + const size_t lines_end = closed ? (lines.size() + 1) : lines.size(); + for (size_t ii = 0; ii < lines_end; ++ii) { + const size_t i = (ii == lines.size()) ? 0 : ii; + const Line& line = lines[i]; + const double bottom_z = top_z - heights[i]; + const double middle_z = 0.5 * (top_z + bottom_z); + const double width = widths[i]; + + const bool is_first = (ii == 0); + const bool is_last = (ii == lines_end - 1); + const bool is_closing = closed && is_last; + + const Vec2d v = unscale(line.vector()).normalized(); + const double len = unscale(line.length()); + + const Vec2d a = unscale(line.a); + const Vec2d b = unscale(line.b); + Vec2d a1 = a; + Vec2d a2 = a; + Vec2d b1 = b; + Vec2d b2 = b; + { + const double dist = 0.5 * width; // scaled + const double dx = dist * v.x(); + const double dy = dist * v.y(); + a1 += Vec2d(+dy, -dx); + a2 += Vec2d(-dy, +dx); + b1 += Vec2d(+dy, -dx); + b2 += Vec2d(-dy, +dx); + } + + // calculate new XY normals + const Vec2d xy_right_normal = unscale(line.normal()).normalized(); + + std::array idx_a = { 0, 0, 0, 0 }; + std::array idx_b = { 0, 0, 0, 0 }; + int idx_last = int(geometry.vertices_count()); + + const bool bottom_z_different = bottom_z_prev != bottom_z; + bottom_z_prev = bottom_z; + + if (!is_first && bottom_z_different) { + // Found a change of the layer thickness -> Add a cap at the end of the previous segment. + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Left], idx_b[Top]); + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Top], idx_b[Right]); + } + + // Share top / bottom vertices if possible. + if (is_first) { + idx_a[Top] = idx_last++; + geometry.add_vertex(Vec3f(a.x(), a.y(), top_z), Vec3f(0.0f, 0.0f, 1.0f)); + } + else + idx_a[Top] = idx_prev[Top]; + + if (is_first || bottom_z_different) { + // Start of the 1st line segment or a change of the layer thickness while maintaining the print_z. + idx_a[Bottom] = idx_last++; + geometry.add_vertex(Vec3f(a.x(), a.y(), bottom_z), Vec3f(0.0f, 0.0f, -1.0f)); + idx_a[Left] = idx_last++; + geometry.add_vertex(Vec3f(a2.x(), a2.y(), middle_z), Vec3f(-xy_right_normal.x(), -xy_right_normal.y(), 0.0f)); + idx_a[Right] = idx_last++; + geometry.add_vertex(Vec3f(a1.x(), a1.y(), middle_z), Vec3f(xy_right_normal.x(), xy_right_normal.y(), 0.0f)); + } + else + idx_a[Bottom] = idx_prev[Bottom]; + + if (is_first) { + // Start of the 1st line segment. + width_initial = width; + bottom_z_initial = bottom_z; + idx_initial = idx_a; + } + else { + // Continuing a previous segment. + // Share left / right vertices if possible. + const double v_dot = v_prev.dot(v); + // To reduce gpu memory usage, we try to reuse vertices + // To reduce the visual artifacts, due to averaged normals, we allow to reuse vertices only when any of two adjacent edges + // is longer than a fixed threshold. + // The following value is arbitrary, it comes from tests made on a bunch of models showing the visual artifacts + const double len_threshold = 2.5; + + // Generate new vertices if the angle between adjacent edges is greater than 45 degrees or thresholds conditions are met + const bool sharp = (v_dot < 0.707) || (len_prev > len_threshold) || (len > len_threshold); + if (sharp) { + if (!bottom_z_different) { + // Allocate new left / right points for the start of this segment as these points will receive their own normals to indicate a sharp turn. + idx_a[Right] = idx_last++; + geometry.add_vertex(Vec3f(a1.x(), a1.y(), middle_z), Vec3f(xy_right_normal.x(), xy_right_normal.y(), 0.0f)); + idx_a[Left] = idx_last++; + geometry.add_vertex(Vec3f(a2.x(), a2.y(), middle_z), Vec3f(-xy_right_normal.x(), -xy_right_normal.y(), 0.0f)); + if (cross2(v_prev, v) > 0.0) { + // Right turn. Fill in the right turn wedge. + geometry.add_uint_triangle(idx_prev[Right], idx_a[Right], idx_prev[Top]); + geometry.add_uint_triangle(idx_prev[Right], idx_prev[Bottom], idx_a[Right]); + } + else { + // Left turn. Fill in the left turn wedge. + geometry.add_uint_triangle(idx_prev[Left], idx_prev[Top], idx_a[Left]); + geometry.add_uint_triangle(idx_prev[Left], idx_a[Left], idx_prev[Bottom]); + } + } + } + else { + if (!bottom_z_different) { + // The two successive segments are nearly collinear. + idx_a[Left] = idx_prev[Left]; + idx_a[Right] = idx_prev[Right]; + } + } + if (is_closing) { + if (!sharp) { + if (!bottom_z_different) { + // Closing a loop with smooth transition. Unify the closing left / right vertices. + geometry.set_vertex(idx_initial[Left], geometry.extract_position_3(idx_prev[Left]), geometry.extract_normal_3(idx_prev[Left])); + geometry.set_vertex(idx_initial[Right], geometry.extract_position_3(idx_prev[Right]), geometry.extract_normal_3(idx_prev[Right])); + geometry.remove_vertex(geometry.vertices_count() - 1); + geometry.remove_vertex(geometry.vertices_count() - 1); + // Replace the left / right vertex indices to point to the start of the loop. + const size_t indices_count = geometry.indices_count(); + for (size_t u = indices_count - 24; u < indices_count; ++u) { + const unsigned int id = geometry.extract_uint_index(u); + if (id == (unsigned int)idx_prev[Left]) + geometry.set_uint_index(u, (unsigned int)idx_initial[Left]); + else if (id == (unsigned int)idx_prev[Right]) + geometry.set_uint_index(u, (unsigned int)idx_initial[Right]); + } + } + } + // This is the last iteration, only required to solve the transition. + break; + } + } + + // Only new allocate top / bottom vertices, if not closing a loop. + if (is_closing) + idx_b[Top] = idx_initial[Top]; + else { + idx_b[Top] = idx_last++; + geometry.add_vertex(Vec3f(b.x(), b.y(), top_z), Vec3f(0.0f, 0.0f, 1.0f)); + } + + if (is_closing && width == width_initial && bottom_z == bottom_z_initial) + idx_b[Bottom] = idx_initial[Bottom]; + else { + idx_b[Bottom] = idx_last++; + geometry.add_vertex(Vec3f(b.x(), b.y(), bottom_z), Vec3f(0.0f, 0.0f, -1.0f)); + } + // Generate new vertices for the end of this line segment. + idx_b[Left] = idx_last++; + geometry.add_vertex(Vec3f(b2.x(), b2.y(), middle_z), Vec3f(-xy_right_normal.x(), -xy_right_normal.y(), 0.0f)); + idx_b[Right] = idx_last++; + geometry.add_vertex(Vec3f(b1.x(), b1.y(), middle_z), Vec3f(xy_right_normal.x(), xy_right_normal.y(), 0.0f)); + + idx_prev = idx_b; + bottom_z_prev = bottom_z; + b1_prev = b1; + v_prev = v; + len_prev = len; + + if (bottom_z_different && (closed || (!is_first && !is_last))) { + // Found a change of the layer thickness -> Add a cap at the beginning of this segment. + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Right], idx_a[Top]); + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Top], idx_a[Left]); + } + + if (!closed) { + // Terminate open paths with caps. + if (is_first) { + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Right], idx_a[Top]); + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Top], idx_a[Left]); + } + // We don't use 'else' because both cases are true if we have only one line. + if (is_last) { + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Left], idx_b[Top]); + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Top], idx_b[Right]); + } + } + + // Add quads for a straight hollow tube-like segment. + // bottom-right face + geometry.add_uint_triangle(idx_a[Bottom], idx_b[Bottom], idx_b[Right]); + geometry.add_uint_triangle(idx_a[Bottom], idx_b[Right], idx_a[Right]); + // top-right face + geometry.add_uint_triangle(idx_a[Right], idx_b[Right], idx_b[Top]); + geometry.add_uint_triangle(idx_a[Right], idx_b[Top], idx_a[Top]); + // top-left face + geometry.add_uint_triangle(idx_a[Top], idx_b[Top], idx_b[Left]); + geometry.add_uint_triangle(idx_a[Top], idx_b[Left], idx_a[Left]); + // bottom-left face + geometry.add_uint_triangle(idx_a[Left], idx_b[Left], idx_b[Bottom]); + geometry.add_uint_triangle(idx_a[Left], idx_b[Bottom], idx_a[Bottom]); + } +} + +// caller is responsible for supplying NO lines with zero length +static void thick_lines_to_geometry( + const Lines3& lines, + const std::vector& widths, + const std::vector& heights, + bool closed, + GUI::GLModel::Geometry& geometry) +{ + assert(!lines.empty()); + if (lines.empty()) + return; + + enum Direction : unsigned char + { + Left, + Right, + Top, + Bottom + }; + + // left, right, top, bottom + std::array idx_prev = { -1, -1, -1, -1 }; + std::array idx_initial = { -1, -1, -1, -1 }; + + double z_prev = 0.0; + double len_prev = 0.0; + Vec3d n_right_prev = Vec3d::Zero(); + Vec3d n_top_prev = Vec3d::Zero(); + Vec3d unit_v_prev = Vec3d::Zero(); + double width_initial = 0.0; + + // new vertices around the line endpoints + // left, right, top, bottom + std::array a = { Vec3d::Zero(), Vec3d::Zero(), Vec3d::Zero(), Vec3d::Zero() }; + std::array b = { Vec3d::Zero(), Vec3d::Zero(), Vec3d::Zero(), Vec3d::Zero() }; + + // loop once more in case of closed loops + const size_t lines_end = closed ? (lines.size() + 1) : lines.size(); + for (size_t ii = 0; ii < lines_end; ++ii) { + const size_t i = (ii == lines.size()) ? 0 : ii; + + const Line3& line = lines[i]; + const double height = heights[i]; + const double width = widths[i]; + + const Vec3d unit_v = unscale(line.vector()).normalized(); + const double len = unscale(line.length()); + + Vec3d n_top = Vec3d::Zero(); + Vec3d n_right = Vec3d::Zero(); + + if (line.a.x() == line.b.x() && line.a.y() == line.b.y()) { + // vertical segment + n_top = Vec3d::UnitY(); + n_right = Vec3d::UnitX(); + if (line.a.z() < line.b.z()) + n_right = -n_right; + } + else { + // horizontal segment + n_right = unit_v.cross(Vec3d::UnitZ()).normalized(); + n_top = n_right.cross(unit_v).normalized(); + } + + const Vec3d rl_displacement = 0.5 * width * n_right; + const Vec3d tb_displacement = 0.5 * height * n_top; + const Vec3d l_a = unscale(line.a); + const Vec3d l_b = unscale(line.b); + + a[Right] = l_a + rl_displacement; + a[Left] = l_a - rl_displacement; + a[Top] = l_a + tb_displacement; + a[Bottom] = l_a - tb_displacement; + b[Right] = l_b + rl_displacement; + b[Left] = l_b - rl_displacement; + b[Top] = l_b + tb_displacement; + b[Bottom] = l_b - tb_displacement; + + const Vec3d n_bottom = -n_top; + const Vec3d n_left = -n_right; + + std::array idx_a = { 0, 0, 0, 0}; + std::array idx_b = { 0, 0, 0, 0 }; + int idx_last = int(geometry.vertices_count()); + + const bool z_different = (z_prev != l_a.z()); + z_prev = l_b.z(); + + // Share top / bottom vertices if possible. + if (ii == 0) { + idx_a[Top] = idx_last++; + geometry.add_vertex((Vec3f)a[Top].cast(), (Vec3f)n_top.cast()); + } + else + idx_a[Top] = idx_prev[Top]; + + if (ii == 0 || z_different) { + // Start of the 1st line segment or a change of the layer thickness while maintaining the print_z. + idx_a[Bottom] = idx_last++; + geometry.add_vertex((Vec3f)a[Bottom].cast(), (Vec3f)n_bottom.cast()); + idx_a[Left] = idx_last++; + geometry.add_vertex((Vec3f)a[Left].cast(), (Vec3f)n_left.cast()); + idx_a[Right] = idx_last++; + geometry.add_vertex((Vec3f)a[Right].cast(), (Vec3f)n_right.cast()); + } + else + idx_a[Bottom] = idx_prev[Bottom]; + + if (ii == 0) { + // Start of the 1st line segment. + width_initial = width; + idx_initial = idx_a; + } + else { + // Continuing a previous segment. + // Share left / right vertices if possible. + const double v_dot = unit_v_prev.dot(unit_v); + const bool is_right_turn = n_top_prev.dot(unit_v_prev.cross(unit_v)) > 0.0; + + // To reduce gpu memory usage, we try to reuse vertices + // To reduce the visual artifacts, due to averaged normals, we allow to reuse vertices only when any of two adjacent edges + // is longer than a fixed threshold. + // The following value is arbitrary, it comes from tests made on a bunch of models showing the visual artifacts + const double len_threshold = 2.5; + + // Generate new vertices if the angle between adjacent edges is greater than 45 degrees or thresholds conditions are met + const bool is_sharp = v_dot < 0.707 || len_prev > len_threshold || len > len_threshold; + if (is_sharp) { + // Allocate new left / right points for the start of this segment as these points will receive their own normals to indicate a sharp turn. + idx_a[Right] = idx_last++; + geometry.add_vertex((Vec3f)a[Right].cast(), (Vec3f)n_right.cast()); + idx_a[Left] = idx_last++; + geometry.add_vertex((Vec3f)a[Left].cast(), (Vec3f)n_left.cast()); + + if (is_right_turn) { + // Right turn. Fill in the right turn wedge. + geometry.add_uint_triangle(idx_prev[Right], idx_a[Right], idx_prev[Top]); + geometry.add_uint_triangle(idx_prev[Right], idx_prev[Bottom], idx_a[Right]); + } + else { + // Left turn. Fill in the left turn wedge. + geometry.add_uint_triangle(idx_prev[Left], idx_prev[Top], idx_a[Left]); + geometry.add_uint_triangle(idx_prev[Left], idx_a[Left], idx_prev[Bottom]); + } + } + else { + // The two successive segments are nearly collinear. + idx_a[Left] = idx_prev[Left]; + idx_a[Right] = idx_prev[Right]; + } + + if (ii == lines.size()) { + if (!is_sharp) { + // Closing a loop with smooth transition. Unify the closing left / right vertices. + geometry.set_vertex(idx_initial[Left], geometry.extract_position_3(idx_prev[Left]), geometry.extract_normal_3(idx_prev[Left])); + geometry.set_vertex(idx_initial[Right], geometry.extract_position_3(idx_prev[Right]), geometry.extract_normal_3(idx_prev[Right])); + geometry.remove_vertex(geometry.vertices_count() - 1); + geometry.remove_vertex(geometry.vertices_count() - 1); + // Replace the left / right vertex indices to point to the start of the loop. + const size_t indices_count = geometry.indices_count(); + for (size_t u = indices_count - 24; u < indices_count; ++u) { + const unsigned int id = geometry.extract_uint_index(u); + if (id == (unsigned int)idx_prev[Left]) + geometry.set_uint_index(u, (unsigned int)idx_initial[Left]); + else if (id == (unsigned int)idx_prev[Right]) + geometry.set_uint_index(u, (unsigned int)idx_initial[Right]); + } + } + + // This is the last iteration, only required to solve the transition. + break; + } + } + + // Only new allocate top / bottom vertices, if not closing a loop. + if (closed && ii + 1 == lines.size()) + idx_b[Top] = idx_initial[Top]; + else { + idx_b[Top] = idx_last++; + geometry.add_vertex((Vec3f)b[Top].cast(), (Vec3f)n_top.cast()); + } + + if (closed && ii + 1 == lines.size() && width == width_initial) + idx_b[Bottom] = idx_initial[Bottom]; + else { + idx_b[Bottom] = idx_last++; + geometry.add_vertex((Vec3f)b[Bottom].cast(), (Vec3f)n_bottom.cast()); + } + + // Generate new vertices for the end of this line segment. + idx_b[Left] = idx_last++; + geometry.add_vertex((Vec3f)b[Left].cast(), (Vec3f)n_left.cast()); + idx_b[Right] = idx_last++; + geometry.add_vertex((Vec3f)b[Right].cast(), (Vec3f)n_right.cast()); + + idx_prev = idx_b; + n_right_prev = n_right; + n_top_prev = n_top; + unit_v_prev = unit_v; + len_prev = len; + + if (!closed) { + // Terminate open paths with caps. + if (i == 0) { + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Right], idx_a[Top]); + geometry.add_uint_triangle(idx_a[Bottom], idx_a[Top], idx_a[Left]); + } + + // We don't use 'else' because both cases are true if we have only one line. + if (i + 1 == lines.size()) { + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Left], idx_b[Top]); + geometry.add_uint_triangle(idx_b[Bottom], idx_b[Top], idx_b[Right]); + } + } + + // Add quads for a straight hollow tube-like segment. + // bottom-right face + geometry.add_uint_triangle(idx_a[Bottom], idx_b[Bottom], idx_b[Right]); + geometry.add_uint_triangle(idx_a[Bottom], idx_b[Right], idx_a[Right]); + // top-right face + geometry.add_uint_triangle(idx_a[Right], idx_b[Right], idx_b[Top]); + geometry.add_uint_triangle(idx_a[Right], idx_b[Top], idx_a[Top]); + // top-left face + geometry.add_uint_triangle(idx_a[Top], idx_b[Top], idx_b[Left]); + geometry.add_uint_triangle(idx_a[Top], idx_b[Left], idx_a[Left]); + // bottom-left face + geometry.add_uint_triangle(idx_a[Left], idx_b[Left], idx_b[Bottom]); + geometry.add_uint_triangle(idx_a[Left], idx_b[Bottom], idx_a[Bottom]); + } +} +#else // caller is responsible for supplying NO lines with zero length static void thick_lines_to_indexed_vertex_array( const Lines &lines, @@ -1724,7 +2318,30 @@ static void point_to_indexed_vertex_array(const Vec3crd& point, volume.push_triangle(idxs[3], idxs[1], idxs[4]); volume.push_triangle(idxs[0], idxs[3], idxs[4]); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::thick_lines_to_verts( + const Lines& lines, + const std::vector& widths, + const std::vector& heights, + bool closed, + double top_z, + GUI::GLModel::Geometry& geometry) +{ + thick_lines_to_geometry(lines, widths, heights, closed, top_z, geometry); +} + +void _3DScene::thick_lines_to_verts( + const Lines3& lines, + const std::vector& widths, + const std::vector& heights, + bool closed, + GUI::GLModel::Geometry& geometry) +{ + thick_lines_to_geometry(lines, widths, heights, closed, geometry); +} +#else void _3DScene::thick_lines_to_verts( const Lines &lines, const std::vector &widths, @@ -1766,8 +2383,21 @@ void _3DScene::extrusionentity_to_verts(const ExtrusionPath &extrusion_path, flo { extrusionentity_to_verts(extrusion_path.polyline, extrusion_path.width, extrusion_path.height, print_z, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Fill in the qverts and tverts with quads and triangles for the extrusion_path. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::extrusionentity_to_verts(const ExtrusionPath& extrusion_path, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry) +{ + Polyline polyline = extrusion_path.polyline; + polyline.remove_duplicate_points(); + polyline.translate(copy); + const Lines lines = polyline.lines(); + std::vector widths(lines.size(), extrusion_path.width); + std::vector heights(lines.size(), extrusion_path.height); + thick_lines_to_verts(lines, widths, heights, false, print_z, geometry); +} +#else void _3DScene::extrusionentity_to_verts(const ExtrusionPath &extrusion_path, float print_z, const Point ©, GLVolume &volume) { Polyline polyline = extrusion_path.polyline; @@ -1778,8 +2408,27 @@ void _3DScene::extrusionentity_to_verts(const ExtrusionPath &extrusion_path, flo std::vector heights(lines.size(), extrusion_path.height); thick_lines_to_verts(lines, widths, heights, false, print_z, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Fill in the qverts and tverts with quads and triangles for the extrusion_loop. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::extrusionentity_to_verts(const ExtrusionLoop& extrusion_loop, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry) +{ + Lines lines; + std::vector widths; + std::vector heights; + for (const ExtrusionPath& extrusion_path : extrusion_loop.paths) { + Polyline polyline = extrusion_path.polyline; + polyline.remove_duplicate_points(); + polyline.translate(copy); + const Lines lines_this = polyline.lines(); + append(lines, lines_this); + widths.insert(widths.end(), lines_this.size(), extrusion_path.width); + heights.insert(heights.end(), lines_this.size(), extrusion_path.height); + } + thick_lines_to_verts(lines, widths, heights, true, print_z, geometry); +} +#else void _3DScene::extrusionentity_to_verts(const ExtrusionLoop &extrusion_loop, float print_z, const Point ©, GLVolume &volume) { Lines lines; @@ -1796,8 +2445,27 @@ void _3DScene::extrusionentity_to_verts(const ExtrusionLoop &extrusion_loop, flo } thick_lines_to_verts(lines, widths, heights, true, print_z, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Fill in the qverts and tverts with quads and triangles for the extrusion_multi_path. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::extrusionentity_to_verts(const ExtrusionMultiPath& extrusion_multi_path, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry) +{ + Lines lines; + std::vector widths; + std::vector heights; + for (const ExtrusionPath& extrusion_path : extrusion_multi_path.paths) { + Polyline polyline = extrusion_path.polyline; + polyline.remove_duplicate_points(); + polyline.translate(copy); + const Lines lines_this = polyline.lines(); + append(lines, lines_this); + widths.insert(widths.end(), lines_this.size(), extrusion_path.width); + heights.insert(heights.end(), lines_this.size(), extrusion_path.height); + } + thick_lines_to_verts(lines, widths, heights, false, print_z, geometry); +} +#else void _3DScene::extrusionentity_to_verts(const ExtrusionMultiPath &extrusion_multi_path, float print_z, const Point ©, GLVolume &volume) { Lines lines; @@ -1814,13 +2482,49 @@ void _3DScene::extrusionentity_to_verts(const ExtrusionMultiPath &extrusion_mult } thick_lines_to_verts(lines, widths, heights, false, print_z, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::extrusionentity_to_verts(const ExtrusionEntityCollection& extrusion_entity_collection, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry) +{ + for (const ExtrusionEntity* extrusion_entity : extrusion_entity_collection.entities) + extrusionentity_to_verts(extrusion_entity, print_z, copy, geometry); +} +#else void _3DScene::extrusionentity_to_verts(const ExtrusionEntityCollection &extrusion_entity_collection, float print_z, const Point ©, GLVolume &volume) { for (const ExtrusionEntity *extrusion_entity : extrusion_entity_collection.entities) extrusionentity_to_verts(extrusion_entity, print_z, copy, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void _3DScene::extrusionentity_to_verts(const ExtrusionEntity* extrusion_entity, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry) +{ + if (extrusion_entity != nullptr) { + auto* extrusion_path = dynamic_cast(extrusion_entity); + if (extrusion_path != nullptr) + extrusionentity_to_verts(*extrusion_path, print_z, copy, geometry); + else { + auto* extrusion_loop = dynamic_cast(extrusion_entity); + if (extrusion_loop != nullptr) + extrusionentity_to_verts(*extrusion_loop, print_z, copy, geometry); + else { + auto* extrusion_multi_path = dynamic_cast(extrusion_entity); + if (extrusion_multi_path != nullptr) + extrusionentity_to_verts(*extrusion_multi_path, print_z, copy, geometry); + else { + auto* extrusion_entity_collection = dynamic_cast(extrusion_entity); + if (extrusion_entity_collection != nullptr) + extrusionentity_to_verts(*extrusion_entity_collection, print_z, copy, geometry); + else + throw Slic3r::RuntimeError("Unexpected extrusion_entity type in to_verts()"); + } + } + } + } +} +#else void _3DScene::extrusionentity_to_verts(const ExtrusionEntity *extrusion_entity, float print_z, const Point ©, GLVolume &volume) { if (extrusion_entity != nullptr) { @@ -1839,9 +2543,8 @@ void _3DScene::extrusionentity_to_verts(const ExtrusionEntity *extrusion_entity, auto *extrusion_entity_collection = dynamic_cast(extrusion_entity); if (extrusion_entity_collection != nullptr) extrusionentity_to_verts(*extrusion_entity_collection, print_z, copy, volume); - else { + else throw Slic3r::RuntimeError("Unexpected extrusion_entity type in to_verts()"); - } } } } @@ -1860,5 +2563,6 @@ void _3DScene::point3_to_verts(const Vec3crd& point, double width, double height { thick_point_to_verts(point, width, height, volume); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } // namespace Slic3r diff --git a/src/slic3r/GUI/3DScene.hpp b/src/slic3r/GUI/3DScene.hpp index c2e4e587ce..ed2aa804eb 100644 --- a/src/slic3r/GUI/3DScene.hpp +++ b/src/slic3r/GUI/3DScene.hpp @@ -46,6 +46,7 @@ enum ModelInstanceEPrintVolumeState : unsigned char; // Return appropriate color based on the ModelVolume. extern ColorRGBA color_from_model_volume(const ModelVolume& model_volume); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // A container for interleaved arrays of 3D vertices and normals, // possibly indexed by triangles and / or quads. class GLIndexedVertexArray { @@ -246,6 +247,7 @@ public: private: BoundingBox m_bounding_box; }; +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL class GLVolume { public: @@ -388,11 +390,17 @@ public: // Is mouse or rectangle selection over this object to select/deselect it ? EHoverState hover; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GUI::GLModel model; +#else // Interleaved triangles & normals with indexed triangles & quads. GLIndexedVertexArray indexed_vertex_array; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Ranges of triangle and quad indices to be rendered. std::pair tverts_range; +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL std::pair qverts_range; +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // If the qverts or tverts contain thick extrusions, then offsets keeps pointers of the starts // of the extrusions per layer. @@ -402,13 +410,17 @@ public: // Bounding box of this volume, in unscaled coordinates. BoundingBoxf3 bounding_box() const { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + return this->model.get_bounding_box(); +#else BoundingBoxf3 out; - if (! this->indexed_vertex_array.bounding_box().isEmpty()) { + if (!this->indexed_vertex_array.bounding_box().isEmpty()) { out.min = this->indexed_vertex_array.bounding_box().min().cast(); out.max = this->indexed_vertex_array.bounding_box().max().cast(); out.defined = true; - }; + } return out; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } void set_color(const ColorRGBA& rgba) { color = rgba; } @@ -498,14 +510,20 @@ public: // convex hull const TriangleMesh* convex_hull() const { return m_convex_hull.get(); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + bool empty() const { return this->model.is_empty(); } +#else bool empty() const { return this->indexed_vertex_array.empty(); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL void set_range(double low, double high); - void render() const; + void render(); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL void finalize_geometry(bool opengl_initialized) { this->indexed_vertex_array.finalize_geometry(opengl_initialized); } void release_geometry() { this->indexed_vertex_array.release_geometry(); } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL void set_bounding_boxes_as_dirty() { m_transformed_bounding_box.reset(); @@ -524,12 +542,20 @@ public: #endif // ENABLE_SHOW_NON_MANIFOLD_EDGES // Return an estimate of the memory consumed by this class. - size_t cpu_memory_used() const { - //FIXME what to do wih m_convex_hull? + size_t cpu_memory_used() const { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + return sizeof(*this) + this->model.cpu_memory_used() + this->print_zs.capacity() * sizeof(coordf_t) + + this->offsets.capacity() * sizeof(size_t); + } + // Return an estimate of the memory held by GPU vertex buffers. + size_t gpu_memory_used() const { return this->model.gpu_memory_used(); } +#else + //FIXME what to do wih m_convex_hull? return sizeof(*this) - sizeof(this->indexed_vertex_array) + this->indexed_vertex_array.cpu_memory_used() + this->print_zs.capacity() * sizeof(coordf_t) + this->offsets.capacity() * sizeof(size_t); } // Return an estimate of the memory held by GPU vertex buffers. size_t gpu_memory_used() const { return this->indexed_vertex_array.gpu_memory_used(); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL size_t total_memory_used() const { return this->cpu_memory_used() + this->gpu_memory_used(); } }; @@ -589,6 +615,36 @@ public: GLVolumeCollection() { set_default_slope_normal_z(); } ~GLVolumeCollection() { clear(); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + std::vector load_object( + const ModelObject* model_object, + int obj_idx, + const std::vector& instance_idxs); + + int load_object_volume( + const ModelObject* model_object, + int obj_idx, + int volume_idx, + int instance_idx); + + // Load SLA auxiliary GLVolumes (for support trees or pad). + void load_object_auxiliary( + const SLAPrintObject* print_object, + int obj_idx, + // pairs of + const std::vector>& instances, + SLAPrintObjectStep milestone, + // Timestamp of the last change of the milestone + size_t timestamp); + +#if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL + int load_wipe_tower_preview( + float pos_x, float pos_y, float width, float depth, float height, float rotation_angle, bool size_unknown, float brim_width); +#else + int load_wipe_tower_preview( + int obj_idx, float pos_x, float pos_y, float width, float depth, float height, float rotation_angle, bool size_unknown, float brim_width); +#endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#else std::vector load_object( const ModelObject *model_object, int obj_idx, @@ -620,13 +676,20 @@ public: int load_wipe_tower_preview( int obj_idx, float pos_x, float pos_y, float width, float depth, float height, float rotation_angle, bool size_unknown, float brim_width, bool opengl_initialized); #endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GLVolume* new_toolpath_volume(const ColorRGBA& rgba); + GLVolume* new_nontoolpath_volume(const ColorRGBA& rgba); +#else GLVolume* new_toolpath_volume(const ColorRGBA& rgba, size_t reserve_vbo_floats = 0); GLVolume* new_nontoolpath_volume(const ColorRGBA& rgba, size_t reserve_vbo_floats = 0); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Render the volumes by OpenGL. void render(ERenderType type, bool disable_cullface, const Transform3d& view_matrix, std::function filter_func = std::function()) const; +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Finalize the initialization of the geometry & indices, // upload the geometry and indices to OpenGL VBO objects // and shrink the allocated data, possibly relasing it if it has been loaded into the VBOs. @@ -634,11 +697,12 @@ public: // Release the geometry data assigned to the volumes. // If OpenGL VBOs were allocated, an OpenGL context has to be active to release them. void release_geometry() { for (auto *v : volumes) v->release_geometry(); } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Clear the geometry void clear() { for (auto *v : volumes) delete v; volumes.clear(); } bool empty() const { return volumes.empty(); } - void set_range(double low, double high) { for (GLVolume *vol : this->volumes) vol->set_range(low, high); } + void set_range(double low, double high) { for (GLVolume* vol : this->volumes) vol->set_range(low, high); } void set_print_volume(const PrintVolume& print_volume) { m_print_volume = print_volume; } @@ -683,9 +747,18 @@ GLVolumeWithIdAndZList volumes_to_render(const GLVolumePtrs& volumes, GLVolumeCo struct _3DScene { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + static void thick_lines_to_verts(const Lines& lines, const std::vector& widths, const std::vector& heights, bool closed, double top_z, GUI::GLModel::Geometry& geometry); + static void thick_lines_to_verts(const Lines3& lines, const std::vector& widths, const std::vector& heights, bool closed, GUI::GLModel::Geometry& geometry); + static void extrusionentity_to_verts(const ExtrusionPath& extrusion_path, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry); + static void extrusionentity_to_verts(const ExtrusionLoop& extrusion_loop, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry); + static void extrusionentity_to_verts(const ExtrusionMultiPath& extrusion_multi_path, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry); + static void extrusionentity_to_verts(const ExtrusionEntityCollection& extrusion_entity_collection, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry); + static void extrusionentity_to_verts(const ExtrusionEntity* extrusion_entity, float print_z, const Point& copy, GUI::GLModel::Geometry& geometry); +#else static void thick_lines_to_verts(const Lines& lines, const std::vector& widths, const std::vector& heights, bool closed, double top_z, GLVolume& volume); static void thick_lines_to_verts(const Lines3& lines, const std::vector& widths, const std::vector& heights, bool closed, GLVolume& volume); - static void extrusionentity_to_verts(const Polyline &polyline, float width, float height, float print_z, GLVolume& volume); + static void extrusionentity_to_verts(const Polyline& polyline, float width, float height, float print_z, GLVolume& volume); static void extrusionentity_to_verts(const ExtrusionPath& extrusion_path, float print_z, GLVolume& volume); static void extrusionentity_to_verts(const ExtrusionPath& extrusion_path, float print_z, const Point& copy, GLVolume& volume); static void extrusionentity_to_verts(const ExtrusionLoop& extrusion_loop, float print_z, const Point& copy, GLVolume& volume); @@ -694,6 +767,7 @@ struct _3DScene static void extrusionentity_to_verts(const ExtrusionEntity* extrusion_entity, float print_z, const Point& copy, GLVolume& volume); static void polyline3_to_verts(const Polyline3& polyline, double width, double height, GLVolume& volume); static void point3_to_verts(const Vec3crd& point, double width, double height, GLVolume& volume); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL }; } diff --git a/src/slic3r/GUI/GCodeViewer.cpp b/src/slic3r/GUI/GCodeViewer.cpp index c86d16a1f0..cfe6fe418a 100644 --- a/src/slic3r/GUI/GCodeViewer.cpp +++ b/src/slic3r/GUI/GCodeViewer.cpp @@ -711,7 +711,11 @@ void GCodeViewer::init() m_gl_data_initialized = true; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GCodeViewer::load(const GCodeProcessorResult& gcode_result, const Print& print) +#else void GCodeViewer::load(const GCodeProcessorResult& gcode_result, const Print& print, bool initialized) +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { // avoid processing if called with the same gcode_result #if ENABLE_VOLUMETRIC_RATE_TOOLPATHS_RECALC @@ -750,7 +754,11 @@ void GCodeViewer::load(const GCodeProcessorResult& gcode_result, const Print& pr m_filament_densities = gcode_result.filament_densities; if (wxGetApp().is_editor()) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + load_shells(print); +#else load_shells(print, initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL else { Pointfs bed_shape; std::string texture; @@ -2289,7 +2297,11 @@ void GCodeViewer::load_toolpaths(const GCodeProcessorResult& gcode_result) progress_dialog->Destroy(); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GCodeViewer::load_shells(const Print& print) +#else void GCodeViewer::load_shells(const Print& print, bool initialized) +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL { if (print.objects().empty()) // no shells, return @@ -2306,7 +2318,11 @@ void GCodeViewer::load_shells(const Print& print, bool initialized) } size_t current_volumes_count = m_shells.volumes.volumes.size(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + m_shells.volumes.load_object(model_obj, object_id, instance_ids); +#else m_shells.volumes.load_object(model_obj, object_id, instance_ids, initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // adjust shells' z if raft is present const SlicingParameters& slicing_parameters = obj->slicing_parameters(); @@ -2330,6 +2346,15 @@ void GCodeViewer::load_shells(const Print& print, bool initialized) const float depth = print.wipe_tower_data(extruders_count).depth; const float brim_width = print.wipe_tower_data(extruders_count).brim_width; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL + m_shells.volumes.load_wipe_tower_preview(config.wipe_tower_x, config.wipe_tower_y, config.wipe_tower_width, depth, max_z, config.wipe_tower_rotation_angle, + !print.is_step_done(psWipeTower), brim_width); +#else + m_shells.volumes.load_wipe_tower_preview(1000, config.wipe_tower_x, config.wipe_tower_y, config.wipe_tower_width, depth, max_z, config.wipe_tower_rotation_angle, + !print.is_step_done(psWipeTower), brim_width); +#endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#else #if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL m_shells.volumes.load_wipe_tower_preview(config.wipe_tower_x, config.wipe_tower_y, config.wipe_tower_width, depth, max_z, config.wipe_tower_rotation_angle, !print.is_step_done(psWipeTower), brim_width, initialized); @@ -2337,6 +2362,7 @@ void GCodeViewer::load_shells(const Print& print, bool initialized) m_shells.volumes.load_wipe_tower_preview(1000, config.wipe_tower_x, config.wipe_tower_y, config.wipe_tower_width, depth, max_z, config.wipe_tower_rotation_angle, !print.is_step_done(psWipeTower), brim_width, initialized); #endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } @@ -3199,6 +3225,7 @@ void GCodeViewer::render_shells() if (shader == nullptr) return; +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // when the background processing is enabled, it may happen that the shells data have been loaded // before opengl has been initialized for the preview canvas. // when this happens, the volumes' data have not been sent to gpu yet. @@ -3206,6 +3233,7 @@ void GCodeViewer::render_shells() if (!v->indexed_vertex_array.has_VBOs()) v->finalize_geometry(true); } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // glsafe(::glDepthMask(GL_FALSE)); diff --git a/src/slic3r/GUI/GCodeViewer.hpp b/src/slic3r/GUI/GCodeViewer.hpp index b2b0626d51..bdb3ed983e 100644 --- a/src/slic3r/GUI/GCodeViewer.hpp +++ b/src/slic3r/GUI/GCodeViewer.hpp @@ -823,7 +823,11 @@ public: void init(); // extract rendering data from the given parameters +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void load(const GCodeProcessorResult& gcode_result, const Print& print); +#else void load(const GCodeProcessorResult& gcode_result, const Print& print, bool initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // recalculate ranges in dependence of what is visible and sets tool/print colors void refresh(const GCodeProcessorResult& gcode_result, const std::vector& str_tool_colors); #if ENABLE_PREVIEW_LAYOUT @@ -883,7 +887,11 @@ public: private: void load_toolpaths(const GCodeProcessorResult& gcode_result); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void load_shells(const Print& print); +#else void load_shells(const Print& print, bool initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #if !ENABLE_PREVIEW_LAYOUT void refresh_render_paths(bool keep_sequential_current_first, bool keep_sequential_current_last) const; #endif // !ENABLE_PREVIEW_LAYOUT diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 865190e465..1aca383714 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -87,9 +87,11 @@ static const Slic3r::ColorRGB ERROR_BG_LIGHT_COLOR = { 0.753f, 0.192f, 0.039f // Number of floats static constexpr const size_t MAX_VERTEX_BUFFER_SIZE = 131072 * 6; // 3.15MB // Reserve size in number of floats. +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL static constexpr const size_t VERTEX_BUFFER_RESERVE_SIZE = 131072 * 2; // 1.05MB // Reserve size in number of floats, maximum sum of all preallocated buffers. //static constexpr const size_t VERTEX_BUFFER_RESERVE_SIZE_SUM_MAX = 1024 * 1024 * 128 / 4; // 128MB +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL namespace Slic3r { namespace GUI { @@ -526,7 +528,7 @@ void GLCanvas3D::LayersEditing::render_volumes(const GLCanvas3D& canvas, const G glsafe(::glTexImage2D(GL_TEXTURE_2D, 1, GL_RGBA, half_w, half_h, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0)); glsafe(::glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, m_layers_texture.data.data())); glsafe(::glTexSubImage2D(GL_TEXTURE_2D, 1, 0, 0, half_w, half_h, GL_RGBA, GL_UNSIGNED_BYTE, m_layers_texture.data.data() + m_layers_texture.width * m_layers_texture.height * 4)); - for (const GLVolume* glvolume : volumes.volumes) { + for (GLVolume* glvolume : volumes.volumes) { // Render the object using the layer editing shader and texture. if (!glvolume->is_active || glvolume->composite_id.object_id != this->last_object_id || glvolume->is_modifier) continue; @@ -1192,9 +1194,11 @@ bool GLCanvas3D::init() if (m_main_toolbar.is_enabled()) m_layers_editing.init(); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // on linux the gl context is not valid until the canvas is not shown on screen // we defer the geometry finalization of volumes until the first call to render() m_volumes.finalize_geometry(true); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (m_gizmos.is_enabled() && !m_gizmos.init()) std::cout << "Unable to initialize gizmos: please, check that all the required textures are available" << std::endl; @@ -1799,7 +1803,11 @@ std::vector GLCanvas3D::load_object(const ModelObject& model_object, int ob instance_idxs.emplace_back(i); } } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + return m_volumes.load_object(&model_object, obj_idx, instance_idxs); +#else return m_volumes.load_object(&model_object, obj_idx, instance_idxs, m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } std::vector GLCanvas3D::load_object(const Model& model, int obj_idx) @@ -2024,7 +2032,11 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re // Note the index of the loaded volume, so that we can reload the main model GLVolume with the hollowed mesh // later in this function. it->volume_idx = m_volumes.volumes.size(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + m_volumes.load_object_volume(&model_object, obj_idx, volume_idx, instance_idx); +#else m_volumes.load_object_volume(&model_object, obj_idx, volume_idx, instance_idx, m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL m_volumes.volumes.back()->geometry_id = key.geometry_id; update_object_list = true; } else { @@ -2081,31 +2093,55 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re GLVolume &volume = *m_volumes.volumes[it->volume_idx]; if (! volume.offsets.empty() && state.step[istep].timestamp != volume.offsets.front()) { // The backend either produced a new hollowed mesh, or it invalidated the one that the front end has seen. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.model.reset(); +#else volume.indexed_vertex_array.release_geometry(); - if (state.step[istep].state == PrintStateBase::DONE) { +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (state.step[istep].state == PrintStateBase::DONE) { TriangleMesh mesh = print_object->get_mesh(slaposDrillHoles); assert(! mesh.empty()); mesh.transform(sla_print->sla_trafo(*m_model->objects[volume.object_idx()]).inverse()); #if ENABLE_SMOOTH_NORMALS +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.model.init_from(mesh, true); +#else volume.indexed_vertex_array.load_mesh(mesh, true); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#else +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.model.init_from(mesh); #else volume.indexed_vertex_array.load_mesh(mesh); -#endif // ENABLE_SMOOTH_NORMALS - } else { - // Reload the original volume. -#if ENABLE_SMOOTH_NORMALS - volume.indexed_vertex_array.load_mesh(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh(), true); -#else - volume.indexed_vertex_array.load_mesh(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #endif // ENABLE_SMOOTH_NORMALS } + else { + // Reload the original volume. +#if ENABLE_SMOOTH_NORMALS +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.model.init_from(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh(), true); +#else + volume.indexed_vertex_array.load_mesh(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh(), true); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#else +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.model.init_from(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh()); +#else + volume.indexed_vertex_array.load_mesh(m_model->objects[volume.object_idx()]->volumes[volume.volume_idx()]->mesh()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#endif // ENABLE_SMOOTH_NORMALS + } +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL volume.finalize_geometry(true); - } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } //FIXME it is an ugly hack to write the timestamp into the "offsets" field to not have to add another member variable // to the GLVolume. We should refactor GLVolume significantly, so that the GLVolume will not contain member variables // of various concenrs (model vs. 3D print path). volume.offsets = { state.step[istep].timestamp }; - } else if (state.step[istep].state == PrintStateBase::DONE) { + } + else if (state.step[istep].state == PrintStateBase::DONE) { // Check whether there is an existing auxiliary volume to be updated, or a new auxiliary volume to be created. ModelVolumeState key(state.step[istep].timestamp, instance.instance_id.id); auto it = std::lower_bound(aux_volume_state.begin(), aux_volume_state.end(), key, model_volume_state_lower); @@ -2117,7 +2153,8 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re instances[istep].emplace_back(std::pair(instance_idx, print_instance_idx)); else shift_zs[object_idx] = 0.; - } else { + } + else { // Recycling an old GLVolume. Update the Object/Instance indices into the current Model. m_volumes.volumes[it->volume_idx]->composite_id = GLVolume::CompositeID(object_idx, m_volumes.volumes[it->volume_idx]->volume_idx(), instance_idx); m_volumes.volumes[it->volume_idx]->set_instance_transformation(model_object->instances[instance_idx]->get_transformation()); @@ -2127,7 +2164,11 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re for (size_t istep = 0; istep < sla_steps.size(); ++istep) if (!instances[istep].empty()) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + m_volumes.load_object_auxiliary(print_object, object_idx, instances[istep], sla_steps[istep], state.step[istep].timestamp); +#else m_volumes.load_object_auxiliary(print_object, object_idx, instances[istep], sla_steps[istep], state.step[istep].timestamp, m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } // Shift-up all volumes of the object so that it has the right elevation with respect to the print bed @@ -2157,6 +2198,17 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re float depth = print->wipe_tower_data(extruders_count).depth; float brim_width = print->wipe_tower_data(extruders_count).brim_width; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL + int volume_idx_wipe_tower_new = m_volumes.load_wipe_tower_preview( + x, y, w, depth, (float)height, a, !print->is_step_done(psWipeTower), + brim_width); +#else + int volume_idx_wipe_tower_new = m_volumes.load_wipe_tower_preview( + 1000, x, y, w, depth, (float)height, a, !print->is_step_done(psWipeTower), + brim_width); +#endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#else #if ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL int volume_idx_wipe_tower_new = m_volumes.load_wipe_tower_preview( x, y, w, depth, (float)height, a, !print->is_step_done(psWipeTower), @@ -2166,6 +2218,7 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re 1000, x, y, w, depth, (float)height, a, !print->is_step_done(psWipeTower), brim_width, m_initialized); #endif // ENABLE_WIPETOWER_OBJECTID_1000_REMOVAL +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (volume_idx_wipe_tower_old != -1) map_glvolume_old_to_new[volume_idx_wipe_tower_old] = volume_idx_wipe_tower_new; } @@ -2225,9 +2278,10 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re m_dirty = true; } +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL static void reserve_new_volume_finalize_old_volume(GLVolume& vol_new, GLVolume& vol_old, bool gl_initialized, size_t prealloc_size = VERTEX_BUFFER_RESERVE_SIZE) { - // Assign the large pre-allocated buffers to the new GLVolume. + // Assign the large pre-allocated buffers to the new GLVolume. vol_new.indexed_vertex_array = std::move(vol_old.indexed_vertex_array); // Copy the content back to the old GLVolume. vol_old.indexed_vertex_array = vol_new.indexed_vertex_array; @@ -2239,10 +2293,15 @@ static void reserve_new_volume_finalize_old_volume(GLVolume& vol_new, GLVolume& // Finalize the old geometry, possibly move data to the graphics card. vol_old.finalize_geometry(gl_initialized); } +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL void GLCanvas3D::load_gcode_preview(const GCodeProcessorResult& gcode_result, const std::vector& str_tool_colors) { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + m_gcode_viewer.load(gcode_result, *this->fff_print()); +#else m_gcode_viewer.load(gcode_result, *this->fff_print(), m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (wxGetApp().is_editor()) { m_gcode_viewer.update_shells_color_by_extruder(m_config); @@ -2715,7 +2774,7 @@ void GLCanvas3D::on_key(wxKeyEvent& evt) m_dirty = true; }, [this](const Vec3d& direction, bool slow, bool camera_space) { - m_selection.start_dragging(); + m_selection.setup_cache(); double multiplier = slow ? 1.0 : 10.0; Vec3d displacement; @@ -2728,7 +2787,6 @@ void GLCanvas3D::on_key(wxKeyEvent& evt) displacement = multiplier * direction; m_selection.translate(displacement); - m_selection.stop_dragging(); m_dirty = true; } ); @@ -2825,9 +2883,8 @@ void GLCanvas3D::on_key(wxKeyEvent& evt) m_dirty = true; else if (m_gizmos.is_enabled() && !m_selection.is_empty()) { auto do_rotate = [this](double angle_z_rad) { - m_selection.start_dragging(); + m_selection.setup_cache(); m_selection.rotate(Vec3d(0.0, 0.0, angle_z_rad), TransformationType(TransformationType::World_Relative_Joint)); - m_selection.stop_dragging(); m_dirty = true; // wxGetApp().obj_manipul()->set_dirty(); }; @@ -3135,30 +3192,21 @@ void GLCanvas3D::on_mouse(wxMouseEvent& evt) m_mouse.set_start_position_3D_as_invalid(); m_mouse.position = pos.cast(); - if (evt.Dragging() && current_printer_technology() == ptFFF && fff_print()->config().complete_objects) { - switch (m_gizmos.get_current_type()) - { - case GLGizmosManager::EType::Move: - case GLGizmosManager::EType::Scale: - case GLGizmosManager::EType::Rotate: - { - update_sequential_clearance(); - break; - } - default: { break; } - } - } - else if (evt.Dragging()) { - switch (m_gizmos.get_current_type()) - { - case GLGizmosManager::EType::Move: - case GLGizmosManager::EType::Scale: - case GLGizmosManager::EType::Rotate: - { - show_sinking_contours(); - break; - } - default: { break; } + // It should be detection of volume change + // Not only detection of some modifiers !!! + if (evt.Dragging()) { + GLGizmosManager::EType c = m_gizmos.get_current_type(); + if (current_printer_technology() == ptFFF && + fff_print()->config().complete_objects){ + if (c == GLGizmosManager::EType::Move || + c == GLGizmosManager::EType::Scale || + c == GLGizmosManager::EType::Rotate ) + update_sequential_clearance(); + } else { + if (c == GLGizmosManager::EType::Move || + c == GLGizmosManager::EType::Scale || + c == GLGizmosManager::EType::Rotate) + show_sinking_contours(); } } @@ -3302,7 +3350,7 @@ void GLCanvas3D::on_mouse(wxMouseEvent& evt) m_volumes.volumes[volume_idx]->hover = GLVolume::HS_None; // The dragging operation is initiated. m_mouse.drag.move_volume_idx = volume_idx; - m_selection.start_dragging(); + m_selection.setup_cache(); m_mouse.drag.start_position_3D = m_mouse.scene_position; m_sequential_print_clearance_first_displacement = true; m_moving = true; @@ -3414,9 +3462,6 @@ void GLCanvas3D::on_mouse(wxMouseEvent& evt) } } else if (evt.LeftUp() || evt.MiddleUp() || evt.RightUp()) { - if (evt.LeftUp()) - m_selection.stop_dragging(); - if (m_layers_editing.state != LayersEditing::Unknown) { m_layers_editing.state = LayersEditing::Unknown; _stop_timer(); @@ -3785,15 +3830,6 @@ void GLCanvas3D::do_scale(const std::string& snapshot_type) m_dirty = true; } -void GLCanvas3D::do_flatten(const Vec3d& normal, const std::string& snapshot_type) -{ - if (!snapshot_type.empty()) - wxGetApp().plater()->take_snapshot(_(snapshot_type)); - - m_selection.flattening_rotate(normal); - do_rotate(""); // avoid taking another snapshot -} - void GLCanvas3D::do_mirror(const std::string& snapshot_type) { if (m_model == nullptr) @@ -4356,7 +4392,11 @@ void GLCanvas3D::_render_thumbnail_internal(ThumbnailData& thumbnail_data, const shader->set_uniform("emission_factor", 0.0f); for (GLVolume* vol : visible_volumes) { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + vol->model.set_color((vol->printable && !vol->is_outside) ? (current_printer_technology() == ptSLA ? vol->color : ColorRGBA::ORANGE()) : ColorRGBA::GRAY()); +#else shader->set_uniform("uniform_color", (vol->printable && !vol->is_outside) ? (current_printer_technology() == ptSLA ? vol->color : ColorRGBA::ORANGE()) : ColorRGBA::GRAY()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // the volume may have been deactivated by an active gizmo bool is_active = vol->is_active; vol->is_active = true; @@ -5562,6 +5602,12 @@ void GLCanvas3D::_render_overlays() void GLCanvas3D::_render_volumes_for_picking() const { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GLShaderProgram* shader = wxGetApp().get_shader("flat"); + if (shader == nullptr) + return; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + // do not cull backfaces to show broken geometry, if any glsafe(::glDisable(GL_CULL_FACE)); @@ -5577,9 +5623,17 @@ void GLCanvas3D::_render_volumes_for_picking() const // we reserve color = (0,0,0) for occluders (as the printbed) // so we shift volumes' id by 1 to get the proper color const unsigned int id = 1 + volume.second.first; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume.first->model.set_color(picking_decode(id)); + shader->start_using(); +#else glsafe(::glColor4fv(picking_decode(id).data())); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL volume.first->render(); - } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + shader->stop_using(); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } } glsafe(::glDisableClientState(GL_NORMAL_ARRAY)); @@ -6165,23 +6219,48 @@ void GLCanvas3D::_load_print_toolpaths(const BuildVolume &build_volume) skirt_height = std::min(skirt_height, print_zs.size()); print_zs.erase(print_zs.begin() + skirt_height, print_zs.end()); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GLVolume* volume = m_volumes.new_toolpath_volume(color); + GLModel::Geometry init_data; + init_data.format = { GLModel::Geometry::EPrimitiveType::Triangles, GLModel::Geometry::EVertexLayout::P3N3, GLModel::Geometry::EIndexType::UINT }; +#else GLVolume *volume = m_volumes.new_toolpath_volume(color, VERTEX_BUFFER_RESERVE_SIZE); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL for (size_t i = 0; i < skirt_height; ++ i) { volume->print_zs.emplace_back(print_zs[i]); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume->offsets.emplace_back(init_data.indices_count()); + if (i == 0) + _3DScene::extrusionentity_to_verts(print->brim(), print_zs[i], Point(0, 0), init_data); + _3DScene::extrusionentity_to_verts(print->skirt(), print_zs[i], Point(0, 0), init_data); +#else volume->offsets.emplace_back(volume->indexed_vertex_array.quad_indices.size()); volume->offsets.emplace_back(volume->indexed_vertex_array.triangle_indices.size()); if (i == 0) _3DScene::extrusionentity_to_verts(print->brim(), print_zs[i], Point(0, 0), *volume); _3DScene::extrusionentity_to_verts(print->skirt(), print_zs[i], Point(0, 0), *volume); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL // Ensure that no volume grows over the limits. If the volume is too large, allocate a new one. +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (init_data.vertices_size_bytes() > MAX_VERTEX_BUFFER_SIZE) { + volume->model.init_from(std::move(init_data)); +#else if (volume->indexed_vertex_array.vertices_and_normals_interleaved.size() > MAX_VERTEX_BUFFER_SIZE) { - GLVolume &vol = *volume; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GLVolume &vol = *volume; volume = m_volumes.new_toolpath_volume(vol.color); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL reserve_new_volume_finalize_old_volume(*volume, vol, m_initialized); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume->model.init_from(std::move(init_data)); + volume->is_outside = !contains(build_volume, volume->model); +#else volume->is_outside = ! build_volume.all_paths_inside_vertices_and_normals_interleaved(volume->indexed_vertex_array.vertices_and_normals_interleaved, volume->indexed_vertex_array.bounding_box()); volume->indexed_vertex_array.finalize_geometry(m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, const BuildVolume& build_volume, const std::vector& str_tool_colors, const std::vector& color_print_values) @@ -6353,7 +6432,12 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c // Allocate the volume before locking. GLVolume *volume = new GLVolume(color); volume->is_extrusion_path = true; - tbb::spin_mutex::scoped_lock lock; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + // to prevent sending data to gpu (in the main thread) while + // editing the model geometry + volume->model.disable_render(); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + tbb::spin_mutex::scoped_lock lock; // Lock by ROII, so if the emplace_back() fails, the lock will be released. lock.acquire(new_volume_mutex); m_volumes.volumes.emplace_back(volume); @@ -6365,31 +6449,57 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c tbb::blocked_range(0, ctxt.layers.size(), grain_size), [&ctxt, &new_volume, is_selected_separate_extruder, this](const tbb::blocked_range& range) { GLVolumePtrs vols; - auto volume = [&ctxt, &vols](size_t layer_idx, int extruder, int feature) -> GLVolume& { - return *vols[ctxt.color_by_color_print()? +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + std::vector geometries; + auto select_geometry = [&ctxt, &geometries](size_t layer_idx, int extruder, int feature) -> GLModel::Geometry& { + return geometries[ctxt.color_by_color_print() ? ctxt.color_print_color_idx_by_layer_idx_and_extruder(layer_idx, extruder) : - ctxt.color_by_tool() ? - std::min(ctxt.number_tools() - 1, std::max(extruder - 1, 0)) : - feature - ]; + ctxt.color_by_tool() ? + std::min(ctxt.number_tools() - 1, std::max(extruder - 1, 0)) : + feature + ]; }; +#else + auto volume = [&ctxt, &vols](size_t layer_idx, int extruder, int feature) -> GLVolume& { + return *vols[ctxt.color_by_color_print() ? + ctxt.color_print_color_idx_by_layer_idx_and_extruder(layer_idx, extruder) : + ctxt.color_by_tool() ? + std::min(ctxt.number_tools() - 1, std::max(extruder - 1, 0)) : + feature + ]; + }; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (ctxt.color_by_color_print() || ctxt.color_by_tool()) { - for (size_t i = 0; i < ctxt.number_tools(); ++i) + for (size_t i = 0; i < ctxt.number_tools(); ++i) { vols.emplace_back(new_volume(ctxt.color_tool(i))); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + geometries.emplace_back(GLModel::Geometry()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } } - else + else { vols = { new_volume(ctxt.color_perimeters()), new_volume(ctxt.color_infill()), new_volume(ctxt.color_support()) }; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + geometries = { GLModel::Geometry(), GLModel::Geometry(), GLModel::Geometry() }; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + assert(vols.size() == geometries.size()); + for (GLModel::Geometry& g : geometries) { + g.format = { GLModel::Geometry::EPrimitiveType::Triangles, GLModel::Geometry::EVertexLayout::P3N3, GLModel::Geometry::EIndexType::UINT }; + } +#else for (GLVolume *vol : vols) // Reserving number of vertices (3x position + 3x color) vol->indexed_vertex_array.reserve(VERTEX_BUFFER_RESERVE_SIZE / 6); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL for (size_t idx_layer = range.begin(); idx_layer < range.end(); ++ idx_layer) { const Layer *layer = ctxt.layers[idx_layer]; - if (is_selected_separate_extruder) - { + if (is_selected_separate_extruder) { bool at_least_one_has_correct_extruder = false; - for (const LayerRegion* layerm : layer->regions()) - { + for (const LayerRegion* layerm : layer->regions()) { if (layerm->slices.surfaces.empty()) continue; const PrintRegionConfig& cfg = layerm->region().config(); @@ -6404,17 +6514,27 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c continue; } - for (GLVolume *vol : vols) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + for (size_t i = 0; i < vols.size(); ++i) { + GLVolume* vol = vols[i]; + if (vol->print_zs.empty() || vol->print_zs.back() != layer->print_z) { + vol->print_zs.emplace_back(layer->print_z); + vol->offsets.emplace_back(geometries[i].indices_count()); + } + } +#else + for (GLVolume* vol : vols) if (vol->print_zs.empty() || vol->print_zs.back() != layer->print_z) { vol->print_zs.emplace_back(layer->print_z); vol->offsets.emplace_back(vol->indexed_vertex_array.quad_indices.size()); vol->offsets.emplace_back(vol->indexed_vertex_array.triangle_indices.size()); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + for (const PrintInstance &instance : *ctxt.shifted_copies) { const Point © = instance.shift; for (const LayerRegion *layerm : layer->regions()) { - if (is_selected_separate_extruder) - { + if (is_selected_separate_extruder) { const PrintRegionConfig& cfg = layerm->region().config(); if (cfg.perimeter_extruder.value != m_selected_extruder || cfg.infill_extruder.value != m_selected_extruder || @@ -6422,19 +6542,31 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c continue; } if (ctxt.has_perimeters) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + _3DScene::extrusionentity_to_verts(layerm->perimeters, float(layer->print_z), copy, + select_geometry(idx_layer, layerm->region().config().perimeter_extruder.value, 0)); +#else _3DScene::extrusionentity_to_verts(layerm->perimeters, float(layer->print_z), copy, volume(idx_layer, layerm->region().config().perimeter_extruder.value, 0)); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (ctxt.has_infill) { for (const ExtrusionEntity *ee : layerm->fills.entities) { // fill represents infill extrusions of a single island. const auto *fill = dynamic_cast(ee); if (! fill->entities.empty()) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + _3DScene::extrusionentity_to_verts(*fill, float(layer->print_z), copy, + select_geometry(idx_layer, is_solid_infill(fill->entities.front()->role()) ? + layerm->region().config().solid_infill_extruder : + layerm->region().config().infill_extruder, 1)); +#else _3DScene::extrusionentity_to_verts(*fill, float(layer->print_z), copy, volume(idx_layer, is_solid_infill(fill->entities.front()->role()) ? layerm->region().config().solid_infill_extruder : layerm->region().config().infill_extruder, 1)); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } } @@ -6442,28 +6574,50 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c const SupportLayer *support_layer = dynamic_cast(layer); if (support_layer) { for (const ExtrusionEntity *extrusion_entity : support_layer->support_fills.entities) +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + _3DScene::extrusionentity_to_verts(extrusion_entity, float(layer->print_z), copy, + select_geometry(idx_layer, (extrusion_entity->role() == erSupportMaterial) ? + support_layer->object()->config().support_material_extruder : + support_layer->object()->config().support_material_interface_extruder, 2)); +#else _3DScene::extrusionentity_to_verts(extrusion_entity, float(layer->print_z), copy, volume(idx_layer, (extrusion_entity->role() == erSupportMaterial) ? support_layer->object()->config().support_material_extruder : support_layer->object()->config().support_material_interface_extruder, 2)); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } } // Ensure that no volume grows over the limits. If the volume is too large, allocate a new one. for (size_t i = 0; i < vols.size(); ++i) { GLVolume &vol = *vols[i]; - if (vol.indexed_vertex_array.vertices_and_normals_interleaved.size() > MAX_VERTEX_BUFFER_SIZE) { - vols[i] = new_volume(vol.color); - reserve_new_volume_finalize_old_volume(*vols[i], vol, false); - } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (geometries[i].vertices_size_bytes() > MAX_VERTEX_BUFFER_SIZE) { + vol.model.init_from(std::move(geometries[i])); +#else + if (vol.indexed_vertex_array.vertices_and_normals_interleaved.size() > MAX_VERTEX_BUFFER_SIZE) { +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + vols[i] = new_volume(vol.color); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + reserve_new_volume_finalize_old_volume(*vols[i], vol, false); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } } } + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + for (size_t i = 0; i < vols.size(); ++i) { + if (!geometries[i].is_empty()) + vols[i]->model.init_from(std::move(geometries[i])); + } +#else for (GLVolume *vol : vols) // Ideally one would call vol->indexed_vertex_array.finalize() here to move the buffers to the OpenGL driver, // but this code runs in parallel and the OpenGL driver is not thread safe. vol->indexed_vertex_array.shrink_to_fit(); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL }); BOOST_LOG_TRIVIAL(debug) << "Loading print object toolpaths in parallel - finalizing results" << m_volumes.log_memory_info() << log_memory_info(); @@ -6478,8 +6632,14 @@ void GLCanvas3D::_load_print_object_toolpaths(const PrintObject& print_object, c } for (size_t i = volumes_cnt_initial; i < m_volumes.volumes.size(); ++i) { GLVolume* v = m_volumes.volumes[i]; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + v->is_outside = !contains(build_volume, v->model); + // We are done editinig the model, now it can be sent to gpu + v->model.enable_render(); +#else v->is_outside = ! build_volume.all_paths_inside_vertices_and_normals_interleaved(v->indexed_vertex_array.vertices_and_normals_interleaved, v->indexed_vertex_array.bounding_box()); v->indexed_vertex_array.finalize_geometry(m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } BOOST_LOG_TRIVIAL(debug) << "Loading print object toolpaths in parallel - end" << m_volumes.log_memory_info() << log_memory_info(); @@ -6499,10 +6659,10 @@ void GLCanvas3D::_load_wipe_tower_toolpaths(const BuildVolume& build_volume, con struct Ctxt { - const Print *print; - const std::vector* tool_colors; - Vec2f wipe_tower_pos; - float wipe_tower_angle; + const Print *print; + const std::vector *tool_colors; + Vec2f wipe_tower_pos; + float wipe_tower_angle; static ColorRGBA color_support() { return ColorRGBA::GREENISH(); } @@ -6544,6 +6704,11 @@ void GLCanvas3D::_load_wipe_tower_toolpaths(const BuildVolume& build_volume, con auto new_volume = [this, &new_volume_mutex](const ColorRGBA& color) { auto *volume = new GLVolume(color); volume->is_extrusion_path = true; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + // to prevent sending data to gpu (in the main thread) while + // editing the model geometry + volume->model.disable_render(); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL tbb::spin_mutex::scoped_lock lock; lock.acquire(new_volume_mutex); m_volumes.volumes.emplace_back(volume); @@ -6557,23 +6722,46 @@ void GLCanvas3D::_load_wipe_tower_toolpaths(const BuildVolume& build_volume, con [&ctxt, &new_volume](const tbb::blocked_range& range) { // Bounding box of this slab of a wipe tower. GLVolumePtrs vols; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + std::vector geometries; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL if (ctxt.color_by_tool()) { - for (size_t i = 0; i < ctxt.number_tools(); ++i) + for (size_t i = 0; i < ctxt.number_tools(); ++i) { vols.emplace_back(new_volume(ctxt.color_tool(i))); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + geometries.emplace_back(GLModel::Geometry()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } } - else + else { vols = { new_volume(ctxt.color_support()) }; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + geometries = { GLModel::Geometry() }; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + } + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + assert(vols.size() == geometries.size()); + for (GLModel::Geometry& g : geometries) { + g.format = { GLModel::Geometry::EPrimitiveType::Triangles, GLModel::Geometry::EVertexLayout::P3N3, GLModel::Geometry::EIndexType::UINT }; + } +#else for (GLVolume *volume : vols) // Reserving number of vertices (3x position + 3x color) volume->indexed_vertex_array.reserve(VERTEX_BUFFER_RESERVE_SIZE / 6); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL for (size_t idx_layer = range.begin(); idx_layer < range.end(); ++idx_layer) { const std::vector &layer = ctxt.tool_change(idx_layer); for (size_t i = 0; i < vols.size(); ++i) { GLVolume &vol = *vols[i]; if (vol.print_zs.empty() || vol.print_zs.back() != layer.front().print_z) { vol.print_zs.emplace_back(layer.front().print_z); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + vol.offsets.emplace_back(geometries[i].indices_count()); +#else vol.offsets.emplace_back(vol.indexed_vertex_array.quad_indices.size()); vol.offsets.emplace_back(vol.indexed_vertex_array.triangle_indices.size()); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } for (const WipeTower::ToolChangeResult &extrusions : layer) { @@ -6615,21 +6803,42 @@ void GLCanvas3D::_load_wipe_tower_toolpaths(const BuildVolume& build_volume, con e_prev = e; } + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + _3DScene::thick_lines_to_verts(lines, widths, heights, lines.front().a == lines.back().b, extrusions.print_z, + geometries[ctxt.volume_idx(e.tool, 0)]); +#else _3DScene::thick_lines_to_verts(lines, widths, heights, lines.front().a == lines.back().b, extrusions.print_z, *vols[ctxt.volume_idx(e.tool, 0)]); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } } for (size_t i = 0; i < vols.size(); ++i) { GLVolume &vol = *vols[i]; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + if (geometries[i].vertices_size_bytes() > MAX_VERTEX_BUFFER_SIZE) { + vol.model.init_from(std::move(geometries[i])); +#else if (vol.indexed_vertex_array.vertices_and_normals_interleaved.size() > MAX_VERTEX_BUFFER_SIZE) { +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL vols[i] = new_volume(vol.color); +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL reserve_new_volume_finalize_old_volume(*vols[i], vol, false); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } } + +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + for (size_t i = 0; i < vols.size(); ++i) { + if (!geometries[i].is_empty()) + vols[i]->model.init_from(std::move(geometries[i])); + } +#else for (GLVolume *vol : vols) vol->indexed_vertex_array.shrink_to_fit(); - }); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + }); BOOST_LOG_TRIVIAL(debug) << "Loading wipe tower toolpaths in parallel - finalizing results" << m_volumes.log_memory_info() << log_memory_info(); // Remove empty volumes from the newly added volumes. @@ -6643,8 +6852,14 @@ void GLCanvas3D::_load_wipe_tower_toolpaths(const BuildVolume& build_volume, con } for (size_t i = volumes_cnt_initial; i < m_volumes.volumes.size(); ++i) { GLVolume* v = m_volumes.volumes[i]; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + v->is_outside = !contains(build_volume, v->model); + // We are done editinig the model, now it can be sent to gpu + v->model.enable_render(); +#else v->is_outside = ! build_volume.all_paths_inside_vertices_and_normals_interleaved(v->indexed_vertex_array.vertices_and_normals_interleaved, v->indexed_vertex_array.bounding_box()); v->indexed_vertex_array.finalize_geometry(m_initialized); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } BOOST_LOG_TRIVIAL(debug) << "Loading wipe tower toolpaths in parallel - end" << m_volumes.log_memory_info() << log_memory_info(); @@ -6668,11 +6883,21 @@ void GLCanvas3D::_load_sla_shells() m_volumes.volumes.emplace_back(new GLVolume(color)); GLVolume& v = *m_volumes.volumes.back(); #if ENABLE_SMOOTH_NORMALS +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + v.model.init_from(mesh, true); +#else v.indexed_vertex_array.load_mesh(mesh, true); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#else +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + v.model.init_from(mesh); #else v.indexed_vertex_array.load_mesh(mesh); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #endif // ENABLE_SMOOTH_NORMALS +#if !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.indexed_vertex_array.finalize_geometry(m_initialized); +#endif // !ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL v.shader_outside_printer_detection_enabled = outside_printer_detection_enabled; v.composite_id.volume_id = volume_id; v.set_instance_offset(unscale(instance.shift.x(), instance.shift.y(), 0.0)); diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp index a3c302baef..48fef56110 100644 --- a/src/slic3r/GUI/GLCanvas3D.hpp +++ b/src/slic3r/GUI/GLCanvas3D.hpp @@ -793,7 +793,6 @@ public: void do_move(const std::string& snapshot_type); void do_rotate(const std::string& snapshot_type); void do_scale(const std::string& snapshot_type); - void do_flatten(const Vec3d& normal, const std::string& snapshot_type); void do_mirror(const std::string& snapshot_type); void update_gizmos_on_off_state(); diff --git a/src/slic3r/GUI/GLModel.cpp b/src/slic3r/GUI/GLModel.cpp index 28a6a1ce7a..f0eac9a24e 100644 --- a/src/slic3r/GUI/GLModel.cpp +++ b/src/slic3r/GUI/GLModel.cpp @@ -8,15 +8,56 @@ #include "libslic3r/TriangleMesh.hpp" #include "libslic3r/Model.hpp" #include "libslic3r/Polygon.hpp" +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#include "libslic3r/BuildVolume.hpp" +#include "libslic3r/Geometry/ConvexHull.hpp" +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #include #include +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_SMOOTH_NORMALS +#include +#include +#include +#endif // ENABLE_SMOOTH_NORMALS +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + #include namespace Slic3r { namespace GUI { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +#if ENABLE_SMOOTH_NORMALS +static void smooth_normals_corner(const TriangleMesh& mesh, std::vector& normals) +{ + using MapMatrixXfUnaligned = Eigen::Map>; + using MapMatrixXiUnaligned = Eigen::Map>; + + std::vector face_normals = its_face_normals(mesh.its); + + Eigen::MatrixXd vertices = MapMatrixXfUnaligned(mesh.its.vertices.front().data(), + Eigen::Index(mesh.its.vertices.size()), 3).cast(); + Eigen::MatrixXi indices = MapMatrixXiUnaligned(mesh.its.indices.front().data(), + Eigen::Index(mesh.its.indices.size()), 3); + Eigen::MatrixXd in_normals = MapMatrixXfUnaligned(face_normals.front().data(), + Eigen::Index(face_normals.size()), 3).cast(); + Eigen::MatrixXd out_normals; + + igl::per_corner_normals(vertices, indices, in_normals, 1.0, out_normals); + + normals = std::vector(mesh.its.vertices.size()); + for (size_t i = 0; i < mesh.its.indices.size(); ++i) { + for (size_t j = 0; j < 3; ++j) { + normals[mesh.its.indices[i][j]] = out_normals.row(i * 3 + j).cast(); + } + } +} +#endif // ENABLE_SMOOTH_NORMALS +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + #if ENABLE_GLBEGIN_GLEND_REMOVAL void GLModel::Geometry::reserve_vertices(size_t vertices_count) { @@ -207,6 +248,37 @@ Vec2f GLModel::Geometry::extract_tex_coord_2(size_t id) const return { *(start + 0), *(start + 1) }; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GLModel::Geometry::set_vertex(size_t id, const Vec3f& position, const Vec3f& normal) +{ + assert(format.vertex_layout == EVertexLayout::P3N3); + assert(id < vertices_count()); + if (id < vertices_count()) { + float* start = &vertices[id * vertex_stride_floats(format)]; + *(start + 0) = position.x(); + *(start + 1) = position.y(); + *(start + 2) = position.z(); + *(start + 3) = normal.x(); + *(start + 4) = normal.y(); + *(start + 5) = normal.z(); + } +} + +void GLModel::Geometry::set_ushort_index(size_t id, unsigned short index) +{ + assert(id < indices_count()); + if (id < indices_count()) + ::memcpy(indices.data() + id * sizeof(unsigned short), &index, sizeof(unsigned short)); +} + +void GLModel::Geometry::set_uint_index(size_t id, unsigned int index) +{ + assert(id < indices_count()); + if (id < indices_count()) + ::memcpy(indices.data() + id * sizeof(unsigned int), &index, sizeof(unsigned int)); +} +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + unsigned int GLModel::Geometry::extract_uint_index(size_t id) const { if (format.index_type != EIndexType::UINT) { @@ -219,7 +291,7 @@ unsigned int GLModel::Geometry::extract_uint_index(size_t id) const return -1; } - unsigned int ret = -1; + unsigned int ret = (unsigned int)-1; ::memcpy(&ret, indices.data() + id * index_stride_bytes(format), sizeof(unsigned int)); return ret; } @@ -236,11 +308,23 @@ unsigned short GLModel::Geometry::extract_ushort_index(size_t id) const return -1; } - unsigned short ret = -1; + unsigned short ret = (unsigned short)-1; ::memcpy(&ret, indices.data() + id * index_stride_bytes(format), sizeof(unsigned short)); return ret; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GLModel::Geometry::remove_vertex(size_t id) +{ + assert(id < vertices_count()); + if (id < vertices_count()) { + size_t stride = vertex_stride_floats(format); + std::vector::iterator it = vertices.begin() + id * stride; + vertices.erase(it, it + stride); + } +} +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + size_t GLModel::Geometry::vertex_stride_floats(const Format& format) { switch (format.vertex_layout) @@ -461,10 +545,58 @@ void GLModel::init_from(const Geometry& data) } #if ENABLE_GLBEGIN_GLEND_REMOVAL +#if ENABLE_SMOOTH_NORMALS +void GLModel::init_from(const TriangleMesh& mesh, bool smooth_normals) +{ + if (smooth_normals) { + if (is_initialized()) { + // call reset() if you want to reuse this model + assert(false); + return; + } + + if (mesh.its.vertices.empty() || mesh.its.indices.empty()) { + assert(false); + return; + } + + std::vector normals; + smooth_normals_corner(mesh, normals); + + const indexed_triangle_set& its = mesh.its; + Geometry& data = m_render_data.geometry; + data.format = { Geometry::EPrimitiveType::Triangles, Geometry::EVertexLayout::P3N3, GLModel::Geometry::index_type(3 * its.indices.size()) }; + data.reserve_vertices(3 * its.indices.size()); + data.reserve_indices(3 * its.indices.size()); + + // vertices + for (size_t i = 0; i < its.vertices.size(); ++i) { + data.add_vertex(its.vertices[i], normals[i]); + } + + // indices + for (size_t i = 0; i < its.indices.size(); ++i) { + const stl_triangle_vertex_indices& idx = its.indices[i]; + if (data.format.index_type == GLModel::Geometry::EIndexType::USHORT) + data.add_ushort_triangle((unsigned short)idx(0), (unsigned short)idx(1), (unsigned short)idx(2)); + else + data.add_uint_triangle((unsigned int)idx(0), (unsigned int)idx(1), (unsigned int)idx(2)); + } + + // update bounding box + for (size_t i = 0; i < vertices_count(); ++i) { + m_bounding_box.merge(m_render_data.geometry.extract_position_3(i).cast()); + } + } + else + init_from(mesh.its); +} +#else void GLModel::init_from(const TriangleMesh& mesh) { init_from(mesh.its); } +#endif // ENABLE_SMOOTH_NORMALS void GLModel::init_from(const indexed_triangle_set& its) #else @@ -484,21 +616,24 @@ void GLModel::init_from(const indexed_triangle_set& its, const BoundingBoxf3 &bb } Geometry& data = m_render_data.geometry; - data.format = { Geometry::EPrimitiveType::Triangles, Geometry::EVertexLayout::P3N3, Geometry::EIndexType::UINT }; + data.format = { Geometry::EPrimitiveType::Triangles, Geometry::EVertexLayout::P3N3, GLModel::Geometry::index_type(3 * its.indices.size()) }; data.reserve_vertices(3 * its.indices.size()); data.reserve_indices(3 * its.indices.size()); // vertices + indices unsigned int vertices_counter = 0; for (uint32_t i = 0; i < its.indices.size(); ++i) { - stl_triangle_vertex_indices face = its.indices[i]; - stl_vertex vertex[3] = { its.vertices[face[0]], its.vertices[face[1]], its.vertices[face[2]] }; - stl_vertex n = face_normal_normalized(vertex); + const stl_triangle_vertex_indices face = its.indices[i]; + const stl_vertex vertex[3] = { its.vertices[face[0]], its.vertices[face[1]], its.vertices[face[2]] }; + const stl_vertex n = face_normal_normalized(vertex); for (size_t j = 0; j < 3; ++j) { data.add_vertex(vertex[j], n); } vertices_counter += 3; - data.add_uint_triangle(vertices_counter - 3, vertices_counter - 2, vertices_counter - 1); + if (data.format.index_type == GLModel::Geometry::EIndexType::USHORT) + data.add_ushort_triangle((unsigned short)vertices_counter - 3, (unsigned short)vertices_counter - 2, (unsigned short)vertices_counter - 1); + else + data.add_uint_triangle(vertices_counter - 3, vertices_counter - 2, vertices_counter - 1); } // update bounding box @@ -721,6 +856,9 @@ void GLModel::render() void GLModel::render() const #endif // ENABLE_GLBEGIN_GLEND_REMOVAL { +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + render(std::make_pair(0, indices_count())); +#else GLShaderProgram* shader = wxGetApp().get_current_shader(); #if ENABLE_GLBEGIN_GLEND_REMOVAL @@ -809,8 +947,71 @@ void GLModel::render() const glsafe(::glBindBuffer(GL_ARRAY_BUFFER, 0)); } #endif // ENABLE_GLBEGIN_GLEND_REMOVAL +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +void GLModel::render(const std::pair& range) +{ + if (m_render_disabled) + return; + + if (range.second == range.first) + return; + + GLShaderProgram* shader = wxGetApp().get_current_shader(); + + if (shader == nullptr) + return; + + // sends data to gpu if not done yet + if (m_render_data.vbo_id == 0 || m_render_data.ibo_id == 0) { + if (m_render_data.geometry.vertices_count() > 0 && m_render_data.geometry.indices_count() > 0 && !send_to_gpu()) + return; + } + + const Geometry& data = m_render_data.geometry; + + const GLenum mode = get_primitive_mode(data.format); + const GLenum index_type = get_index_type(data.format); + + const size_t vertex_stride_bytes = Geometry::vertex_stride_bytes(data.format); + const bool position = Geometry::has_position(data.format); + const bool normal = Geometry::has_normal(data.format); + const bool tex_coord = Geometry::has_tex_coord(data.format); + + glsafe(::glBindBuffer(GL_ARRAY_BUFFER, m_render_data.vbo_id)); + + if (position) { + glsafe(::glVertexPointer(Geometry::position_stride_floats(data.format), GL_FLOAT, vertex_stride_bytes, (const void*)Geometry::position_offset_bytes(data.format))); + glsafe(::glEnableClientState(GL_VERTEX_ARRAY)); + } + if (normal) { + glsafe(::glNormalPointer(GL_FLOAT, vertex_stride_bytes, (const void*)Geometry::normal_offset_bytes(data.format))); + glsafe(::glEnableClientState(GL_NORMAL_ARRAY)); + } + if (tex_coord) { + glsafe(::glTexCoordPointer(Geometry::tex_coord_stride_floats(data.format), GL_FLOAT, vertex_stride_bytes, (const void*)Geometry::tex_coord_offset_bytes(data.format))); + glsafe(::glEnableClientState(GL_TEXTURE_COORD_ARRAY)); + } + + shader->set_uniform("uniform_color", data.color); + + glsafe(::glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_render_data.ibo_id)); + glsafe(::glDrawElements(mode, range.second - range.first, index_type, (const void*)(range.first * Geometry::index_stride_bytes(data.format)))); + glsafe(::glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0)); + + if (tex_coord) + glsafe(::glDisableClientState(GL_TEXTURE_COORD_ARRAY)); + if (normal) + glsafe(::glDisableClientState(GL_NORMAL_ARRAY)); + if (position) + glsafe(::glDisableClientState(GL_VERTEX_ARRAY)); + + glsafe(::glBindBuffer(GL_ARRAY_BUFFER, 0)); +} +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + #if ENABLE_GLBEGIN_GLEND_REMOVAL void GLModel::render_instanced(unsigned int instances_vbo, unsigned int instances_count) #else @@ -1027,6 +1228,62 @@ static void append_triangle(GLModel::Geometry& data, unsigned short v1, unsigned } #endif // ENABLE_GLBEGIN_GLEND_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +template +inline bool all_vertices_inside(const GLModel::Geometry& geometry, Fn fn) +{ + const size_t position_stride_floats = geometry.position_stride_floats(geometry.format); + const size_t position_offset_floats = geometry.position_offset_floats(geometry.format); + assert(position_stride_floats == 3); + if (geometry.vertices.empty() || position_stride_floats != 3) + return false; + + for (auto it = geometry.vertices.begin(); it != geometry.vertices.end(); ) { + it += position_offset_floats; + if (!fn({ *it, *(it + 1), *(it + 2) })) + return false; + it += (geometry.vertex_stride_floats(geometry.format) - position_offset_floats - position_stride_floats); + } + return true; +} + +bool contains(const BuildVolume& volume, const GLModel& model, bool ignore_bottom) +{ + static constexpr const double epsilon = BuildVolume::BedEpsilon; + switch (volume.type()) { + case BuildVolume::Type::Rectangle: + { + BoundingBox3Base build_volume = volume.bounding_volume().inflated(epsilon); + if (volume.max_print_height() == 0.0) + build_volume.max.z() = std::numeric_limits::max(); + if (ignore_bottom) + build_volume.min.z() = -std::numeric_limits::max(); + const BoundingBoxf3& model_box = model.get_bounding_box(); + return build_volume.contains(model_box.min) && build_volume.contains(model_box.max); + } + case BuildVolume::Type::Circle: + { + const Geometry::Circled& circle = volume.circle(); + const Vec2f c = unscaled(circle.center); + const float r = unscaled(circle.radius) + float(epsilon); + const float r2 = sqr(r); + return volume.max_print_height() == 0.0 ? + all_vertices_inside(model.get_geometry(), [c, r2](const Vec3f& p) { return (to_2d(p) - c).squaredNorm() <= r2; }) : + + all_vertices_inside(model.get_geometry(), [c, r2, z = volume.max_print_height() + epsilon](const Vec3f& p) { return (to_2d(p) - c).squaredNorm() <= r2 && p.z() <= z; }); + } + case BuildVolume::Type::Convex: + //FIXME doing test on convex hull until we learn to do test on non-convex polygons efficiently. + case BuildVolume::Type::Custom: + return volume.max_print_height() == 0.0 ? + all_vertices_inside(model.get_geometry(), [&volume](const Vec3f& p) { return Geometry::inside_convex_polygon(volume.top_bottom_convex_hull_decomposition_bed(), to_2d(p).cast()); }) : + all_vertices_inside(model.get_geometry(), [&volume, z = volume.max_print_height() + epsilon](const Vec3f& p) { return Geometry::inside_convex_polygon(volume.top_bottom_convex_hull_decomposition_bed(), to_2d(p).cast()) && p.z() <= z; }); + default: + return true; + } +} +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + GLModel::Geometry stilized_arrow(unsigned short resolution, float tip_radius, float tip_height, float stem_radius, float stem_height) { #if !ENABLE_GLBEGIN_GLEND_REMOVAL diff --git a/src/slic3r/GUI/GLModel.hpp b/src/slic3r/GUI/GLModel.hpp index 72c50ee11c..3b268dab7e 100644 --- a/src/slic3r/GUI/GLModel.hpp +++ b/src/slic3r/GUI/GLModel.hpp @@ -14,6 +14,9 @@ namespace Slic3r { class TriangleMesh; class Polygon; using Polygons = std::vector; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL +class BuildVolume; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL namespace GUI { @@ -89,6 +92,13 @@ namespace GUI { void add_vertex(const Vec3f& position, const Vec2f& tex_coord); // EVertexLayout::P3T2 void add_vertex(const Vec3f& position, const Vec3f& normal); // EVertexLayout::P3N3 +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void set_vertex(size_t id, const Vec3f& position, const Vec3f& normal); // EVertexLayout::P3N3 + + void set_ushort_index(size_t id, unsigned short index); + void set_uint_index(size_t id, unsigned int index); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void add_ushort_index(unsigned short id); void add_uint_index(unsigned int id); @@ -106,7 +116,11 @@ namespace GUI { unsigned int extract_uint_index(size_t id) const; unsigned short extract_ushort_index(size_t id) const; - bool is_empty() const { return vertices.empty() || indices.empty(); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void remove_vertex(size_t id); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + + bool is_empty() const { return vertices_count() == 0 || indices_count() == 0; } size_t vertices_count() const { return vertices.size() / vertex_stride_floats(format); } size_t indices_count() const { return indices.size() / index_stride_bytes(format); } @@ -179,6 +193,16 @@ namespace GUI { std::vector m_render_data; #endif // ENABLE_GLBEGIN_GLEND_REMOVAL +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + // By default the vertex and index buffers data are sent to gpu at the first call to render() method. + // If you need to initialize a model from outside the main thread, so that a call to render() may happen + // before the initialization is complete, use the methods: + // disable_render() + // ... do your initialization ... + // enable_render() + // to keep the data on cpu side until needed. + bool m_render_disabled{ false }; +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL BoundingBoxf3 m_bounding_box; std::string m_filename; @@ -197,8 +221,16 @@ namespace GUI { size_t indices_size_bytes() const { return indices_count() * Geometry::index_stride_bytes(m_render_data.geometry.format); } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + const Geometry& get_geometry() const { return m_render_data.geometry; } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void init_from(Geometry&& data); +#if ENABLE_SMOOTH_NORMALS + void init_from(const TriangleMesh& mesh, bool smooth_normals = false); +#else void init_from(const TriangleMesh& mesh); +#endif // ENABLE_SMOOTH_NORMALS #else void init_from(const Geometry& data); void init_from(const indexed_triangle_set& its, const BoundingBoxf3& bbox); @@ -219,9 +251,15 @@ namespace GUI { void reset(); #if ENABLE_GLBEGIN_GLEND_REMOVAL void render(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + void render(const std::pair& range); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL void render_instanced(unsigned int instances_vbo, unsigned int instances_count); bool is_initialized() const { return vertices_count() > 0 && indices_count() > 0; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + bool is_empty() const { return m_render_data.geometry.is_empty(); } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL #else void render() const; void render_instanced(unsigned int instances_vbo, unsigned int instances_count) const; @@ -232,6 +270,29 @@ namespace GUI { const BoundingBoxf3& get_bounding_box() const { return m_bounding_box; } const std::string& get_filename() const { return m_filename; } +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + bool is_render_disabled() const { return m_render_disabled; } + void enable_render() { m_render_disabled = false; } + void disable_render() { m_render_disabled = true; } + + size_t cpu_memory_used() const { + size_t ret = 0; + if (!m_render_data.geometry.vertices.empty()) + ret += vertices_size_bytes(); + if (!m_render_data.geometry.indices.empty()) + ret += indices_size_bytes(); + return ret; + } + size_t gpu_memory_used() const { + size_t ret = 0; + if (m_render_data.geometry.vertices.empty()) + ret += vertices_size_bytes(); + if (m_render_data.geometry.indices.empty()) + ret += indices_size_bytes(); + return ret; + } +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + private: #if ENABLE_GLBEGIN_GLEND_REMOVAL bool send_to_gpu(); @@ -240,6 +301,10 @@ namespace GUI { #endif // ENABLE_GLBEGIN_GLEND_REMOVAL }; +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + bool contains(const BuildVolume& volume, const GLModel& model, bool ignore_bottom = true); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + // create an arrow with cylindrical stem and conical tip, with the given dimensions and resolution // the origin of the arrow is in the center of the stem cap // the arrow has its axis of symmetry along the Z axis and is pointing upward diff --git a/src/slic3r/GUI/GLSelectionRectangle.cpp b/src/slic3r/GUI/GLSelectionRectangle.cpp index 515da6de3a..8cf3247cb7 100644 --- a/src/slic3r/GUI/GLSelectionRectangle.cpp +++ b/src/slic3r/GUI/GLSelectionRectangle.cpp @@ -98,7 +98,7 @@ namespace GUI { color[1] = (m_state == Select) ? 1.0f : 0.3f; color[2] = 0.3f; glsafe(::glColor3fv(color)); -#endif // ENABLE_GLBEGIN_GLEND_REMOVAL +#endif // !ENABLE_GLBEGIN_GLEND_REMOVAL glsafe(::glDisable(GL_DEPTH_TEST)); diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index b914d8db47..3ffd9ed84f 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -754,7 +754,7 @@ void GUI_App::post_init() if (boost::algorithm::iends_with(filename, ".amf") || boost::algorithm::iends_with(filename, ".amf.xml") || boost::algorithm::iends_with(filename, ".3mf")) - this->plater()->set_project_filename(filename); + this->plater()->set_project_filename(from_u8(filename)); } } if (! this->init_params->extra_config.empty()) @@ -1285,8 +1285,13 @@ bool GUI_App::on_init_inner() else load_current_presets(); + // Save the active profiles as a "saved into project". + update_saved_preset_from_current_preset(); + if (plater_ != nullptr) { + // Save the names of active presets and project specific config into ProjectDirtyStateManager. plater_->reset_project_dirty_initial_presets(); + // Update Project dirty state, update application title bar. plater_->update_project_dirty_from_presets(); } @@ -2447,16 +2452,13 @@ void GUI_App::update_saved_preset_from_current_preset() } } -std::vector> GUI_App::get_selected_presets() const +std::vector GUI_App::get_active_preset_collections() const { - std::vector> ret; + std::vector ret; PrinterTechnology printer_technology = preset_bundle->printers.get_edited_preset().printer_technology(); - for (Tab* tab : tabs_list) { - if (tab->supports_printer_technology(printer_technology)) { - const PresetCollection* presets = tab->get_presets(); - ret.push_back({ static_cast(presets->type()), presets->get_selected_preset_name() }); - } - } + for (const Tab* tab : tabs_list) + if (tab->supports_printer_technology(printer_technology)) + ret.push_back(tab->get_presets()); return ret; } diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index ac80fc8b2d..8b4177a8d7 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -252,7 +252,7 @@ public: bool has_unsaved_preset_changes() const; bool has_current_preset_changes() const; void update_saved_preset_from_current_preset(); - std::vector> get_selected_presets() const; + std::vector get_active_preset_collections() const; bool check_and_save_current_preset_changes(const wxString& caption, const wxString& header, bool remember_choice = true, bool use_dont_save_insted_of_discard = false); void apply_keeped_preset_modifications(); bool check_and_keep_current_preset_changes(const wxString& caption, const wxString& header, int action_buttons, bool* postponed_apply_of_keeped_changes = nullptr); diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp index 98012fa2dd..6ab87150ba 100644 --- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp +++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp @@ -657,9 +657,9 @@ void ObjectManipulation::update_if_dirty() else m_og->disable(); - if (!selection.is_dragging()) { + if (!wxGetApp().plater()->canvas3D()->is_dragging()) { update_reset_buttons_visibility(); - update_mirror_buttons_visibility(); + update_mirror_buttons_visibility(); } m_dirty = false; @@ -814,9 +814,8 @@ void ObjectManipulation::change_position_value(int axis, double value) auto canvas = wxGetApp().plater()->canvas3D(); Selection& selection = canvas->get_selection(); - selection.start_dragging(); + selection.setup_cache(); selection.translate(position - m_cache.position, selection.requires_local_axes()); - selection.stop_dragging(); canvas->do_move(L("Set Position")); m_cache.position = position; @@ -844,11 +843,10 @@ void ObjectManipulation::change_rotation_value(int axis, double value) transformation_type.set_local(); } - selection.start_dragging(); + selection.setup_cache(); selection.rotate( (M_PI / 180.0) * (transformation_type.absolute() ? rotation : rotation - m_cache.rotation), transformation_type); - selection.stop_dragging(); canvas->do_rotate(L("Set Orientation")); m_cache.rotation = rotation; @@ -925,9 +923,8 @@ void ObjectManipulation::do_scale(int axis, const Vec3d &scale) const if (m_uniform_scale || selection.requires_uniform_scale()) scaling_factor = scale(axis) * Vec3d::Ones(); - selection.start_dragging(); + selection.setup_cache(); selection.scale(scaling_factor, transformation_type); - selection.stop_dragging(); wxGetApp().plater()->canvas3D()->do_scale(L("Set Scale")); } diff --git a/src/slic3r/GUI/GUI_ObjectSettings.cpp b/src/slic3r/GUI/GUI_ObjectSettings.cpp index c9a7cd3306..291013fe9d 100644 --- a/src/slic3r/GUI/GUI_ObjectSettings.cpp +++ b/src/slic3r/GUI/GUI_ObjectSettings.cpp @@ -141,6 +141,8 @@ bool ObjectSettings::update_settings_list() { Option option = optgroup->get_option(opt); option.opt.width = 12; + if (!option.opt.full_label.empty()) + option.opt.label = option.opt.full_label; if (is_extruders_cat) option.opt.max = wxGetApp().extruders_edited_cnt(); optgroup->append_single_option_line(option); diff --git a/src/slic3r/GUI/GalleryDialog.cpp b/src/slic3r/GUI/GalleryDialog.cpp index 1191e5c2e6..0bc741c962 100644 --- a/src/slic3r/GUI/GalleryDialog.cpp +++ b/src/slic3r/GUI/GalleryDialog.cpp @@ -274,9 +274,13 @@ static void generate_thumbnail_from_model(const std::string& filename) GLVolumeCollection volumes; volumes.volumes.push_back(new GLVolume()); - GLVolume* volume = volumes.volumes[0]; + GLVolume* volume = volumes.volumes.back(); +#if ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL + volume->model.init_from(model.mesh()); +#else volume->indexed_vertex_array.load_mesh(model.mesh()); volume->indexed_vertex_array.finalize_geometry(true); +#endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL volume->set_instance_transformation(model.objects[0]->instances[0]->get_transformation()); volume->set_volume_transformation(model.objects[0]->volumes[0]->get_transformation()); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp index 4c82c9d5d0..82702f212b 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp @@ -5,6 +5,8 @@ #include "slic3r/GUI/GUI_App.hpp" +#include "slic3r/GUI/GUI_ObjectManipulation.hpp" + // TODO: Display tooltips quicker on Linux namespace Slic3r { @@ -74,64 +76,19 @@ GLGizmoBase::GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, u , m_first_input_window_render(true) , m_dirty(false) { - m_base_color = DEFAULT_BASE_COLOR; - m_drag_color = DEFAULT_DRAG_COLOR; - m_highlight_color = DEFAULT_HIGHLIGHT_COLOR; } void GLGizmoBase::set_hover_id(int id) { -// !??? if (m_grabbers.empty() || id < (int)m_grabbers.size()) - { - m_hover_id = id; - on_set_hover_id(); - } -} + // do not change hover id during dragging + assert(!m_dragging); -void GLGizmoBase::enable_grabber(unsigned int id) -{ - if (id < m_grabbers.size()) - m_grabbers[id].enabled = true; - - on_enable_grabber(id); -} - -void GLGizmoBase::disable_grabber(unsigned int id) -{ - if (id < m_grabbers.size()) - m_grabbers[id].enabled = false; - - on_disable_grabber(id); -} - -void GLGizmoBase::start_dragging() -{ - m_dragging = true; - - for (int i = 0; i < (int)m_grabbers.size(); ++i) - { - m_grabbers[i].dragging = (m_hover_id == i); - } - - on_start_dragging(); -} - -void GLGizmoBase::stop_dragging() -{ - m_dragging = false; - - for (int i = 0; i < (int)m_grabbers.size(); ++i) - { - m_grabbers[i].dragging = false; - } - - on_stop_dragging(); -} - -void GLGizmoBase::update(const UpdateData& data) -{ - if (m_hover_id != -1) - on_update(data); + // allow empty grabbers when not using grabbers but use hover_id - flatten, rotate + if (!m_grabbers.empty() && id >= (int) m_grabbers.size()) + return; + + m_hover_id = id; + on_set_hover_id(); } bool GLGizmoBase::update_items_state() @@ -139,7 +96,7 @@ bool GLGizmoBase::update_items_state() bool res = m_dirty; m_dirty = false; return res; -}; +} ColorRGBA GLGizmoBase::picking_color_component(unsigned int id) const { @@ -190,6 +147,80 @@ void GLGizmoBase::render_grabbers_for_picking(const BoundingBoxf3& box) const #endif // ENABLE_GLBEGIN_GLEND_REMOVAL } +// help function to process grabbers +// call start_dragging, stop_dragging, on_dragging +bool GLGizmoBase::use_grabbers(const wxMouseEvent &mouse_event) { + bool is_dragging_finished = false; + if (mouse_event.Moving()) { + // it should not happen but for sure + assert(!m_dragging); + if (m_dragging) is_dragging_finished = true; + else return false; + } + + if (mouse_event.LeftDown()) { + Selection &selection = m_parent.get_selection(); + if (!selection.is_empty() && m_hover_id != -1 && + (m_grabbers.empty() || m_hover_id < static_cast(m_grabbers.size()))) { + selection.setup_cache(); + + m_dragging = true; + for (auto &grabber : m_grabbers) grabber.dragging = false; + if (!m_grabbers.empty() && m_hover_id < int(m_grabbers.size())) + m_grabbers[m_hover_id].dragging = true; + + // prevent change of hover_id during dragging + m_parent.set_mouse_as_dragging(); + on_start_dragging(); + + // Let the plater know that the dragging started + m_parent.post_event(SimpleEvent(EVT_GLCANVAS_MOUSE_DRAGGING_STARTED)); + m_parent.set_as_dirty(); + return true; + } + } else if (m_dragging) { + // when mouse cursor leave window than finish actual dragging operation + bool is_leaving = mouse_event.Leaving(); + if (mouse_event.Dragging()) { + m_parent.set_mouse_as_dragging(); + Point mouse_coord(mouse_event.GetX(), mouse_event.GetY()); + auto ray = m_parent.mouse_ray(mouse_coord); + UpdateData data(ray, mouse_coord); + + on_dragging(data); + + wxGetApp().obj_manipul()->set_dirty(); + m_parent.set_as_dirty(); + return true; + } else if (mouse_event.LeftUp() || is_leaving || is_dragging_finished) { + for (auto &grabber : m_grabbers) grabber.dragging = false; + m_dragging = false; + + // NOTE: This should be part of GLCanvas3D + // Reset hover_id when leave window + if (is_leaving) m_parent.mouse_up_cleanup(); + + on_stop_dragging(); + + // There is prediction that after draggign, data are changed + // Data are updated twice also by canvas3D::reload_scene. + // Should be fixed. + m_parent.get_gizmos_manager().update_data(); + + wxGetApp().obj_manipul()->set_dirty(); + + // Let the plater know that the dragging finished, so a delayed + // refresh of the scene with the background processing data should + // be performed. + m_parent.post_event(SimpleEvent(EVT_GLCANVAS_MOUSE_DRAGGING_FINISHED)); + // updates camera target constraints + m_parent.refresh_camera_scene_box(); + return true; + } + } + return false; +} + std::string GLGizmoBase::format(float value, unsigned int decimals) const { return Slic3r::string_printf("%.*f", decimals, value); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp index 99050a2525..6f62382e17 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp @@ -10,6 +10,7 @@ #include class wxWindow; +class wxMouseEvent; namespace Slic3r { @@ -29,7 +30,6 @@ class ImGuiWrapper; class GLCanvas3D; enum class CommonGizmosDataID; class CommonGizmosDataPool; -class Selection; class GLGizmoBase { @@ -85,28 +85,22 @@ public: protected: GLCanvas3D& m_parent; - - int m_group_id; + int m_group_id; // TODO: remove only for rotate EState m_state; int m_shortcut_key; std::string m_icon_filename; unsigned int m_sprite_id; int m_hover_id; bool m_dragging; - ColorRGBA m_base_color; - ColorRGBA m_drag_color; - ColorRGBA m_highlight_color; mutable std::vector m_grabbers; ImGuiWrapper* m_imgui; bool m_first_input_window_render; - mutable std::string m_tooltip; CommonGizmosDataPool* m_c; - public: GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); - virtual ~GLGizmoBase() {} + virtual ~GLGizmoBase() = default; bool init() { return on_init(); } @@ -115,9 +109,6 @@ public: std::string get_name(bool include_shortcut = true) const; - int get_group_id() const { return m_group_id; } - void set_group_id(int id) { m_group_id = id; } - EState get_state() const { return m_state; } void set_state(EState state) { m_state = state; on_set_state(); } @@ -139,27 +130,33 @@ public: int get_hover_id() const { return m_hover_id; } void set_hover_id(int id); - void set_highlight_color(const ColorRGBA& color) { m_highlight_color = color; } - - void enable_grabber(unsigned int id); - void disable_grabber(unsigned int id); - - void start_dragging(); - void stop_dragging(); - bool is_dragging() const { return m_dragging; } - void update(const UpdateData& data); - // returns True when Gizmo changed its state bool update_items_state(); - void render() { m_tooltip.clear(); on_render(); } + void render() { on_render(); } void render_for_picking() { on_render_for_picking(); } void render_input_window(float x, float y, float bottom_limit); + /// + /// Mouse tooltip text + /// + /// Text to be visible in mouse tooltip virtual std::string get_tooltip() const { return ""; } + /// + /// Is called when data (Selection) is changed + /// + virtual void data_changed(){}; + + /// + /// Implement when want to process mouse events in gizmo + /// Click, Right click, move, drag, ... + /// + /// Keep information about mouse click + /// Return True when use the information and don't want to propagate it otherwise False. + virtual bool on_mouse(const wxMouseEvent &mouse_event) { return false; } protected: virtual bool on_init() = 0; virtual void on_load(cereal::BinaryInputArchive& ar) {} @@ -172,9 +169,12 @@ protected: virtual CommonGizmosDataID on_get_requirements() const { return CommonGizmosDataID(0); } virtual void on_enable_grabber(unsigned int id) {} virtual void on_disable_grabber(unsigned int id) {} + + // called inside use_grabbers virtual void on_start_dragging() {} virtual void on_stop_dragging() {} - virtual void on_update(const UpdateData& data) {} + virtual void on_dragging(const UpdateData& data) {} + virtual void on_render() = 0; virtual void on_render_for_picking() = 0; virtual void on_render_input_window(float x, float y, float bottom_limit) {} @@ -191,6 +191,15 @@ protected: // Mark gizmo as dirty to Re-Render when idle() void set_dirty(); + + /// + /// function which + /// Set up m_dragging and call functions + /// on_start_dragging / on_dragging / on_stop_dragging + /// + /// Keep information about mouse click + /// same as on_mouse + bool use_grabbers(const wxMouseEvent &mouse_event); private: // Flag for dirty visible state of Gizmo // When True then need new rendering diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index 1d16ee17f9..08c54e2d21 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -65,6 +65,11 @@ std::string GLGizmoCut3D::get_tooltip() const return tooltip; } +bool GLGizmoCut::on_mouse(const wxMouseEvent &mouse_event) +{ + return use_grabbers(mouse_event); +} + void GLGizmoCut3D::shift_cut_z(double delta) { Vec3d new_cut_center = m_plane_center; @@ -283,6 +288,13 @@ void GLGizmoCut3D::render_cut_plane() if (shader == nullptr) return; shader->start_using(); + Vec3d diff = plane_center - m_old_center; + // Z changed when move with cut plane + // X and Y changed when move with cutted object + bool is_changed = std::abs(diff.x()) > EPSILON || + std::abs(diff.y()) > EPSILON || + std::abs(diff.z()) > EPSILON; + m_old_center = plane_center; const Vec3d& angles = m_rotation_gizmo.get_rotation(); @@ -594,7 +606,7 @@ void GLGizmoCut3D::on_render_input_window(float x, float y, float bottom_limit) revert_rotation = render_revert_button("rotation"); for (Axis axis : {X, Y, Z}) render_rotation_input(axis); - m_imgui->text(_L("°")); + m_imgui->text(_L("°")); } else { ImGui::AlignTextToFramePadding(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.hpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.hpp index 2c6eddc261..4da400305c 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.hpp @@ -10,6 +10,7 @@ namespace Slic3r { namespace GUI { +class Selection; enum class SLAGizmoEventType : unsigned char; @@ -29,7 +30,7 @@ class GLGizmoCut3D : public GLGizmoBase #if ENABLE_GLBEGIN_GLEND_REMOVAL GLModel m_plane; GLModel m_grabber_connection; - float m_old_z{ 0.0f }; + Vec3d m_old_center; #endif // ENABLE_GLBEGIN_GLEND_REMOVAL bool m_keep_upper{ true }; @@ -104,6 +105,13 @@ public: std::string get_tooltip() const override; bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); + /// + /// Drag of plane + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + void shift_cut_z(double delta); void rotate_vec3d_around_center(Vec3d& vec, const Vec3d& angles, const Vec3d& center); void update_clipper(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp b/src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp index ea15deb169..e0a583f0b3 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp @@ -21,9 +21,52 @@ static const Slic3r::ColorRGBA DEFAULT_HOVER_PLANE_COLOR = { 0.9f, 0.9f, 0.9f, 0 GLGizmoFlatten::GLGizmoFlatten(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) : GLGizmoBase(parent, icon_filename, sprite_id) - , m_normal(Vec3d::Zero()) - , m_starting_center(Vec3d::Zero()) +{} + +bool GLGizmoFlatten::on_mouse(const wxMouseEvent &mouse_event) { + if (mouse_event.Moving()) { + // only for sure + m_mouse_left_down = false; + return false; + } + if (mouse_event.LeftDown()) { + if (m_hover_id != -1) { + m_mouse_left_down = true; + Selection &selection = m_parent.get_selection(); + if (selection.is_single_full_instance()) { + // Rotate the object so the normal points downward: + selection.flattening_rotate(m_planes[m_hover_id].normal); + m_parent.do_rotate(L("Gizmo-Place on Face")); + } + return true; + } + + // fix: prevent restart gizmo when reselect object + // take responsibility for left up + if (m_parent.get_first_hover_volume_idx() >= 0) m_mouse_left_down = true; + + } else if (mouse_event.LeftUp()) { + if (m_mouse_left_down) { + // responsible for mouse left up after selecting plane + m_mouse_left_down = false; + return true; + } + } else if (mouse_event.Leaving()) { + m_mouse_left_down = false; + } + return false; +} + +void GLGizmoFlatten::data_changed() +{ + const Selection & selection = m_parent.get_selection(); + const ModelObject *model_object = nullptr; + if (selection.is_single_full_instance() || + selection.is_from_single_object() ) { + model_object = selection.get_model()->objects[selection.get_object_idx()]; + } + set_flattening_data(model_object); } bool GLGizmoFlatten::on_init() @@ -53,15 +96,6 @@ bool GLGizmoFlatten::on_is_activable() const return m_parent.get_selection().is_single_full_instance(); } -void GLGizmoFlatten::on_start_dragging() -{ - if (m_hover_id != -1) { - assert(m_planes_valid); - m_normal = m_planes[m_hover_id].normal; - m_starting_center = m_parent.get_selection().get_bounding_box().center(); - } -} - void GLGizmoFlatten::on_render() { const Selection& selection = m_parent.get_selection(); @@ -149,7 +183,6 @@ void GLGizmoFlatten::on_render_for_picking() void GLGizmoFlatten::set_flattening_data(const ModelObject* model_object) { - m_starting_center = Vec3d::Zero(); if (model_object != m_old_model_object) { m_planes.clear(); m_planes_valid = false; @@ -415,13 +448,5 @@ bool GLGizmoFlatten::is_plane_update_necessary() const return false; } -Vec3d GLGizmoFlatten::get_flattening_normal() const -{ - Vec3d out = m_normal; - m_normal = Vec3d::Zero(); - m_starting_center = Vec3d::Zero(); - return out; -} - } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmoFlatten.hpp b/src/slic3r/GUI/Gizmos/GLGizmoFlatten.hpp index 3a3a904343..f256dfe7ef 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoFlatten.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoFlatten.hpp @@ -22,7 +22,6 @@ class GLGizmoFlatten : public GLGizmoBase // This gizmo does not use grabbers. The m_hover_id relates to polygon managed by the class itself. private: - mutable Vec3d m_normal; struct PlaneData { std::vector vertices; // should be in fact local in update_planes() @@ -42,8 +41,8 @@ private: Vec3d m_first_instance_mirror; std::vector m_planes; + bool m_mouse_left_down = false; // for detection left_up of this gizmo bool m_planes_valid = false; - mutable Vec3d m_starting_center; const ModelObject* m_old_model_object = nullptr; std::vector instances_matrices; @@ -54,17 +53,23 @@ public: GLGizmoFlatten(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); void set_flattening_data(const ModelObject* model_object); - Vec3d get_flattening_normal() const; + + /// + /// Apply rotation on select plane + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + void data_changed() override; protected: - virtual bool on_init() override; - virtual std::string on_get_name() const override; - virtual bool on_is_activable() const override; - virtual void on_start_dragging() override; - virtual void on_render() override; - virtual void on_render_for_picking() override; - virtual void on_set_state() override; - virtual CommonGizmosDataID on_get_requirements() const override; + bool on_init() override; + std::string on_get_name() const override; + bool on_is_activable() const override; + void on_render() override; + void on_render_for_picking() override; + void on_set_state() override; + CommonGizmosDataID on_get_requirements() const override; }; } // namespace GUI diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index e8a6f6e2c8..4a5eb756c1 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -42,7 +42,7 @@ bool GLGizmoHollow::on_init() return true; } -void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) +void GLGizmoHollow::data_changed() { if (! m_c->selection_info()) return; @@ -417,20 +417,70 @@ void GLGizmoHollow::delete_selected_points() select_point(NoPoints); } -void GLGizmoHollow::on_update(const UpdateData& data) +bool GLGizmoHollow::on_mouse(const wxMouseEvent &mouse_event) { - sla::DrainHoles& drain_holes = m_c->selection_info()->model_object()->sla_drain_holes; + if (mouse_event.Moving()) return false; + if (use_grabbers(mouse_event)) return true; - if (m_hover_id != -1) { - std::pair pos_and_normal; - if (! unproject_on_mesh(data.mouse_pos.cast(), pos_and_normal)) - return; - drain_holes[m_hover_id].pos = pos_and_normal.first; - drain_holes[m_hover_id].normal = -pos_and_normal.second; + // wxCoord == int --> wx/types.h + Vec2i mouse_coord(mouse_event.GetX(), mouse_event.GetY()); + Vec2d mouse_pos = mouse_coord.cast(); + + static bool pending_right_up = false; + if (mouse_event.LeftDown()) { + bool control_down = mouse_event.CmdDown(); + bool grabber_contains_mouse = (get_hover_id() != -1); + if ((!control_down || grabber_contains_mouse) && + gizmo_event(SLAGizmoEventType::LeftDown, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false)) + // the gizmo got the event and took some action, there is no need + // to do anything more + return true; + } else if (mouse_event.Dragging()) { + if (m_parent.get_move_volume_id() != -1) + // don't allow dragging objects with the Sla gizmo on + return true; + + bool control_down = mouse_event.CmdDown(); + if (control_down) { + // CTRL has been pressed while already dragging -> stop current action + if (mouse_event.LeftIsDown()) + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), true); + else if (mouse_event.RightIsDown()) { + pending_right_up = false; + } + } else if(gizmo_event(SLAGizmoEventType::Dragging, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false)) { + // the gizmo got the event and took some action, no need to do + // anything more here + m_parent.set_as_dirty(); + return true; + } + } else if (mouse_event.LeftUp()) { + if (!m_parent.is_mouse_dragging()) { + bool control_down = mouse_event.CmdDown(); + // in case gizmo is selected, we just pass the LeftUp event + // and stop processing - neither object moving or selecting is + // suppressed in that case + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), control_down); + return true; + } + } else if (mouse_event.RightDown()) { + if (m_parent.get_selection().get_object_idx() != -1 && + gizmo_event(SLAGizmoEventType::RightDown, mouse_pos, false, false, false)) { + // we need to set the following right up as processed to avoid showing + // the context menu if the user release the mouse over the object + pending_right_up = true; + // event was taken care of by the SlaSupports gizmo + return true; + } + } else if (mouse_event.RightUp()) { + if (pending_right_up) { + pending_right_up = false; + return true; + } } + return false; } - void GLGizmoHollow::hollow_mesh(bool postpone_error_messages) { wxGetApp().CallAfter([this, postpone_error_messages]() { @@ -820,6 +870,17 @@ void GLGizmoHollow::on_stop_dragging() } +void GLGizmoHollow::on_dragging(const UpdateData &data) +{ + assert(m_hover_id != -1); + std::pair pos_and_normal; + if (!unproject_on_mesh(data.mouse_pos.cast(), pos_and_normal)) + return; + sla::DrainHoles &drain_holes = m_c->selection_info()->model_object()->sla_drain_holes; + drain_holes[m_hover_id].pos = pos_and_normal.first; + drain_holes[m_hover_id].normal = -pos_and_normal.second; +} + void GLGizmoHollow::on_load(cereal::BinaryInputArchive& ar) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp index fa89e0febc..feab896cc5 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp @@ -19,7 +19,7 @@ class ConfigOptionDef; namespace GUI { enum class SLAGizmoEventType : unsigned char; - +class Selection; class GLGizmoHollow : public GLGizmoBase { private: @@ -29,16 +29,22 @@ private: public: GLGizmoHollow(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); virtual ~GLGizmoHollow() = default; - void set_sla_support_data(ModelObject* model_object, const Selection& selection); + void data_changed() override; bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); void delete_selected_points(); bool is_selection_rectangle_dragging() const { return m_selection_rectangle.is_dragging(); } - + + /// + /// Postpone to Grabber for move + /// Detect move of object by dragging + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; private: bool on_init() override; - void on_update(const UpdateData& data) override; void on_render() override; void on_render_for_picking() override; @@ -94,6 +100,7 @@ protected: void on_set_hover_id() override; void on_start_dragging() override; void on_stop_dragging() override; + void on_dragging(const UpdateData &data) override; void on_render_input_window(float x, float y, float bottom_limit) override; virtual CommonGizmosDataID on_get_requirements() const override; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp index 77dc3a9663..02161f90dc 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp @@ -146,10 +146,9 @@ void GLGizmoMmuSegmentation::render_painter_gizmo() glsafe(::glDisable(GL_BLEND)); } -void GLGizmoMmuSegmentation::set_painter_gizmo_data(const Selection &selection) +void GLGizmoMmuSegmentation::data_changed() { - GLGizmoPainterBase::set_painter_gizmo_data(selection); - + GLGizmoPainterBase::data_changed(); if (m_state != On || wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() != ptFFF || wxGetApp().extruders_edited_cnt() <= 1) return; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp index c294fafcf2..6f357bb6f1 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp @@ -87,7 +87,7 @@ public: void render_painter_gizmo() override; - void set_painter_gizmo_data(const Selection& selection) override; + void data_changed() override; void render_triangles(const Selection& selection) const override; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMove.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMove.cpp index 095234e02d..607d07fe20 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMove.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMove.cpp @@ -32,6 +32,16 @@ std::string GLGizmoMove3D::get_tooltip() const return ""; } +bool GLGizmoMove3D::on_mouse(const wxMouseEvent &mouse_event) { + return use_grabbers(mouse_event); +} + +void GLGizmoMove3D::data_changed() { + const Selection &selection = m_parent.get_selection(); + bool is_wipe_tower = selection.is_wipe_tower(); + m_grabbers[2].enabled = !is_wipe_tower; +} + bool GLGizmoMove3D::on_init() { for (int i = 0; i < 3; ++i) { @@ -55,22 +65,23 @@ bool GLGizmoMove3D::on_is_activable() const void GLGizmoMove3D::on_start_dragging() { - if (m_hover_id != -1) { - m_displacement = Vec3d::Zero(); - const BoundingBoxf3& box = m_parent.get_selection().get_bounding_box(); - m_starting_drag_position = m_grabbers[m_hover_id].center; - m_starting_box_center = box.center(); - m_starting_box_bottom_center = box.center(); - m_starting_box_bottom_center(2) = box.min(2); - } + assert(m_hover_id != -1); + + m_displacement = Vec3d::Zero(); + const BoundingBoxf3& box = m_parent.get_selection().get_bounding_box(); + m_starting_drag_position = m_grabbers[m_hover_id].center; + m_starting_box_center = box.center(); + m_starting_box_bottom_center = box.center(); + m_starting_box_bottom_center(2) = box.min(2); } void GLGizmoMove3D::on_stop_dragging() { + m_parent.do_move(L("Gizmo-Move")); m_displacement = Vec3d::Zero(); } -void GLGizmoMove3D::on_update(const UpdateData& data) +void GLGizmoMove3D::on_dragging(const UpdateData& data) { if (m_hover_id == 0) m_displacement.x() = calc_projection(data); @@ -78,6 +89,9 @@ void GLGizmoMove3D::on_update(const UpdateData& data) m_displacement.y() = calc_projection(data); else if (m_hover_id == 2) m_displacement.z() = calc_projection(data); + + Selection &selection = m_parent.get_selection(); + selection.translate(m_displacement); } void GLGizmoMove3D::on_render() diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMove.hpp b/src/slic3r/GUI/Gizmos/GLGizmoMove.hpp index 2a75df8669..7c7ee0486f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMove.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMove.hpp @@ -34,19 +34,28 @@ public: double get_snap_step(double step) const { return m_snap_step; } void set_snap_step(double step) { m_snap_step = step; } - const Vec3d& get_displacement() const { return m_displacement; } - std::string get_tooltip() const override; + /// + /// Postpone to Grabber for move + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + + /// + /// Detect reduction of move for wipetover on selection change + /// + void data_changed() override; protected: - virtual bool on_init() override; - virtual std::string on_get_name() const override; - virtual bool on_is_activable() const override; - virtual void on_start_dragging() override; - virtual void on_stop_dragging() override; - virtual void on_update(const UpdateData& data) override; - virtual void on_render() override; - virtual void on_render_for_picking() override; + bool on_init() override; + std::string on_get_name() const override; + bool on_is_activable() const override; + void on_start_dragging() override; + void on_stop_dragging() override; + void on_dragging(const UpdateData& data) override; + void on_render() override; + void on_render_for_picking() override; private: double calc_projection(const UpdateData& data) const; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.cpp index 30cf2b31c5..df075d3ead 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.cpp @@ -40,13 +40,13 @@ GLGizmoPainterBase::~GLGizmoPainterBase() #endif // ENABLE_GLINDEXEDVERTEXARRAY_REMOVAL } -void GLGizmoPainterBase::set_painter_gizmo_data(const Selection& selection) +void GLGizmoPainterBase::data_changed() { if (m_state != On) return; const ModelObject* mo = m_c->selection_info() ? m_c->selection_info()->model_object() : nullptr; - + const Selection & selection = m_parent.get_selection(); if (mo && selection.is_from_single_instance() && (m_schedule_update || mo->id() != m_old_mo_id || mo->volumes.size() != m_old_volumes_size)) { @@ -641,7 +641,72 @@ bool GLGizmoPainterBase::gizmo_event(SLAGizmoEventType action, const Vec2d& mous return false; } +bool GLGizmoPainterBase::on_mouse(const wxMouseEvent &mouse_event) +{ + // wxCoord == int --> wx/types.h + Vec2i mouse_coord(mouse_event.GetX(), mouse_event.GetY()); + Vec2d mouse_pos = mouse_coord.cast(); + if (mouse_event.Moving()) { + gizmo_event(SLAGizmoEventType::Moving, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false); + return false; + } + + // when control is down we allow scene pan and rotation even when clicking + // over some object + bool control_down = mouse_event.CmdDown(); + bool grabber_contains_mouse = (get_hover_id() != -1); + + const Selection &selection = m_parent.get_selection(); + int selected_object_idx = selection.get_object_idx(); + if (mouse_event.LeftDown()) { + if ((!control_down || grabber_contains_mouse) && + gizmo_event(SLAGizmoEventType::LeftDown, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false)) + // the gizmo got the event and took some action, there is no need + // to do anything more + return true; + } else if (mouse_event.RightDown()){ + if (!control_down && selected_object_idx != -1 && + gizmo_event(SLAGizmoEventType::RightDown, mouse_pos, false, false, false)) + // event was taken care of + return true; + } else if (mouse_event.Dragging()) { + if (m_parent.get_move_volume_id() != -1) + // don't allow dragging objects with the Sla gizmo on + return true; + if (!control_down && gizmo_event(SLAGizmoEventType::Dragging, + mouse_pos, mouse_event.ShiftDown(), + mouse_event.AltDown(), false)) { + // the gizmo got the event and took some action, no need to do + // anything more here + m_parent.set_as_dirty(); + return true; + } + if(control_down && (mouse_event.LeftIsDown() || mouse_event.RightIsDown())) + { + // CTRL has been pressed while already dragging -> stop current action + if (mouse_event.LeftIsDown()) + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), true); + else if (mouse_event.RightIsDown()) + gizmo_event(SLAGizmoEventType::RightUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), true); + return false; + } + } else if (mouse_event.LeftUp()) { + if (!m_parent.is_mouse_dragging()) { + // in case SLA/FDM gizmo is selected, we just pass the LeftUp + // event and stop processing - neither object moving or selecting + // is suppressed in that case + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), control_down); + return true; + } + } else if (mouse_event.RightUp()) { + if (!m_parent.is_mouse_dragging()) { + gizmo_event(SLAGizmoEventType::RightUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), control_down); + return true; + } + } + return false; +} void GLGizmoPainterBase::update_raycast_cache(const Vec2d& mouse_position, const Camera& camera, diff --git a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp index 37c7163e2f..7949e26572 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp @@ -25,6 +25,7 @@ enum class SLAGizmoEventType : unsigned char; class ClippingPlane; struct Camera; class GLGizmoMmuSegmentation; +class Selection; enum class PainterGizmoType { FDM_SUPPORTS, @@ -135,8 +136,8 @@ private: void on_render_for_picking() override {} public: GLGizmoPainterBase(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); - virtual ~GLGizmoPainterBase() override; - virtual void set_painter_gizmo_data(const Selection& selection); + ~GLGizmoPainterBase() override; + void data_changed() override; virtual bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); // Following function renders the triangles and cursor. Having this separated @@ -149,6 +150,15 @@ public: virtual const float get_cursor_radius_max() const { return CursorRadiusMax; } virtual const float get_cursor_radius_step() const { return CursorRadiusStep; } + /// + /// Implement when want to process mouse events in gizmo + /// Click, Right click, move, drag, ... + /// + /// Keep information about mouse click + /// Return True when use the information and don't want to + /// propagate it otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + protected: virtual void render_triangles(const Selection& selection) const; void render_cursor(); @@ -257,9 +267,6 @@ private: protected: void on_set_state() override; - void on_start_dragging() override {} - void on_stop_dragging() override {} - virtual void on_opening() = 0; virtual void on_shutdown() = 0; virtual PainterGizmoType get_painter_type() const = 0; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp b/src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp index b61310d6cb..31f1a24c0d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp @@ -28,7 +28,23 @@ const float GLGizmoRotate::GrabberOffset = 0.15f; // in percent of radius GLGizmoRotate::GLGizmoRotate(GLCanvas3D& parent, GLGizmoRotate::Axis axis) : GLGizmoBase(parent, "", -1) , m_axis(axis) -{} + , m_angle(0.0) + , m_center(0.0, 0.0, 0.0) + , m_radius(0.0f) + , m_snap_coarse_in_radius(0.0f) + , m_snap_coarse_out_radius(0.0f) + , m_snap_fine_in_radius(0.0f) + , m_snap_fine_out_radius(0.0f) + , m_drag_color(DEFAULT_DRAG_COLOR) + , m_highlight_color(DEFAULT_HIGHLIGHT_COLOR) +{ + m_group_id = static_cast(axis); +} + +void GLGizmoRotate::set_highlight_color(const ColorRGBA &color) +{ + m_highlight_color = color; +} void GLGizmoRotate::set_angle(double angle) { @@ -56,6 +72,28 @@ std::string GLGizmoRotate::get_tooltip() const return (m_hover_id == 0 || m_grabbers.front().dragging) ? axis + ": " + format(float(Geometry::rad2deg(m_angle)), 4) : ""; } +bool GLGizmoRotate::on_mouse(const wxMouseEvent &mouse_event) +{ + return use_grabbers(mouse_event); +} + +void GLGizmoRotate::dragging(const UpdateData &data) { on_dragging(data); } + +void GLGizmoRotate::start_dragging() +{ + m_grabbers[0].dragging = true; + on_start_dragging(); +} + +void GLGizmoRotate::stop_dragging() +{ + m_grabbers[0].dragging = false; + on_stop_dragging(); +} + +void GLGizmoRotate::enable_grabber() { m_grabbers[0].enabled = true; } +void GLGizmoRotate::disable_grabber() { m_grabbers[0].enabled = false; } + bool GLGizmoRotate::on_init() { m_grabbers.push_back(Grabber()); @@ -73,7 +111,7 @@ void GLGizmoRotate::on_start_dragging() m_snap_fine_out_radius = m_snap_fine_in_radius + m_radius * ScaleLongTooth; } -void GLGizmoRotate::on_update(const UpdateData& data) +void GLGizmoRotate::on_dragging(const UpdateData &data) { const Vec2d mouse_pos = to_2d(mouse_position_in_local_plane(data.mouse_ray, m_parent.get_selection())); @@ -429,22 +467,26 @@ void GLGizmoRotate::render_angle() const const float ex_radius = m_radius * (1.0f + GrabberOffset); #if ENABLE_GLBEGIN_GLEND_REMOVAL - if (!m_angle_arc.is_initialized() || radius_changed) { + const bool angle_changed = std::abs(m_old_angle - m_angle) > EPSILON; + m_old_angle = m_angle; + + if (!m_angle_arc.is_initialized() || radius_changed || angle_changed) { m_angle_arc.reset(); + if (m_angle > 0.0f) { + GLModel::Geometry init_data; + init_data.format = { GLModel::Geometry::EPrimitiveType::LineStrip, GLModel::Geometry::EVertexLayout::P3, GLModel::Geometry::EIndexType::USHORT }; + init_data.reserve_vertices(1 + AngleResolution); + init_data.reserve_indices(1 + AngleResolution); - GLModel::Geometry init_data; - init_data.format = { GLModel::Geometry::EPrimitiveType::LineStrip, GLModel::Geometry::EVertexLayout::P3, GLModel::Geometry::EIndexType::USHORT }; - init_data.reserve_vertices(1 + AngleResolution); - init_data.reserve_indices(1 + AngleResolution); + // vertices + indices + for (unsigned short i = 0; i <= AngleResolution; ++i) { + const float angle = float(i) * step_angle; + init_data.add_vertex(Vec3f(::cos(angle) * ex_radius, ::sin(angle) * ex_radius, 0.0f)); + init_data.add_ushort_index(i); + } - // vertices + indices - for (unsigned short i = 0; i <= AngleResolution; ++i) { - const float angle = float(i) * step_angle; - init_data.add_vertex(Vec3f(::cos(angle) * ex_radius, ::sin(angle) * ex_radius, 0.0f)); - init_data.add_ushort_index(i); + m_angle_arc.init_from(std::move(init_data)); } - - m_angle_arc.init_from(std::move(init_data)); } m_angle_arc.set_color(color); @@ -629,25 +671,50 @@ Vec3d GLGizmoRotate::mouse_position_in_local_plane(const Linef3& mouse_ray, cons GLGizmoRotate3D::GLGizmoRotate3D(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) : GLGizmoBase(parent, icon_filename, sprite_id) - , m_gizmos({ GLGizmoRotate(parent, GLGizmoRotate::X), GLGizmoRotate(parent, GLGizmoRotate::Y), GLGizmoRotate(parent, GLGizmoRotate::Z) }) -{ - for (unsigned int i = 0; i < 3; ++i) { - m_gizmos[i].set_group_id(i); - } + , m_gizmos({ + GLGizmoRotate(parent, GLGizmoRotate::X), + GLGizmoRotate(parent, GLGizmoRotate::Y), + GLGizmoRotate(parent, GLGizmoRotate::Z) }) +{} - load_rotoptimize_state(); +bool GLGizmoRotate3D::on_mouse(const wxMouseEvent &mouse_event) +{ + if (mouse_event.Dragging() && m_dragging) { + // Apply new temporary rotations + TransformationType transformation_type( + TransformationType::World_Relative_Joint); + if (mouse_event.AltDown()) transformation_type.set_independent(); + m_parent.get_selection().rotate(get_rotation(), transformation_type); + } + return use_grabbers(mouse_event); +} + +void GLGizmoRotate3D::data_changed() { + const Selection &selection = m_parent.get_selection(); + bool is_wipe_tower = selection.is_wipe_tower(); + if (is_wipe_tower) { + DynamicPrintConfig& config = wxGetApp().preset_bundle->prints.get_edited_preset().config; + float wipe_tower_rotation_angle = + dynamic_cast( + config.option("wipe_tower_rotation_angle")) + ->value; + set_rotation(Vec3d(0., 0., (M_PI / 180.) * wipe_tower_rotation_angle)); + m_gizmos[0].disable_grabber(); + m_gizmos[1].disable_grabber(); + } else { + set_rotation(Vec3d::Zero()); + m_gizmos[0].enable_grabber(); + m_gizmos[1].enable_grabber(); + } } bool GLGizmoRotate3D::on_init() { - for (GLGizmoRotate& g : m_gizmos) { - if (!g.init()) - return false; - } + for (GLGizmoRotate& g : m_gizmos) + if (!g.init()) return false; - for (unsigned int i = 0; i < 3; ++i) { + for (unsigned int i = 0; i < 3; ++i) m_gizmos[i].set_highlight_color(AXES_COLOR[i]); - } m_shortcut_key = WXK_CONTROL_R; @@ -666,14 +733,21 @@ bool GLGizmoRotate3D::on_is_activable() const void GLGizmoRotate3D::on_start_dragging() { - if (0 <= m_hover_id && m_hover_id < 3) - m_gizmos[m_hover_id].start_dragging(); + assert(0 <= m_hover_id && m_hover_id < 3); + m_gizmos[m_hover_id].start_dragging(); } void GLGizmoRotate3D::on_stop_dragging() { - if (0 <= m_hover_id && m_hover_id < 3) - m_gizmos[m_hover_id].stop_dragging(); + assert(0 <= m_hover_id && m_hover_id < 3); + m_parent.do_rotate(L("Gizmo-Rotate")); + m_gizmos[m_hover_id].stop_dragging(); +} + +void GLGizmoRotate3D::on_dragging(const UpdateData &data) +{ + assert(0 <= m_hover_id && m_hover_id < 3); + m_gizmos[m_hover_id].dragging(data); } void GLGizmoRotate3D::on_render() diff --git a/src/slic3r/GUI/Gizmos/GLGizmoRotate.hpp b/src/slic3r/GUI/Gizmos/GLGizmoRotate.hpp index 7eee2069c1..171f61ab28 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoRotate.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoRotate.hpp @@ -5,7 +5,7 @@ namespace Slic3r { namespace GUI { - +class Selection; class GLGizmoRotate : public GLGizmoBase { static const float Offset; @@ -20,9 +20,9 @@ class GLGizmoRotate : public GLGizmoBase public: enum Axis : unsigned char { - X, - Y, - Z + X=0, + Y=1, + Z=2 }; private: @@ -52,8 +52,11 @@ private: GrabberConnection m_grabber_connection; float m_old_radius{ 0.0f }; float m_old_hover_radius{ 0.0f }; + float m_old_angle{ 0.0f }; #endif // ENABLE_GLBEGIN_GLEND_REMOVAL + ColorRGBA m_drag_color; + ColorRGBA m_highlight_color; public: GLGizmoRotate(GLCanvas3D& parent, Axis axis); virtual ~GLGizmoRotate() = default; @@ -65,11 +68,27 @@ public: std::string get_tooltip() const override; + void start_dragging(); + void stop_dragging(); + + void enable_grabber(); + void disable_grabber(); + + void set_highlight_color(const ColorRGBA &color); + + /// + /// Postpone to Grabber for move + /// Detect move of object by dragging + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + void dragging(const UpdateData &data); protected: bool on_init() override; std::string on_get_name() const override { return ""; } void on_start_dragging() override; - void on_update(const UpdateData& data) override; + void on_dragging(const UpdateData &data) override; void on_render() override; void on_render_for_picking() override; @@ -116,6 +135,14 @@ public: return tooltip; } + /// + /// Postpone to Rotation + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + + void data_changed() override; protected: bool on_init() override; std::string on_get_name() const override; @@ -129,20 +156,17 @@ protected: } void on_enable_grabber(unsigned int id) override { if (id < 3) - m_gizmos[id].enable_grabber(0); + m_gizmos[id].enable_grabber(); } void on_disable_grabber(unsigned int id) override { if (id < 3) - m_gizmos[id].disable_grabber(0); + m_gizmos[id].disable_grabber(); } bool on_is_activable() const override; void on_start_dragging() override; void on_stop_dragging() override; - void on_update(const UpdateData& data) override { - for (GLGizmoRotate& g : m_gizmos) { - g.update(data); - } - } + void on_dragging(const UpdateData &data) override; + void on_render() override; void on_render_for_picking() override { for (GLGizmoRotate& g : m_gizmos) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp b/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp index ce7d4705b3..f7565a483d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp @@ -14,7 +14,13 @@ namespace GUI { const float GLGizmoScale3D::Offset = 5.0f; GLGizmoScale3D::GLGizmoScale3D(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) -: GLGizmoBase(parent, icon_filename, sprite_id) + : GLGizmoBase(parent, icon_filename, sprite_id) + , m_scale(Vec3d::Ones()) + , m_offset(Vec3d::Zero()) + , m_snap_step(0.05) + , m_base_color(DEFAULT_BASE_COLOR) + , m_drag_color(DEFAULT_DRAG_COLOR) + , m_highlight_color(DEFAULT_HIGHLIGHT_COLOR) { #if ENABLE_GLBEGIN_GLEND_REMOVAL m_grabber_connections[0].grabber_indices = { 0, 1 }; @@ -58,6 +64,46 @@ std::string GLGizmoScale3D::get_tooltip() const return ""; } +bool GLGizmoScale3D::on_mouse(const wxMouseEvent &mouse_event) +{ + if (mouse_event.Dragging()) { + if (m_dragging) { + // Apply new temporary scale factors + TransformationType transformation_type(TransformationType::Local_Absolute_Joint); + if (mouse_event.AltDown()) transformation_type.set_independent(); + + Selection &selection = m_parent.get_selection(); + selection.scale(get_scale(), transformation_type); + if (mouse_event.CmdDown()) selection.translate(m_offset, true); + } + } + return use_grabbers(mouse_event); +} + +void GLGizmoScale3D::data_changed() +{ + const Selection &selection = m_parent.get_selection(); + bool enable_scale_xyz = selection.is_single_full_instance() || + selection.is_single_volume() || + selection.is_single_modifier(); + for (unsigned int i = 0; i < 6; ++i) + m_grabbers[i].enabled = enable_scale_xyz; + + if (enable_scale_xyz) { + // all volumes in the selection belongs to the same instance, any of + // them contains the needed data, so we take the first + const GLVolume *volume = selection.get_volume(*selection.get_volume_idxs().begin()); + if (selection.is_single_full_instance()) { + set_scale(volume->get_instance_scaling_factor()); + } else if (selection.is_single_volume() || + selection.is_single_modifier()) { + set_scale(volume->get_volume_scaling_factor()); + } + } else { + set_scale(Vec3d::Ones()); + } +} + bool GLGizmoScale3D::on_init() { for (int i = 0; i < 10; ++i) { @@ -92,22 +138,25 @@ bool GLGizmoScale3D::on_is_activable() const void GLGizmoScale3D::on_start_dragging() { - if (m_hover_id != -1) { - m_starting.drag_position = m_grabbers[m_hover_id].center; - m_starting.ctrl_down = wxGetKeyState(WXK_CONTROL); - m_starting.box = (m_starting.ctrl_down && (m_hover_id < 6)) ? m_box : m_parent.get_selection().get_bounding_box(); + assert(m_hover_id != -1); + m_starting.drag_position = m_grabbers[m_hover_id].center; + m_starting.ctrl_down = wxGetKeyState(WXK_CONTROL); + m_starting.box = (m_starting.ctrl_down && (m_hover_id < 6)) ? m_box : m_parent.get_selection().get_bounding_box(); - const Vec3d& center = m_starting.box.center(); - m_starting.pivots[0] = m_transform * Vec3d(m_starting.box.max.x(), center.y(), center.z()); - m_starting.pivots[1] = m_transform * Vec3d(m_starting.box.min.x(), center.y(), center.z()); - m_starting.pivots[2] = m_transform * Vec3d(center.x(), m_starting.box.max.y(), center.z()); - m_starting.pivots[3] = m_transform * Vec3d(center.x(), m_starting.box.min.y(), center.z()); - m_starting.pivots[4] = m_transform * Vec3d(center.x(), center.y(), m_starting.box.max.z()); - m_starting.pivots[5] = m_transform * Vec3d(center.x(), center.y(), m_starting.box.min.z()); - } + const Vec3d& center = m_starting.box.center(); + m_starting.pivots[0] = m_transform * Vec3d(m_starting.box.max.x(), center.y(), center.z()); + m_starting.pivots[1] = m_transform * Vec3d(m_starting.box.min.x(), center.y(), center.z()); + m_starting.pivots[2] = m_transform * Vec3d(center.x(), m_starting.box.max.y(), center.z()); + m_starting.pivots[3] = m_transform * Vec3d(center.x(), m_starting.box.min.y(), center.z()); + m_starting.pivots[4] = m_transform * Vec3d(center.x(), center.y(), m_starting.box.max.z()); + m_starting.pivots[5] = m_transform * Vec3d(center.x(), center.y(), m_starting.box.min.z()); } -void GLGizmoScale3D::on_update(const UpdateData& data) +void GLGizmoScale3D::on_stop_dragging() { + m_parent.do_scale(L("Gizmo-Scale")); +} + +void GLGizmoScale3D::on_dragging(const UpdateData& data) { if (m_hover_id == 0 || m_hover_id == 1) do_scale_along_axis(X, data); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoScale.hpp b/src/slic3r/GUI/Gizmos/GLGizmoScale.hpp index 79388abba8..e0a49cdbf2 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoScale.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoScale.hpp @@ -44,6 +44,9 @@ class GLGizmoScale3D : public GLGizmoBase std::array m_grabber_connections; #endif // ENABLE_GLBEGIN_GLEND_REMOVAL + ColorRGBA m_base_color; + ColorRGBA m_drag_color; + ColorRGBA m_highlight_color; public: GLGizmoScale3D(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); @@ -53,16 +56,23 @@ public: const Vec3d& get_scale() const { return m_scale; } void set_scale(const Vec3d& scale) { m_starting.scale = scale; m_scale = scale; } - const Vec3d& get_offset() const { return m_offset; } - std::string get_tooltip() const override; + /// + /// Postpone to Grabber for scale + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; + + void data_changed() override; protected: virtual bool on_init() override; virtual std::string on_get_name() const override; virtual bool on_is_activable() const override; virtual void on_start_dragging() override; - virtual void on_update(const UpdateData& data) override; + virtual void on_stop_dragging() override; + virtual void on_dragging(const UpdateData& data) override; virtual void on_render() override; virtual void on_render_for_picking() override; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index e1bc32bbe3..4d4372bfad 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -28,9 +28,7 @@ namespace GUI { GLGizmoSlaSupports::GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) : GLGizmoBase(parent, icon_filename, sprite_id) -{ -} - +{} bool GLGizmoSlaSupports::on_init() { @@ -48,11 +46,15 @@ bool GLGizmoSlaSupports::on_init() m_desc["manual_editing"] = _L("Manual editing"); m_desc["clipping_of_view"] = _L("Clipping of view")+ ": "; m_desc["reset_direction"] = _L("Reset direction"); + + m_cone.init_from(its_make_cone(1., 1., 2 * PI / 24)); + m_cylinder.init_from(its_make_cylinder(1., 1., 2 * PI / 24.)); + m_sphere.init_from(its_make_sphere(1., (2 * M_PI) / 24.)); return true; } -void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const Selection& selection) +void GLGizmoSlaSupports::data_changed() { if (! m_c->selection_info()) return; @@ -553,22 +555,6 @@ void GLGizmoSlaSupports::delete_selected_points(bool force) select_point(NoPoints); } -void GLGizmoSlaSupports::on_update(const UpdateData& data) -{ - if (! m_editing_mode) - return; - else { - if (m_hover_id != -1 && (! m_editing_cache[m_hover_id].support_point.is_new_island || !m_lock_unique_islands)) { - std::pair pos_and_normal; - if (! unproject_on_mesh(data.mouse_pos.cast(), pos_and_normal)) - return; - m_editing_cache[m_hover_id].support_point.pos = pos_and_normal.first; - m_editing_cache[m_hover_id].support_point.is_new_island = false; - m_editing_cache[m_hover_id].normal = pos_and_normal.second; - } - } -} - std::vector GLGizmoSlaSupports::get_config_options(const std::vector& keys) const { std::vector out; @@ -985,7 +971,21 @@ void GLGizmoSlaSupports::on_stop_dragging() m_point_before_drag = CacheEntry(); } +void GLGizmoSlaSupports::on_dragging(const UpdateData &data) +{ + assert(m_hover_id != -1); + if (!m_editing_mode) return; + if (m_editing_cache[m_hover_id].support_point.is_new_island && m_lock_unique_islands) + return; + + std::pair pos_and_normal; + if (!unproject_on_mesh(data.mouse_pos.cast(), pos_and_normal)) + return; + m_editing_cache[m_hover_id].support_point.pos = pos_and_normal.first; + m_editing_cache[m_hover_id].support_point.is_new_island = false; + m_editing_cache[m_hover_id].normal = pos_and_normal.second; +} void GLGizmoSlaSupports::on_load(cereal::BinaryInputArchive& ar) { @@ -1122,6 +1122,61 @@ void GLGizmoSlaSupports::reslice_SLA_supports(bool postpone_error_messages) cons }); } +bool GLGizmoSlaSupports::on_mouse(const wxMouseEvent &mouse_event){ + if (mouse_event.Moving()) return false; + if (use_grabbers(mouse_event)) return true; + + // wxCoord == int --> wx/types.h + Vec2i mouse_coord(mouse_event.GetX(), mouse_event.GetY()); + Vec2d mouse_pos = mouse_coord.cast(); + + static bool pending_right_up = false; + if (mouse_event.LeftDown()) { + bool grabber_contains_mouse = (get_hover_id() != -1); + bool control_down = mouse_event.CmdDown(); + if ((!control_down || grabber_contains_mouse) && + gizmo_event(SLAGizmoEventType::LeftDown, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false)) + return true; + } else if (mouse_event.Dragging()) { + bool control_down = mouse_event.CmdDown(); + if (m_parent.get_move_volume_id() != -1) { + // don't allow dragging objects with the Sla gizmo on + return true; + } else if (!control_down && + gizmo_event(SLAGizmoEventType::Dragging, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), false)) { + // the gizmo got the event and took some action, no need to do + // anything more here + m_parent.set_as_dirty(); + return true; + } else if (control_down && (mouse_event.LeftIsDown() || mouse_event.RightIsDown())){ + // CTRL has been pressed while already dragging -> stop current action + if (mouse_event.LeftIsDown()) + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), true); + else if (mouse_event.RightIsDown()) + pending_right_up = false; + } + } else if (mouse_event.LeftUp() && !m_parent.is_mouse_dragging()) { + // in case SLA/FDM gizmo is selected, we just pass the LeftUp event + // and stop processing - neither object moving or selecting is + // suppressed in that case + gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, mouse_event.ShiftDown(), mouse_event.AltDown(), mouse_event.CmdDown()); + return true; + }else if (mouse_event.RightDown()){ + if (m_parent.get_selection().get_object_idx() != -1 && + gizmo_event(SLAGizmoEventType::RightDown, mouse_pos, false, false, false)) { + // we need to set the following right up as processed to avoid showing + // the context menu if the user release the mouse over the object + pending_right_up = true; + // event was taken care of by the SlaSupports gizmo + return true; + } + } else if (pending_right_up && mouse_event.RightUp()) { + pending_right_up = false; + return true; + } + return false; +} + void GLGizmoSlaSupports::get_data_from_backend() { if (! has_backend_supports()) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp index 49df659f48..5eb29823ee 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp @@ -16,7 +16,7 @@ namespace Slic3r { class ConfigOption; namespace GUI { - +class Selection; enum class SLAGizmoEventType : unsigned char; class GLGizmoSlaSupports : public GLGizmoBase @@ -57,7 +57,7 @@ private: public: GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); virtual ~GLGizmoSlaSupports() = default; - void set_sla_support_data(ModelObject* model_object, const Selection& selection); + void data_changed() override; bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); void delete_selected_points(bool force = false); //ClippingPlane get_sla_clipping_plane() const; @@ -70,10 +70,15 @@ public: bool wants_enter_leave_snapshots() const override { return true; } std::string get_gizmo_entering_text() const override { return _u8L("Entering SLA support points"); } std::string get_gizmo_leaving_text() const override { return _u8L("Leaving SLA support points"); } - + + /// + /// Process mouse event + /// + /// Keep information about mouse click + /// Return True when use the information otherwise False. + bool on_mouse(const wxMouseEvent &mouse_event) override; private: bool on_init() override; - void on_update(const UpdateData& data) override; void on_render() override; void on_render_for_picking() override; @@ -107,7 +112,6 @@ private: std::vector get_config_options(const std::vector& keys) const; bool is_mesh_point_clipped(const Vec3d& point) const; - bool is_point_in_hole(const Vec3f& pt) const; //void find_intersecting_facets(const igl::AABB* aabb, const Vec3f& normal, double offset, std::vector& out) const; // Methods that do the model_object and editing cache synchronization, @@ -130,13 +134,13 @@ private: protected: void on_set_state() override; void on_set_hover_id() override - { if (! m_editing_mode || (int)m_editing_cache.size() <= m_hover_id) m_hover_id = -1; } void on_start_dragging() override; void on_stop_dragging() override; + void on_dragging(const UpdateData &data) override; void on_render_input_window(float x, float y, float bottom_limit) override; std::string on_get_name() const override; diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index c87a2ba45e..bbe2ad5982 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -38,6 +38,7 @@ GLGizmosManager::GLGizmosManager(GLCanvas3D& parent) , m_enabled(false) , m_icons_texture_dirty(true) , m_current(Undefined) + , m_hover(Undefined) , m_tooltip("") , m_serializing(false) { @@ -46,33 +47,34 @@ GLGizmosManager::GLGizmosManager(GLCanvas3D& parent) std::vector GLGizmosManager::get_selectable_idxs() const { std::vector out; + out.reserve(m_gizmos.size()); for (size_t i=0; iis_selectable()) out.push_back(i); return out; } -size_t GLGizmosManager::get_gizmo_idx_from_mouse(const Vec2d& mouse_pos) const +GLGizmosManager::EType GLGizmosManager::get_gizmo_from_mouse(const Vec2d &mouse_pos) const { - if (! m_enabled) - return Undefined; + if (!m_enabled) return Undefined; - float cnv_h = (float)m_parent.get_canvas_size().get_height(); - float height = get_scaled_total_height(); + float cnv_h = (float) m_parent.get_canvas_size().get_height(); + float height = get_scaled_total_height(); float icons_size = m_layout.scaled_icons_size(); - float border = m_layout.scaled_border(); - float stride_y = m_layout.scaled_stride_y(); - float top_y = 0.5f * (cnv_h - height) + border; + float border = m_layout.scaled_border(); + float stride_y = m_layout.scaled_stride_y(); + float top_y = 0.5f * (cnv_h - height) + border; // is mouse horizontally in the area? - if ((border <= (float)mouse_pos(0) && ((float)mouse_pos(0) <= border + icons_size))) { + if ((border <= (float) mouse_pos(0) && + ((float) mouse_pos(0) <= border + icons_size))) { // which icon is it on? - size_t from_top = (size_t)((float)mouse_pos(1) - top_y) / stride_y; + size_t from_top = (size_t) ((float) mouse_pos(1) - top_y) / stride_y; // is it really on the icon or already past the border? - if ((float)mouse_pos(1) <= top_y + from_top * stride_y + icons_size) { + if ((float) mouse_pos(1) <= top_y + from_top * stride_y + icons_size) { std::vector selectable = get_selectable_idxs(); - if (from_top < selectable.size()) - return selectable[from_top]; + if (from_top < selectable.size()) + return static_cast(selectable[from_top]); } } return Undefined; @@ -161,9 +163,9 @@ void GLGizmosManager::refresh_on_off_state() if (m_serializing || m_current == Undefined || m_gizmos.empty()) return; - if (m_current != Undefined - && ! m_gizmos[m_current]->is_activable() && activate_gizmo(Undefined)) - update_data(); + // FS: Why update data after Undefined gizmo activation? + if (!m_gizmos[m_current]->is_activable() && activate_gizmo(Undefined)) + update_data(); } void GLGizmosManager::reset_all_states() @@ -177,9 +179,13 @@ void GLGizmosManager::reset_all_states() bool GLGizmosManager::open_gizmo(EType type) { - int idx = int(type); - if (m_gizmos[idx]->is_activable() - && activate_gizmo(m_current == idx ? Undefined : (EType)idx)) { + int idx = static_cast(type); + + // re-open same type cause closing + if (m_current == type) type = Undefined; + + if (m_gizmos[idx]->is_activable() && activate_gizmo(type)) { + // remove update data into gizmo itself update_data(); return true; } @@ -208,87 +214,14 @@ void GLGizmosManager::set_hover_id(int id) m_gizmos[m_current]->set_hover_id(id); } -void GLGizmosManager::enable_grabber(EType type, unsigned int id, bool enable) -{ - if (!m_enabled || type == Undefined || m_gizmos.empty()) - return; - - if (enable) - m_gizmos[type]->enable_grabber(id); - else - m_gizmos[type]->disable_grabber(id); -} - -void GLGizmosManager::update(const Linef3& mouse_ray, const Point& mouse_pos) -{ - if (!m_enabled) - return; - - GLGizmoBase* curr = get_current(); - if (curr != nullptr) - curr->update(GLGizmoBase::UpdateData(mouse_ray, mouse_pos)); -} - void GLGizmosManager::update_data() { - if (!m_enabled) - return; - - const Selection& selection = m_parent.get_selection(); - - bool is_wipe_tower = selection.is_wipe_tower(); - enable_grabber(Move, 2, !is_wipe_tower); - enable_grabber(Rotate, 0, !is_wipe_tower); - enable_grabber(Rotate, 1, !is_wipe_tower); - - bool enable_scale_xyz = selection.is_single_full_instance() || selection.is_single_volume() || selection.is_single_modifier(); - for (unsigned int i = 0; i < 6; ++i) - { - enable_grabber(Scale, i, enable_scale_xyz); - } - + if (!m_enabled) return; if (m_common_gizmos_data) m_common_gizmos_data->update(get_current() ? get_current()->get_requirements() : CommonGizmosDataID(0)); - - if (selection.is_single_full_instance()) - { - // all volumes in the selection belongs to the same instance, any of them contains the needed data, so we take the first - const GLVolume* volume = selection.get_volume(*selection.get_volume_idxs().begin()); - set_scale(volume->get_instance_scaling_factor()); - set_rotation(Vec3d::Zero()); - ModelObject* model_object = selection.get_model()->objects[selection.get_object_idx()]; - set_flattening_data(model_object); - set_sla_support_data(model_object); - set_painter_gizmo_data(); - } - else if (selection.is_single_volume() || selection.is_single_modifier()) - { - const GLVolume* volume = selection.get_volume(*selection.get_volume_idxs().begin()); - set_scale(volume->get_volume_scaling_factor()); - set_rotation(Vec3d::Zero()); - set_flattening_data(nullptr); - set_sla_support_data(nullptr); - set_painter_gizmo_data(); - } - else if (is_wipe_tower) - { - DynamicPrintConfig& config = wxGetApp().preset_bundle->prints.get_edited_preset().config; - set_scale(Vec3d::Ones()); - set_rotation(Vec3d(0., 0., (M_PI/180.) * dynamic_cast(config.option("wipe_tower_rotation_angle"))->value)); - set_flattening_data(nullptr); - set_sla_support_data(nullptr); - set_painter_gizmo_data(); - } - else - { - set_scale(Vec3d::Ones()); - set_rotation(Vec3d::Zero()); - set_flattening_data(selection.is_from_single_object() ? selection.get_model()->objects[selection.get_object_idx()] : nullptr); - set_sla_support_data(selection.is_from_single_instance() ? selection.get_model()->objects[selection.get_object_idx()] : nullptr); - set_painter_gizmo_data(); - } + if (m_current != Undefined) m_gizmos[m_current]->data_changed(); } bool GLGizmosManager::is_running() const @@ -328,107 +261,6 @@ bool GLGizmosManager::is_dragging() const return m_gizmos[m_current]->is_dragging(); } -void GLGizmosManager::start_dragging() -{ - if (! m_enabled || m_current == Undefined) - return; - m_gizmos[m_current]->start_dragging(); -} - -void GLGizmosManager::stop_dragging() -{ - if (! m_enabled || m_current == Undefined) - return; - - m_gizmos[m_current]->stop_dragging(); -} - -Vec3d GLGizmosManager::get_displacement() const -{ - if (!m_enabled) - return Vec3d::Zero(); - - return dynamic_cast(m_gizmos[Move].get())->get_displacement(); -} - -Vec3d GLGizmosManager::get_scale() const -{ - if (!m_enabled) - return Vec3d::Ones(); - - return dynamic_cast(m_gizmos[Scale].get())->get_scale(); -} - -void GLGizmosManager::set_scale(const Vec3d& scale) -{ - if (!m_enabled || m_gizmos.empty()) - return; - - dynamic_cast(m_gizmos[Scale].get())->set_scale(scale); -} - -Vec3d GLGizmosManager::get_scale_offset() const -{ - if (!m_enabled || m_gizmos.empty()) - return Vec3d::Zero(); - - return dynamic_cast(m_gizmos[Scale].get())->get_offset(); -} - -Vec3d GLGizmosManager::get_rotation() const -{ - if (!m_enabled || m_gizmos.empty()) - return Vec3d::Zero(); - - return dynamic_cast(m_gizmos[Rotate].get())->get_rotation(); -} - -void GLGizmosManager::set_rotation(const Vec3d& rotation) -{ - if (!m_enabled || m_gizmos.empty()) - return; - dynamic_cast(m_gizmos[Rotate].get())->set_rotation(rotation); -} - -Vec3d GLGizmosManager::get_flattening_normal() const -{ - if (!m_enabled || m_gizmos.empty()) - return Vec3d::Zero(); - - return dynamic_cast(m_gizmos[Flatten].get())->get_flattening_normal(); -} - -void GLGizmosManager::set_flattening_data(const ModelObject* model_object) -{ - if (!m_enabled || m_gizmos.empty()) - return; - - dynamic_cast(m_gizmos[Flatten].get())->set_flattening_data(model_object); -} - -void GLGizmosManager::set_sla_support_data(ModelObject* model_object) -{ - if (! m_enabled - || m_gizmos.empty() - || wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() != ptSLA) - return; - - auto* gizmo_hollow = dynamic_cast(m_gizmos[Hollow].get()); - auto* gizmo_supports = dynamic_cast(m_gizmos[SlaSupports].get()); - gizmo_hollow->set_sla_support_data(model_object, m_parent.get_selection()); - gizmo_supports->set_sla_support_data(model_object, m_parent.get_selection()); -} - -void GLGizmosManager::set_painter_gizmo_data() -{ - if (!m_enabled || m_gizmos.empty()) - return; - - dynamic_cast(m_gizmos[FdmSupports].get())->set_painter_gizmo_data(m_parent.get_selection()); - dynamic_cast(m_gizmos[Seam].get())->set_painter_gizmo_data(m_parent.get_selection()); - dynamic_cast(m_gizmos[MmuSegmentation].get())->set_painter_gizmo_data(m_parent.get_selection()); -} - // Returns true if the gizmo used the event to do something, false otherwise. bool GLGizmosManager::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down) { @@ -519,7 +351,7 @@ std::string GLGizmosManager::get_tooltip() const return (curr != nullptr) ? curr->get_tooltip() : ""; } -bool GLGizmosManager::on_mouse_wheel(wxMouseEvent& evt) +bool GLGizmosManager::on_mouse_wheel(const wxMouseEvent &evt) { bool processed = false; @@ -532,227 +364,108 @@ bool GLGizmosManager::on_mouse_wheel(wxMouseEvent& evt) return processed; } -bool GLGizmosManager::on_mouse(wxMouseEvent& evt) -{ - // used to set a right up event as processed when needed - static bool pending_right_up = false; - - Point pos(evt.GetX(), evt.GetY()); - Vec2d mouse_pos((double)evt.GetX(), (double)evt.GetY()); - - Selection& selection = m_parent.get_selection(); - int selected_object_idx = selection.get_object_idx(); - bool processed = false; - - // when control is down we allow scene pan and rotation even when clicking over some object - bool control_down = evt.CmdDown(); - - // mouse anywhere - if (evt.Moving()) { - m_tooltip = update_hover_state(mouse_pos); - if (m_current == MmuSegmentation || m_current == FdmSupports) - gizmo_event(SLAGizmoEventType::Moving, mouse_pos, evt.ShiftDown(), evt.AltDown()); - } else if (evt.LeftUp()) { - if (m_mouse_capture.left) { - processed = true; - m_mouse_capture.left = false; +bool GLGizmosManager::gizmos_toolbar_on_mouse(const wxMouseEvent &mouse_event) { + assert(m_enabled); + // keep information about events to process + struct MouseCapture + { + bool left = false; + bool middle = false; + bool right = false; + bool exist_tooltip = false; + MouseCapture() = default; + bool any() const { return left || middle || right; } + void reset() { + left = false; + middle = false; + right = false; } - else if (is_dragging()) { - switch (m_current) { - case Move: { m_parent.do_move(L("Gizmo-Move")); break; } - case Scale: { m_parent.do_scale(L("Gizmo-Scale")); break; } - case Rotate: { m_parent.do_rotate(L("Gizmo-Rotate")); break; } - default: break; - } + }; + static MouseCapture mc; - stop_dragging(); - update_data(); + // wxCoord == int --> wx/types.h + Vec2i mouse_coord(mouse_event.GetX(), mouse_event.GetY()); + Vec2d mouse_pos = mouse_coord.cast(); - wxGetApp().obj_manipul()->set_dirty(); - // Let the plater know that the dragging finished, so a delayed refresh - // of the scene with the background processing data should be performed. - m_parent.post_event(SimpleEvent(EVT_GLCANVAS_MOUSE_DRAGGING_FINISHED)); - // updates camera target constraints - m_parent.refresh_camera_scene_box(); + EType gizmo = get_gizmo_from_mouse(mouse_pos); + bool selected_gizmo = gizmo != Undefined; - processed = true; - } -// else -// return false; - } - else if (evt.MiddleUp()) { - if (m_mouse_capture.middle) { - processed = true; - m_mouse_capture.middle = false; - } - else + // fast reaction on move mouse + if (mouse_event.Moving()) { + assert(!mc.any()); + if (selected_gizmo) { + mc.exist_tooltip = true; + update_hover_state(gizmo); + // at this moment is enebled to process mouse move under gizmo + // tools bar e.g. Do not interupt dragging. return false; + } else if (mc.exist_tooltip) { + // first move out of gizmo tool bar - unselect tooltip + mc.exist_tooltip = false; + update_hover_state(Undefined); + return false; + } + return false; } - else if (evt.RightUp()) { - if (pending_right_up) { - pending_right_up = false; + + if (selected_gizmo) { + // mouse is above toolbar + if (mouse_event.LeftDown() || mouse_event.LeftDClick()) { + mc.left = true; + open_gizmo(gizmo); + return true; + } else if (mouse_event.RightDown()) { + mc.right = true; + return true; + } else if (mouse_event.MiddleDown()) { + mc.middle = true; return true; } - if (m_mouse_capture.right) { - processed = true; - m_mouse_capture.right = false; - } -// else -// return false; - } - else if (evt.Dragging() && !is_dragging()) { - if (m_mouse_capture.any()) - // if the button down was done on this toolbar, prevent from dragging into the scene - processed = true; -// else -// return false; - } - else if (evt.Dragging() && is_dragging()) { - if (!m_parent.get_wxglcanvas()->HasCapture()) - m_parent.get_wxglcanvas()->CaptureMouse(); - - m_parent.set_mouse_as_dragging(); - update(m_parent.mouse_ray(pos), pos); - - switch (m_current) - { - case Move: - { - // Apply new temporary offset - selection.translate(get_displacement()); - wxGetApp().obj_manipul()->set_dirty(); - break; - } - case Scale: - { - // Apply new temporary scale factors - TransformationType transformation_type(TransformationType::Local_Absolute_Joint); - if (evt.AltDown()) - transformation_type.set_independent(); - selection.scale(get_scale(), transformation_type); - if (control_down) - selection.translate(get_scale_offset(), true); - wxGetApp().obj_manipul()->set_dirty(); - break; - } - case Rotate: - { - // Apply new temporary rotations - TransformationType transformation_type(TransformationType::World_Relative_Joint); - if (evt.AltDown()) - transformation_type.set_independent(); - selection.rotate(get_rotation(), transformation_type); - wxGetApp().obj_manipul()->set_dirty(); - break; - } - default: - break; - } - - m_parent.set_as_dirty(); - processed = true; } - if (get_gizmo_idx_from_mouse(mouse_pos) == Undefined) { - // mouse is outside the toolbar - m_tooltip.clear(); - - if (evt.LeftDown() && (!control_down || grabber_contains_mouse())) { - if ((m_current == SlaSupports || m_current == Hollow || m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation || m_current == Cut) - && gizmo_event(SLAGizmoEventType::LeftDown, mouse_pos, evt.ShiftDown(), evt.AltDown())) - // the gizmo got the event and took some action, there is no need to do anything more - processed = true; - else if (!selection.is_empty() && grabber_contains_mouse()) { - update_data(); - selection.start_dragging(); - start_dragging(); - - // Let the plater know that the dragging started - m_parent.post_event(SimpleEvent(EVT_GLCANVAS_MOUSE_DRAGGING_STARTED)); - - if (m_current == Flatten) { - // Rotate the object so the normal points downward: - m_parent.do_flatten(get_flattening_normal(), L("Gizmo-Place on Face")); - wxGetApp().obj_manipul()->set_dirty(); - } - - m_parent.set_as_dirty(); - processed = true; + if (mc.any()) { + // Check if exist release of event started above toolbar? + if (mouse_event.Dragging()) { + if (!selected_gizmo && mc.exist_tooltip) { + // dragging out of gizmo let tooltip disapear + mc.exist_tooltip = false; + update_hover_state(Undefined); } + // draging start on toolbar so no propagation into scene + return true; + } else if (mc.left && mouse_event.LeftUp()) { + mc.left = false; + return true; + } else if (mc.right && mouse_event.RightUp()) { + mc.right = false; + return true; + } else if (mc.middle && mouse_event.MiddleUp()) { + mc.middle = false; + return true; } - else if (evt.RightDown() && selected_object_idx != -1 && (m_current == SlaSupports || m_current == Hollow) - && gizmo_event(SLAGizmoEventType::RightDown, mouse_pos)) { - // we need to set the following right up as processed to avoid showing the context menu if the user release the mouse over the object - pending_right_up = true; - // event was taken care of by the SlaSupports gizmo - processed = true; - } - else if (evt.RightDown() && !control_down && selected_object_idx != -1 && (m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation) - && gizmo_event(SLAGizmoEventType::RightDown, mouse_pos)) { - // event was taken care of by the FdmSupports / Seam / MMUPainting gizmo - processed = true; - } - else if (evt.Dragging() && m_parent.get_move_volume_id() != -1 - && (m_current == SlaSupports || m_current == Hollow || m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation)) - // don't allow dragging objects with the Sla gizmo on - processed = true; - else if (evt.Dragging() && !control_down && (m_current == SlaSupports || m_current == Hollow || m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation) - && gizmo_event(SLAGizmoEventType::Dragging, mouse_pos, evt.ShiftDown(), evt.AltDown())) { - // the gizmo got the event and took some action, no need to do anything more here - m_parent.set_as_dirty(); - processed = true; - } - else if (evt.Dragging() && control_down && (evt.LeftIsDown() || evt.RightIsDown())) { - // CTRL has been pressed while already dragging -> stop current action - if (evt.LeftIsDown()) - gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, evt.ShiftDown(), evt.AltDown(), true); - else if (evt.RightIsDown()) - gizmo_event(SLAGizmoEventType::RightUp, mouse_pos, evt.ShiftDown(), evt.AltDown(), true); - } - else if (evt.LeftUp() && (m_current == SlaSupports || m_current == Hollow || m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation) && !m_parent.is_mouse_dragging()) { - // in case SLA/FDM gizmo is selected, we just pass the LeftUp event and stop processing - neither - // object moving or selecting is suppressed in that case - gizmo_event(SLAGizmoEventType::LeftUp, mouse_pos, evt.ShiftDown(), evt.AltDown(), control_down); - processed = true; - } - else if (evt.LeftUp() && m_current == Flatten && m_gizmos[m_current]->get_hover_id() != -1) { - // to avoid to loose the selection when user clicks an the white faces of a different object while the Flatten gizmo is active - selection.stop_dragging(); - wxGetApp().obj_manipul()->set_dirty(); - processed = true; - } - else if (evt.RightUp() && (m_current == FdmSupports || m_current == Seam || m_current == MmuSegmentation) && !m_parent.is_mouse_dragging()) { - gizmo_event(SLAGizmoEventType::RightUp, mouse_pos, evt.ShiftDown(), evt.AltDown(), control_down); - processed = true; - } - else if (evt.LeftUp()) { - selection.stop_dragging(); - wxGetApp().obj_manipul()->set_dirty(); - } - } - else { - // mouse inside toolbar - if (evt.LeftDown() || evt.LeftDClick()) { - m_mouse_capture.left = true; - m_mouse_capture.parent = &m_parent; - processed = true; - if (!selection.is_empty()) { - update_on_off_state(mouse_pos); - update_data(); - m_parent.set_as_dirty(); - } - } - else if (evt.MiddleDown()) { - m_mouse_capture.middle = true; - m_mouse_capture.parent = &m_parent; - } - else if (evt.RightDown()) { - m_mouse_capture.right = true; - m_mouse_capture.parent = &m_parent; - } + + // event out of window is not porocessed + // left down on gizmo -> keep down -> move out of window -> release left + if (mouse_event.Leaving()) mc.reset(); } + return false; +} - return processed; +bool GLGizmosManager::on_mouse(const wxMouseEvent &mouse_event) +{ + if (!m_enabled) return false; + + // tool bar wants to use event? + if (gizmos_toolbar_on_mouse(mouse_event)) return true; + + // current gizmo wants to use event? + if (m_current != Undefined && + // check if gizmo override method could be slower than simple call virtual function + // &m_gizmos[m_current]->on_mouse != &GLGizmoBase::on_mouse && + m_gizmos[m_current]->on_mouse(mouse_event)) + return true; + + return false; } bool GLGizmosManager::on_char(wxKeyEvent& evt) @@ -1182,68 +895,64 @@ bool GLGizmosManager::generate_icons_texture() const return res; } -void GLGizmosManager::update_on_off_state(const Vec2d& mouse_pos) +void GLGizmosManager::update_hover_state(const EType &type) { - if (!m_enabled) + assert(m_enabled); + if (type == Undefined) { + m_hover = Undefined; + m_tooltip.clear(); return; - - size_t idx = get_gizmo_idx_from_mouse(mouse_pos); - if (idx != Undefined && m_gizmos[idx]->is_activable() && m_hover == idx) { - activate_gizmo(m_current == idx ? Undefined : (EType)idx); - wxGetApp().obj_list()->select_object_item((EType)idx <= Rotate); - } -} - -std::string GLGizmosManager::update_hover_state(const Vec2d& mouse_pos) -{ - std::string name = ""; - - if (!m_enabled) - return name; - - m_hover = Undefined; - - size_t idx = get_gizmo_idx_from_mouse(mouse_pos); - if (idx != Undefined) { - name = m_gizmos[idx]->get_name(); - - if (m_gizmos[idx]->is_activable()) - m_hover = (EType)idx; } - return name; + const GLGizmoBase &hovered_gizmo = *m_gizmos[type]; + m_hover = hovered_gizmo.is_activable() ? type : Undefined; + m_tooltip = hovered_gizmo.get_name(); } bool GLGizmosManager::activate_gizmo(EType type) { - if (m_gizmos.empty() || m_current == type) - return true; + assert(!m_gizmos.empty()); - GLGizmoBase* old_gizmo = m_current == Undefined ? nullptr : m_gizmos[m_current].get(); - GLGizmoBase* new_gizmo = type == Undefined ? nullptr : m_gizmos[type].get(); + // already activated + if (m_current == type) return true; - if (old_gizmo) { - old_gizmo->set_state(GLGizmoBase::Off); - if (old_gizmo->get_state() != GLGizmoBase::Off) + if (m_current != Undefined) { + // clean up previous gizmo + GLGizmoBase &old_gizmo = *m_gizmos[m_current]; + old_gizmo.set_state(GLGizmoBase::Off); + if (old_gizmo.get_state() != GLGizmoBase::Off) return false; // gizmo refused to be turned off, do nothing. - if (! m_parent.get_gizmos_manager().is_serializing() - && old_gizmo->wants_enter_leave_snapshots()) - Plater::TakeSnapshot snapshot(wxGetApp().plater(), - old_gizmo->get_gizmo_leaving_text(), - UndoRedo::SnapshotType::LeavingGizmoWithAction); + if (!m_serializing && old_gizmo.wants_enter_leave_snapshots()) + Plater::TakeSnapshot + snapshot(wxGetApp().plater(), + old_gizmo.get_gizmo_leaving_text(), + UndoRedo::SnapshotType::LeavingGizmoWithAction); } - if (new_gizmo && ! m_parent.get_gizmos_manager().is_serializing() - && new_gizmo->wants_enter_leave_snapshots()) + if (type == Undefined) { + // it is deactivation of gizmo + m_current = Undefined; + return true; + } + + // set up new gizmo + GLGizmoBase& new_gizmo = *m_gizmos[type]; + if (!new_gizmo.is_activable()) return false; + + if (!m_serializing && new_gizmo.wants_enter_leave_snapshots()) Plater::TakeSnapshot snapshot(wxGetApp().plater(), - new_gizmo->get_gizmo_entering_text(), - UndoRedo::SnapshotType::EnteringGizmo); + new_gizmo.get_gizmo_entering_text(), + UndoRedo::SnapshotType::EnteringGizmo); m_current = type; + new_gizmo.set_state(GLGizmoBase::On); + if (new_gizmo.get_state() != GLGizmoBase::On) { + m_current = Undefined; + return false; // gizmo refused to be turned on. + } - if (new_gizmo) - new_gizmo->set_state(GLGizmoBase::On); + // sucessful activation of gizmo return true; } @@ -1281,11 +990,5 @@ bool GLGizmosManager::is_hiding_instances() const && m_common_gizmos_data->instances_hider()->is_valid()); } - -int GLGizmosManager::get_shortcut_key(GLGizmosManager::EType type) const -{ - return m_gizmos[type]->get_shortcut_key(); -} - } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp index 8d268723bc..b8dfdec780 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp @@ -112,28 +112,22 @@ private: std::pair m_highlight; // bool true = higlightedShown, false = highlightedHidden std::vector get_selectable_idxs() const; - size_t get_gizmo_idx_from_mouse(const Vec2d& mouse_pos) const; + EType get_gizmo_from_mouse(const Vec2d &mouse_pos) const; bool activate_gizmo(EType type); - struct MouseCapture - { - bool left; - bool middle; - bool right; - GLCanvas3D* parent; - - MouseCapture() { reset(); } - - bool any() const { return left || middle || right; } - void reset() { left = middle = right = false; parent = nullptr; } - }; - - MouseCapture m_mouse_capture; std::string m_tooltip; bool m_serializing; std::unique_ptr m_common_gizmos_data; + /// + /// Process mouse event on gizmo toolbar + /// + /// Event descriptor + /// TRUE when take responsibility for event otherwise FALSE. + /// On true, event should not be process by others. + /// On false, event should be process by others. + bool gizmos_toolbar_on_mouse(const wxMouseEvent &mouse_event); public: explicit GLGizmosManager(GLCanvas3D& parent); @@ -184,14 +178,15 @@ public: void refresh_on_off_state(); void reset_all_states(); - bool is_serializing() const { return m_serializing; } bool open_gizmo(EType type); bool check_gizmos_closed_except(EType) const; void set_hover_id(int id); - void enable_grabber(EType type, unsigned int id, bool enable); - void update(const Linef3& mouse_ray, const Point& mouse_pos); + /// + /// Distribute information about different data into active gizmo + /// Should be called when selection changed + /// void update_data(); EType get_current_type() const { return m_current; } @@ -202,28 +197,7 @@ public: bool handle_shortcut(int key); bool is_dragging() const; - void start_dragging(); - void stop_dragging(); - - Vec3d get_displacement() const; - - Vec3d get_scale() const; - void set_scale(const Vec3d& scale); - - Vec3d get_scale_offset() const; - - Vec3d get_rotation() const; - void set_rotation(const Vec3d& rotation); - - Vec3d get_flattening_normal() const; - - void set_flattening_data(const ModelObject* model_object); - - void set_sla_support_data(ModelObject* model_object); - - void set_painter_gizmo_data(); - - bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position = Vec2d::Zero(), bool shift_down = false, bool alt_down = false, bool control_down = false); + ClippingPlane get_clipping_plane() const; bool wants_reslice_supports_on_undo() const; @@ -240,21 +214,26 @@ public: std::string get_tooltip() const; - bool on_mouse(wxMouseEvent& evt); - bool on_mouse_wheel(wxMouseEvent& evt); + bool on_mouse(const wxMouseEvent &mouse_event); + bool on_mouse_wheel(const wxMouseEvent &evt); bool on_char(wxKeyEvent& evt); bool on_key(wxKeyEvent& evt); void update_after_undo_redo(const UndoRedo::Snapshot& snapshot); int get_selectable_icons_cnt() const { return get_selectable_idxs().size(); } - int get_shortcut_key(GLGizmosManager::EType) const; // To end highlight set gizmo = undefined void set_highlight(EType gizmo, bool highlight_shown) { m_highlight = std::pair(gizmo, highlight_shown); } bool get_highlight_state() const { return m_highlight.second; } private: + bool gizmo_event(SLAGizmoEventType action, + const Vec2d & mouse_position = Vec2d::Zero(), + bool shift_down = false, + bool alt_down = false, + bool control_down = false); + void render_background(float left, float top, float right, float bottom, float border) const; void do_render_overlay() const; @@ -264,8 +243,7 @@ private: bool generate_icons_texture() const; - void update_on_off_state(const Vec2d& mouse_pos); - std::string update_hover_state(const Vec2d& mouse_pos); + void update_hover_state(const EType &type); bool grabber_contains_mouse() const; }; diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp index 9a2e5d2664..19fa23bc7a 100644 --- a/src/slic3r/GUI/ImGuiWrapper.cpp +++ b/src/slic3r/GUI/ImGuiWrapper.cpp @@ -1445,8 +1445,8 @@ void ImGuiWrapper::render_draw_data(ImDrawData *draw_data) { // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) ImGuiIO& io = ImGui::GetIO(); - int fb_width = (int)(draw_data->DisplaySize.x * io.DisplayFramebufferScale.x); - int fb_height = (int)(draw_data->DisplaySize.y * io.DisplayFramebufferScale.y); + const int fb_width = (int)(draw_data->DisplaySize.x * io.DisplayFramebufferScale.x); + const int fb_height = (int)(draw_data->DisplaySize.y * io.DisplayFramebufferScale.y); if (fb_width == 0 || fb_height == 0) return; draw_data->ScaleClipRects(io.DisplayFramebufferScale); @@ -1489,8 +1489,7 @@ void ImGuiWrapper::render_draw_data(ImDrawData *draw_data) // Render command lists ImVec2 pos = draw_data->DisplayPos; - for (int n = 0; n < draw_data->CmdListsCount; n++) - { + for (int n = 0; n < draw_data->CmdListsCount; ++n) { const ImDrawList* cmd_list = draw_data->CmdLists[n]; const ImDrawVert* vtx_buffer = cmd_list->VtxBuffer.Data; const ImDrawIdx* idx_buffer = cmd_list->IdxBuffer.Data; @@ -1498,19 +1497,14 @@ void ImGuiWrapper::render_draw_data(ImDrawData *draw_data) glsafe(::glTexCoordPointer(2, GL_FLOAT, sizeof(ImDrawVert), (const GLvoid*)((const char*)vtx_buffer + IM_OFFSETOF(ImDrawVert, uv)))); glsafe(::glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(ImDrawVert), (const GLvoid*)((const char*)vtx_buffer + IM_OFFSETOF(ImDrawVert, col)))); - for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) - { + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; ++cmd_i) { const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; if (pcmd->UserCallback) - { // User callback (registered via ImDrawList::AddCallback) pcmd->UserCallback(cmd_list, pcmd); - } - else - { + else { ImVec4 clip_rect = ImVec4(pcmd->ClipRect.x - pos.x, pcmd->ClipRect.y - pos.y, pcmd->ClipRect.z - pos.x, pcmd->ClipRect.w - pos.y); - if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0f && clip_rect.w >= 0.0f) - { + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0f && clip_rect.w >= 0.0f) { // Apply scissor/clipping rectangle glsafe(::glScissor((int)clip_rect.x, (int)(fb_height - clip_rect.w), (int)(clip_rect.z - clip_rect.x), (int)(clip_rect.w - clip_rect.y))); diff --git a/src/slic3r/GUI/Jobs/SLAImportJob.cpp b/src/slic3r/GUI/Jobs/SLAImportJob.cpp index 1bb8cdf6c6..96702d158f 100644 --- a/src/slic3r/GUI/Jobs/SLAImportJob.cpp +++ b/src/slic3r/GUI/Jobs/SLAImportJob.cpp @@ -1,5 +1,6 @@ #include "SLAImportJob.hpp" +#include "libslic3r/SLAPrint.hpp" #include "libslic3r/Format/SL1.hpp" #include "slic3r/GUI/GUI.hpp" diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 08d2f682b4..cc2e07f692 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -859,7 +859,10 @@ bool MainFrame::save_project_as(const wxString& filename) { bool ret = (m_plater != nullptr) ? m_plater->export_3mf(into_path(filename)) : false; if (ret) { -// wxGetApp().update_saved_preset_from_current_preset(); + // Make a copy of the active presets for detecting changes in preset values. + wxGetApp().update_saved_preset_from_current_preset(); + // Save the names of active presets and project specific config into ProjectDirtyStateManager. + // Reset ProjectDirtyStateManager's state as saved, mark active UndoRedo step as saved with project. m_plater->reset_project_dirty_after_save(); } return ret; diff --git a/src/slic3r/GUI/MsgDialog.cpp b/src/slic3r/GUI/MsgDialog.cpp index 35d68e52e5..02f8ab58fc 100644 --- a/src/slic3r/GUI/MsgDialog.cpp +++ b/src/slic3r/GUI/MsgDialog.cpp @@ -311,7 +311,11 @@ wxString get_wraped_wxString(const wxString& in, size_t line_len /*=80*/) overwrite = true; if (newline) break; - } else if (in[j] == '/') { + } else if (in[j] == '/' +#ifdef _WIN32 + || in[j] == '\\' +#endif // _WIN32 + ) { // Insert after the slash. ibreak = ++ j; overwrite = false; diff --git a/src/slic3r/GUI/Notebook.hpp b/src/slic3r/GUI/Notebook.hpp index ff5020b9c4..af03a6a080 100644 --- a/src/slic3r/GUI/Notebook.hpp +++ b/src/slic3r/GUI/Notebook.hpp @@ -245,7 +245,7 @@ public: GetBtnsListCtrl()->Rescale(); } - void Notebook::OnNavigationKey(wxNavigationKeyEvent& event) + void OnNavigationKey(wxNavigationKeyEvent& event) { if (event.IsWindowChange()) { // change pages diff --git a/src/slic3r/GUI/OpenGLManager.cpp b/src/slic3r/GUI/OpenGLManager.cpp index 6616cc20d7..41a11cff6e 100644 --- a/src/slic3r/GUI/OpenGLManager.cpp +++ b/src/slic3r/GUI/OpenGLManager.cpp @@ -233,8 +233,9 @@ OpenGLManager::~OpenGLManager() bool OpenGLManager::init_gl() { if (!m_gl_initialized) { - if (glewInit() != GLEW_OK) { - BOOST_LOG_TRIVIAL(error) << "Unable to init glew library"; + GLenum err = glewInit(); + if (err != GLEW_OK) { + BOOST_LOG_TRIVIAL(error) << "Unable to init glew library: " << glewGetErrorString(err); return false; } m_gl_initialized = true; diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0ff3c294c9..af4b22df5d 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -499,6 +499,7 @@ FreqChangedParams::FreqChangedParams(wxWindow* parent) : std::vector extruders = dlg.get_extruders(); (project_config.option("wiping_volumes_matrix"))->values = std::vector(matrix.begin(), matrix.end()); (project_config.option("wiping_volumes_extruders"))->values = std::vector(extruders.begin(), extruders.end()); + // Update Project dirty state, update application title bar. wxGetApp().plater()->update_project_dirty_from_presets(); wxPostEvent(parent, SimpleEvent(EVT_SCHEDULE_BACKGROUND_PROCESS, parent)); } @@ -2351,7 +2352,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ } const auto loading = _L("Loading") + dots; - wxProgressDialog dlg(loading, "", 100, find_toplevel_parent(q), wxPD_AUTO_HIDE); + wxProgressDialog progress_dlg(loading, "", 100, find_toplevel_parent(q), wxPD_AUTO_HIDE); wxBusyCursor busy; auto *new_model = (!load_model || one_by_one) ? nullptr : new Slic3r::Model(); @@ -2360,7 +2361,8 @@ std::vector Plater::priv::load_files(const std::vector& input_ int answer_convert_from_meters = wxOK_DEFAULT; int answer_convert_from_imperial_units = wxOK_DEFAULT; - for (size_t i = 0; i < input_files.size(); ++i) { + size_t input_files_size = input_files.size(); + for (size_t i = 0; i < input_files_size; ++i) { #ifdef _WIN32 auto path = input_files[i]; // On Windows, we swap slashes to back slashes, see GH #6803 as read_from_file() does not understand slashes on Windows thus it assignes full path to names of loaded objects. @@ -2370,8 +2372,8 @@ std::vector Plater::priv::load_files(const std::vector& input_ const auto &path = input_files[i]; #endif // _WIN32 const auto filename = path.filename(); - dlg.Update(static_cast(100.0f * static_cast(i) / static_cast(input_files.size())), _L("Loading file") + ": " + from_path(filename)); - dlg.Fit(); + progress_dlg.Update(static_cast(100.0f * static_cast(i) / static_cast(input_files.size())), _L("Loading file") + ": " + from_path(filename)); + progress_dlg.Fit(); const bool type_3mf = std::regex_match(path.string(), pattern_3mf); const bool type_zip_amf = !type_3mf && std::regex_match(path.string(), pattern_zip_amf); @@ -2382,17 +2384,28 @@ std::vector Plater::priv::load_files(const std::vector& input_ bool is_project_file = type_prusa; try { if (type_3mf || type_zip_amf) { +#ifdef __linux__ + // On Linux Constructor of the ProgressDialog calls DisableOtherWindows() function which causes a disabling of all children of the find_toplevel_parent(q) + // And a destructor of the ProgressDialog calls ReenableOtherWindows() function which revert previously disabled children. + // But if printer technology will be changes during project loading, + // then related SLA Print and Materials Settings or FFF Print and Filaments Settings will be unparent from the wxNoteBook + // and that is why they will never be enabled after destruction of the ProgressDialog. + // So, distroy progress_gialog if we are loading project file + if (input_files_size == 1) + progress_dlg.Destroy(); +#endif DynamicPrintConfig config; + PrinterTechnology loaded_printer_technology {ptFFF}; { DynamicPrintConfig config_loaded; ConfigSubstitutionContext config_substitutions{ ForwardCompatibilitySubstitutionRule::Enable }; model = Slic3r::Model::read_from_archive(path.string(), &config_loaded, &config_substitutions, only_if(load_config, Model::LoadAttribute::CheckVersion)); if (load_config && !config_loaded.empty()) { // Based on the printer technology field found in the loaded config, select the base for the config, - PrinterTechnology printer_technology = Preset::printer_technology(config_loaded); + loaded_printer_technology = Preset::printer_technology(config_loaded); // We can't to load SLA project if there is at least one multi-part object on the bed - if (printer_technology == ptSLA) { + if (loaded_printer_technology == ptSLA) { const ModelObjectPtrs& objects = q->model().objects; for (auto object : objects) if (object->volumes.size() > 1) { @@ -2404,7 +2417,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ } } - config.apply(printer_technology == ptFFF ? + config.apply(loaded_printer_technology == ptFFF ? static_cast(FullPrintConfig::defaults()) : static_cast(SLAFullPrintConfig::defaults())); // and place the loaded config over the base. @@ -2435,7 +2448,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ }; std::vector names; - if (printer_technology == ptFFF) { + if (loaded_printer_technology == ptFFF) { update_selected_preset_visibility(preset_bundle->prints, names); for (const std::string& filament : preset_bundle->filament_presets) { Preset* preset = preset_bundle->filaments.find_preset(filament); @@ -2466,7 +2479,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ } } - if (printer_technology == ptFFF) + if (loaded_printer_technology == ptFFF) CustomGCode::update_custom_gcode_per_print_z_from_config(model.custom_gcode_per_print_z, &preset_bundle->project_config); // For exporting from the amf/3mf we shouldn't check printer_presets for the containing information about "Print Host upload" @@ -5257,8 +5270,11 @@ void Plater::new_project() take_snapshot(_L("New Project"), UndoRedo::SnapshotType::ProjectSeparator); Plater::SuppressSnapshots suppress(this); reset(); + // Save the names of active presets and project specific config into ProjectDirtyStateManager. reset_project_dirty_initial_presets(); + // Make a copy of the active presets for detecting changes in preset values. wxGetApp().update_saved_preset_from_current_preset(); + // Update Project dirty state, update application title bar. update_project_dirty_from_presets(); } @@ -5287,7 +5303,11 @@ void Plater::load_project(const wxString& filename) if (! load_files({ into_path(filename) }).empty()) { // At least one file was loaded. p->set_project_filename(filename); + // Save the names of active presets and project specific config into ProjectDirtyStateManager. reset_project_dirty_initial_presets(); + // Make a copy of the active presets for detecting changes in preset values. + wxGetApp().update_saved_preset_from_current_preset(); + // Update Project dirty state, update application title bar. update_project_dirty_from_presets(); } } @@ -5996,7 +6016,6 @@ void Plater::export_stl_obj(bool extended, bool selection_only) } else if (0 <= instance_id && instance_id < int(mo.instances.size())) mesh.transform(mo.instances[instance_id]->get_matrix(), true); - return mesh; }; diff --git a/src/slic3r/GUI/ProjectDirtyStateManager.cpp b/src/slic3r/GUI/ProjectDirtyStateManager.cpp index c79ac0c393..89c13b6406 100644 --- a/src/slic3r/GUI/ProjectDirtyStateManager.cpp +++ b/src/slic3r/GUI/ProjectDirtyStateManager.cpp @@ -17,9 +17,11 @@ namespace GUI { void ProjectDirtyStateManager::update_from_undo_redo_stack(bool dirty) { - m_plater_dirty = dirty; - if (const Plater *plater = wxGetApp().plater(); plater && wxGetApp().initialized()) - wxGetApp().mainframe->update_title(); + if (m_plater_dirty != dirty) { + m_plater_dirty = dirty; + if (const Plater *plater = wxGetApp().plater(); plater && wxGetApp().initialized()) + wxGetApp().mainframe->update_title(); + } } void ProjectDirtyStateManager::update_from_presets() @@ -27,11 +29,11 @@ void ProjectDirtyStateManager::update_from_presets() m_presets_dirty = false; // check switching of the presets only for exist/loaded project, but not for new GUI_App &app = wxGetApp(); - if (!app.plater()->get_project_filename().IsEmpty()) { - for (const auto& [type, name] : app.get_selected_presets()) - m_presets_dirty |= !m_initial_presets[type].empty() && m_initial_presets[type] != name; + bool has_project = ! app.plater()->get_project_filename().IsEmpty(); + for (const PresetCollection *preset_collection : app.get_active_preset_collections()) { + auto type = preset_collection->type(); + m_presets_dirty |= (has_project && !m_initial_presets[type].empty() && m_initial_presets[type] != preset_collection->get_selected_preset_name()) || preset_collection->saved_is_dirty(); } - m_presets_dirty |= app.has_unsaved_preset_changes(); m_project_config_dirty = m_initial_project_config != app.preset_bundle->project_config; app.mainframe->update_title(); } @@ -49,8 +51,8 @@ void ProjectDirtyStateManager::reset_initial_presets() { m_initial_presets.fill(std::string{}); GUI_App &app = wxGetApp(); - for (const auto& [type, name] : app.get_selected_presets()) - m_initial_presets[type] = name; + for (const PresetCollection *preset_collection : app.get_active_preset_collections()) + m_initial_presets[preset_collection->type()] = preset_collection->get_selected_preset_name(); m_initial_project_config = app.preset_bundle->project_config; } diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp index 89fd43acbf..585616c116 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -115,7 +115,6 @@ Selection::Selection() , m_type(Empty) , m_valid(false) , m_scale_factor(1.0f) - , m_dragging(false) { this->set_bounding_boxes_dirty(); } @@ -679,12 +678,11 @@ const BoundingBoxf3& Selection::get_scaled_instance_bounding_box() const return *m_scaled_instance_bounding_box; } -void Selection::start_dragging() +void Selection::setup_cache() { if (!m_valid) return; - m_dragging = true; set_caches(); } @@ -955,12 +953,12 @@ void Selection::scale_to_fit_print_volume(const BuildVolume& volume) type.set_joint(); // apply scale - start_dragging(); + setup_cache(); scale(s * Vec3d::Ones(), type); wxGetApp().plater()->canvas3D()->do_scale(""); // avoid storing another snapshot // center selection on print bed - start_dragging(); + setup_cache(); offset.z() = -get_bounding_box().min.z(); translate(offset); wxGetApp().plater()->canvas3D()->do_move(""); // avoid storing another snapshot diff --git a/src/slic3r/GUI/Selection.hpp b/src/slic3r/GUI/Selection.hpp index 72865f4086..f9e18b036d 100644 --- a/src/slic3r/GUI/Selection.hpp +++ b/src/slic3r/GUI/Selection.hpp @@ -229,7 +229,6 @@ private: #endif // ENABLE_GLBEGIN_GLEND_REMOVAL float m_scale_factor; - bool m_dragging; public: Selection(); @@ -322,9 +321,7 @@ public: const BoundingBoxf3& get_unscaled_instance_bounding_box() const; const BoundingBoxf3& get_scaled_instance_bounding_box() const; - void start_dragging(); - void stop_dragging() { m_dragging = false; } - bool is_dragging() const { return m_dragging; } + void setup_cache(); void translate(const Vec3d& displacement, bool local = false); void rotate(const Vec3d& rotation, TransformationType transformation_type); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index b97b6cc39c..dc254d1aff 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1247,6 +1247,7 @@ void Tab::on_presets_changed() // to avoid needless preset loading from update() function m_dependent_tabs.clear(); + // Update Project dirty state, update application title bar. wxGetApp().plater()->update_project_dirty_from_presets(); } @@ -4113,7 +4114,7 @@ wxSizer* TabPrint::create_manage_substitution_widget(wxWindow* parent) create_btn(&m_del_all_substitutions_btn, _L("Delete all"), "cross"); m_del_all_substitutions_btn->Bind(wxEVT_BUTTON, [this, parent](wxCommandEvent e) { - if (MessageDialog(parent, _L("Are you sure you want to delete all substitutions?"), SLIC3R_APP_NAME, wxYES_NO | wxICON_QUESTION). + if (MessageDialog(parent, _L("Are you sure you want to delete all substitutions?"), SLIC3R_APP_NAME, wxYES_NO | wxCANCEL | wxICON_QUESTION). ShowModal() != wxID_YES) return; m_subst_manager.delete_all(); diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp index 7bdbcdb825..e9a4cee207 100644 --- a/src/slic3r/GUI/Tab.hpp +++ b/src/slic3r/GUI/Tab.hpp @@ -371,6 +371,7 @@ public: DynamicPrintConfig* get_config() { return m_config; } PresetCollection* get_presets() { return m_presets; } + const PresetCollection* get_presets() const { return m_presets; } void on_value_change(const std::string& opt_key, const boost::any& value); diff --git a/tests/fff_print/fff_print_tests.cpp b/tests/fff_print/fff_print_tests.cpp index 46358e5eba..cbdb2b12b7 100644 --- a/tests/fff_print/fff_print_tests.cpp +++ b/tests/fff_print/fff_print_tests.cpp @@ -1,3 +1,18 @@ #include #include "libslic3r/libslic3r.h" + +// __has_feature() is used later for Clang, this is for compatibility with other compilers (such as GCC and MSVC) +#ifndef __has_feature +# define __has_feature(x) 0 +#endif + +// Print reports about memory leaks but exit with zero exit code when any memory leaks is found to make unit tests pass. +// After merging the stable branch (2.4.1) with the master branch, this should be deleted. +#if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__) +extern "C" { + const char *__lsan_default_options() { + return "exitcode=0"; + } +} +#endif \ No newline at end of file diff --git a/tests/libnest2d/CMakeLists.txt b/tests/libnest2d/CMakeLists.txt index bcb7594520..9bafe84a04 100644 --- a/tests/libnest2d/CMakeLists.txt +++ b/tests/libnest2d/CMakeLists.txt @@ -4,4 +4,6 @@ target_link_libraries(${_TEST_NAME}_tests test_common libnest2d ) set_property(TARGET ${_TEST_NAME}_tests PROPERTY FOLDER "tests") # catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ") -add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests "${CATCH_EXTRA_ARGS} exclude:[NotWorking]") +set(_catch_args "exclude:[NotWorking]") +list(APPEND _catch_args "${CATCH_EXTRA_ARGS}") +add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests ${_catch_args}) diff --git a/tests/sla_print/CMakeLists.txt b/tests/sla_print/CMakeLists.txt index dc583f1a1c..88c1cd1866 100644 --- a/tests/sla_print/CMakeLists.txt +++ b/tests/sla_print/CMakeLists.txt @@ -3,9 +3,14 @@ add_executable(${_TEST_NAME}_tests ${_TEST_NAME}_tests_main.cpp sla_print_tests.cpp sla_test_utils.hpp sla_test_utils.cpp sla_supptgen_tests.cpp - sla_raycast_tests.cpp) + sla_raycast_tests.cpp + sla_archive_export_tests.cpp) target_link_libraries(${_TEST_NAME}_tests test_common libslic3r) set_property(TARGET ${_TEST_NAME}_tests PROPERTY FOLDER "tests") +if (WIN32) + prusaslicer_copy_dlls(${_TEST_NAME}_tests) +endif() + # catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ") add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests ${CATCH_EXTRA_ARGS}) diff --git a/tests/sla_print/sla_archive_export_tests.cpp b/tests/sla_print/sla_archive_export_tests.cpp new file mode 100644 index 0000000000..9dbe5bc64f --- /dev/null +++ b/tests/sla_print/sla_archive_export_tests.cpp @@ -0,0 +1,40 @@ +#include +#include + +#include "libslic3r/SLAPrint.hpp" +#include "libslic3r/Format/SLAArchive.hpp" + +#include + +using namespace Slic3r; + +TEST_CASE("Archive export test", "[sla_archives]") { + constexpr const char *PNAME = "20mm_cube"; + + for (auto &archname : SLAArchive::registered_archives()) { + INFO(std::string("Testing archive type: ") + archname); + SLAPrint print; + SLAFullPrintConfig fullcfg; + + auto m = Model::read_from_file(TEST_DATA_DIR PATH_SEPARATOR + std::string(PNAME) + ".obj", nullptr); + + fullcfg.set("sla_archive_format", archname); + fullcfg.set("supports_enable", false); + fullcfg.set("pad_enable", false); + + DynamicPrintConfig cfg; + cfg.apply(fullcfg); + + print.set_status_callback([](const PrintBase::SlicingStatus&) {}); + print.apply(m, cfg); + print.process(); + + ThumbnailsList thumbnails; + auto outputfname = std::string("output.") + SLAArchive::get_extension(archname); + + print.export_print(outputfname, thumbnails, PNAME); + + // Not much can be checked about the archives... + REQUIRE(boost::filesystem::exists(outputfname)); + } +} diff --git a/tests/slic3rutils/CMakeLists.txt b/tests/slic3rutils/CMakeLists.txt index be1b645d70..256e6efd68 100644 --- a/tests/slic3rutils/CMakeLists.txt +++ b/tests/slic3rutils/CMakeLists.txt @@ -15,4 +15,6 @@ if (WIN32) endif() # catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ") -add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests "${CATCH_EXTRA_ARGS} exclude:[NotWorking]") +set(_catch_args "exclude:[NotWorking]") +list(APPEND _catch_args "${CATCH_EXTRA_ARGS}") +add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests ${_catch_args})