Merge branch 'main' into Flashforge-Guider-2s

This commit is contained in:
cochcoder
2024-05-06 18:57:30 +00:00
committed by GitHub
913 changed files with 33856 additions and 14133 deletions

View File

@@ -5,7 +5,7 @@ export ROOT=$(dirname $(readlink -f ${0}))
set -e # exit on first error set -e # exit on first error
function check_available_memory_and_disk() { function check_available_memory_and_disk() {
FREE_MEM_GB=$(free -g -t | grep 'Mem:' | rev | cut -d" " -f1 | rev) FREE_MEM_GB=$(free -g -t | grep 'Mem' | rev | cut -d" " -f1 | rev)
MIN_MEM_GB=10 MIN_MEM_GB=10
FREE_DISK_KB=$(df -k . | tail -1 | awk '{print $4}') FREE_DISK_KB=$(df -k . | tail -1 | awk '{print $4}')
@@ -79,6 +79,11 @@ then
fi fi
DISTRIBUTION=$(awk -F= '/^ID=/ {print $2}' /etc/os-release) DISTRIBUTION=$(awk -F= '/^ID=/ {print $2}' /etc/os-release)
# treat ubuntu as debian
if [ "${DISTRIBUTION}" == "ubuntu" ]
then
DISTRIBUTION="debian"
fi
if [ ! -f ./linux.d/${DISTRIBUTION} ] if [ ! -f ./linux.d/${DISTRIBUTION} ]
then then
echo "Your distribution does not appear to be currently supported by these build scripts" echo "Your distribution does not appear to be currently supported by these build scripts"

View File

@@ -20,6 +20,8 @@ docker run \
--privileged=true \ --privileged=true \
`# Attach tty for running orca slicer with command line things` \ `# Attach tty for running orca slicer with command line things` \
-ti \ -ti \
`# Clean up after yourself` \
--rm \
`# Pass all parameters from this script to the orca slicer ENTRYPOINT binary` \ `# Pass all parameters from this script to the orca slicer ENTRYPOINT binary` \
orcaslicer $* orcaslicer $*

View File

@@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y \
libsoup2.4-dev \ libsoup2.4-dev \
libssl3 \ libssl3 \
libssl-dev \ libssl-dev \
libtool \
libudev-dev \ libudev-dev \
libwayland-dev \ libwayland-dev \
libwebkit2gtk-4.0-dev \ libwebkit2gtk-4.0-dev \
@@ -67,9 +68,8 @@ WORKDIR OrcaSlicer
RUN ./BuildLinux.sh -u RUN ./BuildLinux.sh -u
# Build dependencies in ./deps # Build dependencies in ./deps
RUN ./BuildLinux.sh -d; exit 0 RUN ./BuildLinux.sh -d
RUN apt-get install -y libcgal-dev
# Build slic3r # Build slic3r
RUN ./BuildLinux.sh -s RUN ./BuildLinux.sh -s

2
deps/CMakeLists.txt vendored
View File

@@ -253,6 +253,7 @@ include(JPEG/JPEG.cmake)
include(TIFF/TIFF.cmake) include(TIFF/TIFF.cmake)
include(wxWidgets/wxWidgets.cmake) include(wxWidgets/wxWidgets.cmake)
include(OCCT/OCCT.cmake) include(OCCT/OCCT.cmake)
include(OpenCV/OpenCV.cmake)
include(FREETYPE/FREETYPE.cmake) include(FREETYPE/FREETYPE.cmake)
set(_dep_list set(_dep_list
@@ -264,6 +265,7 @@ set(_dep_list
dep_NLopt dep_NLopt
dep_OpenVDB dep_OpenVDB
dep_OpenCSG dep_OpenCSG
dep_OpenCV
dep_CGAL dep_CGAL
dep_OpenSSL dep_OpenSSL
dep_GLFW dep_GLFW

72
deps/OpenCV/OpenCV.cmake vendored Normal file
View File

@@ -0,0 +1,72 @@
if (MSVC)
set(_use_IPP "-DWITH_IPP=ON")
else ()
set(_use_IPP "-DWITH_IPP=OFF")
endif ()
orcaslicer_add_cmake_project(OpenCV
URL https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz
URL_HASH SHA256=1ec1cba65f9f20fe5a41fda1586e01c70ea0c9a6d7b67c9e13edf0cfe2239277
CMAKE_ARGS
-DBUILD_SHARED_LIBS=0
-DBUILD_PERE_TESTS=OFF
-DBUILD_TESTS=OFF
-DBUILD_opencv_python_tests=OFF
-DBUILD_EXAMPLES=OFF
-DBUILD_JASPER=OFF
-DBUILD_JAVA=OFF
-DBUILD_JPEG=ON
-DBUILD_APPS_LIST=version
-DBUILD_opencv_apps=OFF
-DBUILD_opencv_java=OFF
-DBUILD_OPENEXR=OFF
-DBUILD_PNG=ON
-DBUILD_TBB=OFF
-DBUILD_WEBP=OFF
-DBUILD_ZLIB=OFF
-DWITH_1394=OFF
-DWITH_CUDA=OFF
-DWITH_EIGEN=ON
${_use_IPP}
-DWITH_ITT=OFF
-DWITH_FFMPEG=OFF
-DWITH_GPHOTO2=OFF
-DWITH_GSTREAMER=OFF
-DOPENCV_GAPI_GSTREAMER=OFF
-DWITH_GTK_2_X=OFF
-DWITH_JASPER=OFF
-DWITH_LAPACK=OFF
-DWITH_MATLAB=OFF
-DWITH_MFX=OFF
-DWITH_DIRECTX=OFF
-DWITH_DIRECTML=OFF
-DWITH_OPENCL=OFF
-DWITH_OPENCL_D3D11_NV=OFF
-DWITH_OPENCLAMDBLAS=OFF
-DWITH_OPENCLAMDFFT=OFF
-DWITH_OPENEXR=OFF
-DWITH_OPENJPEG=OFF
-DWITH_QUIRC=OFF
-DWITH_VTK=OFF
-DWITH_WEBP=OFF
-DENABLE_PRECOMPILED_HEADERS=OFF
-DINSTALL_TESTS=OFF
-DINSTALL_C_EXAMPLES=OFF
-DINSTALL_PYTHON_EXAMPLES=OFF
-DOPENCV_GENERATE_SETUPVARS=OFF
-DOPENCV_INSTALL_FFMPEG_DOWNLOAD_SCRIPT=OFF
-DBUILD_opencv_python2=OFF
-DBUILD_opencv_python3=OFF
-DWITH_OPENVINO=OFF
-DWITH_INF_ENGINE=OFF
-DWITH_NGRAPH=OFF
-DBUILD_WITH_STATIC_CRT=OFF#set /MDd /MD
-DBUILD_LIST=core,imgcodecs,imgproc,world
-DBUILD_opencv_highgui=OFF
-DWITH_ADE=OFF
-DBUILD_opencv_world=ON
-DWITH_PROTOBUF=OFF
-DWITH_WIN32UI=OFF
-DHAVE_WIN32UI=FALSE
)

View File

@@ -1,683 +0,0 @@
From f4fef135f0a58ca2916c45cd539923ab096935b6 Mon Sep 17 00:00:00 2001
From: Ocraftyone <Ocraftyone@users.noreply.github.com>
Date: Thu, 30 Nov 2023 03:25:54 -0500
Subject: [PATCH] patch v3.2.1 for OrcaSlicer
---
build/cmake/lib/webview/CMakeLists.txt | 4 +-
include/wx/fontutil.h | 15 +++++++-
include/wx/gdicmn.h | 3 ++
include/wx/generic/grid.h | 4 +-
include/wx/msw/font.h | 2 +-
include/wx/msw/tooltip.h | 4 +-
include/wx/osx/app.h | 2 +-
src/common/combocmn.cpp | 11 +++++-
src/common/datavcmn.cpp | 6 ++-
src/common/dcbufcmn.cpp | 6 +++
src/common/gdicmn.cpp | 14 +++++++
src/common/image.cpp | 6 +--
src/generic/grid.cpp | 50 ++++++++++++++++++++-----
src/msw/bmpcbox.cpp | 9 ++++-
src/msw/font.cpp | 14 +++----
src/msw/menuitem.cpp | 2 +
src/msw/window.cpp | 52 +++++++++++++++++---------
src/osx/cocoa/dataview.mm | 26 +++++++++++--
src/osx/cocoa/settings.mm | 6 +--
src/osx/cocoa/window.mm | 4 ++
20 files changed, 184 insertions(+), 56 deletions(-)
diff --git a/build/cmake/lib/webview/CMakeLists.txt b/build/cmake/lib/webview/CMakeLists.txt
index 085381d785..62146abc04 100644
--- a/build/cmake/lib/webview/CMakeLists.txt
+++ b/build/cmake/lib/webview/CMakeLists.txt
@@ -46,9 +46,9 @@ if(APPLE)
elseif(WXMSW)
if(wxUSE_WEBVIEW_EDGE)
# Update the following variables if updating WebView2 SDK
- set(WEBVIEW2_VERSION "1.0.705.50")
+ set(WEBVIEW2_VERSION "1.0.1418.22")
set(WEBVIEW2_URL "https://www.nuget.org/api/v2/package/Microsoft.Web.WebView2/${WEBVIEW2_VERSION}")
- set(WEBVIEW2_SHA256 "6a34bb553e18cfac7297b4031f3eac2558e439f8d16a45945c22945ac404105d")
+ set(WEBVIEW2_SHA256 "51d2ef56196e2a9d768a6843385bcb9c6baf9ed34b2603ddb074fb4995543a99")
set(WEBVIEW2_DEFAULT_PACKAGE_DIR "${CMAKE_BINARY_DIR}/packages/Microsoft.Web.WebView2.${WEBVIEW2_VERSION}")
diff --git a/include/wx/fontutil.h b/include/wx/fontutil.h
index 30529db8ce..e6a12366d5 100644
--- a/include/wx/fontutil.h
+++ b/include/wx/fontutil.h
@@ -294,7 +294,11 @@ public:
wxFontEncoding GetEncoding() const;
void SetPointSize(int pointsize);
- void SetFractionalPointSize(double pointsize);
+ void SetFractionalPointSize(double pointsize
+#if defined(__WXMSW__)
+ , const wxWindow *window = nullptr
+#endif
+ );
void SetPixelSize(const wxSize& pixelSize);
void SetStyle(wxFontStyle style);
void SetNumericWeight(int weight);
@@ -307,12 +311,19 @@ public:
// Helper used in many ports: use the normal font size if the input is
// negative, as we handle -1 as meaning this for compatibility.
- void SetSizeOrDefault(double size)
+ void SetSizeOrDefault(double size
+#if defined(__WXMSW__)
+ , const wxWindow *window = nullptr
+#endif
+ )
{
SetFractionalPointSize
(
size < 0 ? wxNORMAL_FONT->GetFractionalPointSize()
: size
+#if defined(__WXMSW__)
+ ,window
+#endif
);
}
diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h
index 2f5f8ee99f..39e9317d40 100644
--- a/include/wx/gdicmn.h
+++ b/include/wx/gdicmn.h
@@ -38,6 +38,7 @@ class WXDLLIMPEXP_FWD_CORE wxRegion;
class WXDLLIMPEXP_FWD_BASE wxString;
class WXDLLIMPEXP_FWD_CORE wxIconBundle;
class WXDLLIMPEXP_FWD_CORE wxPoint;
+class WXDLLIMPEXP_FWD_CORE wxWindow;
// ---------------------------------------------------------------------------
// constants
@@ -1106,7 +1107,9 @@ extern int WXDLLIMPEXP_CORE wxDisplayDepth();
// get the display size
extern void WXDLLIMPEXP_CORE wxDisplaySize(int *width, int *height);
+extern void WXDLLIMPEXP_CORE wxDisplaySize(const wxWindow *window, int *width, int *height);
extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySize();
+extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySize(const wxWindow *window);
extern void WXDLLIMPEXP_CORE wxDisplaySizeMM(int *width, int *height);
extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySizeMM();
extern wxSize WXDLLIMPEXP_CORE wxGetDisplayPPI();
diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h
index 1bd58bbf04..903cb81319 100644
--- a/include/wx/generic/grid.h
+++ b/include/wx/generic/grid.h
@@ -3029,9 +3029,11 @@ private:
// Update the width/height of the column/row being drag-resized.
// Should be only called when m_dragRowOrCol != -1, i.e. dragging is
// actually in progress.
+ //BBS: add cursor mode for DoGridDragResize's paremeters
void DoGridDragResize(const wxPoint& position,
const wxGridOperations& oper,
- wxGridWindow* gridWindow);
+ wxGridWindow* gridWindow,
+ CursorMode mode);
// process different clicks on grid cells
void DoGridCellLeftDown(wxMouseEvent& event,
diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h
index 0f9768b44e..094d774918 100644
--- a/include/wx/msw/font.h
+++ b/include/wx/msw/font.h
@@ -23,7 +23,7 @@ public:
// ctors and such
wxFont() { }
- wxFont(const wxFontInfo& info);
+ wxFont(const wxFontInfo& info, const wxWindow *window = nullptr);
wxFont(int size,
wxFontFamily family,
diff --git a/include/wx/msw/tooltip.h b/include/wx/msw/tooltip.h
index 4c3be08cec..96fb378d01 100644
--- a/include/wx/msw/tooltip.h
+++ b/include/wx/msw/tooltip.h
@@ -91,10 +91,10 @@ private:
// the one and only one tooltip control we use - never access it directly
// but use GetToolTipCtrl() which will create it when needed
static WXHWND ms_hwndTT;
-
+public:
// create the tooltip ctrl if it doesn't exist yet and return its HWND
static WXHWND GetToolTipCtrl();
-
+private:
// to be used in wxModule for deleting tooltip ctrl window when exiting mainloop
static void DeleteToolTipCtrl();
diff --git a/include/wx/osx/app.h b/include/wx/osx/app.h
index 317a0ca96f..58014ec1d4 100644
--- a/include/wx/osx/app.h
+++ b/include/wx/osx/app.h
@@ -161,7 +161,7 @@ private:
public:
bool OSXInitWasCalled() { return m_inited; }
- void OSXStoreOpenFiles(const wxArrayString &files ) { m_openFiles = files ; }
+ virtual void OSXStoreOpenFiles(const wxArrayString &files ) { m_openFiles = files ; }
void OSXStorePrintFiles(const wxArrayString &files ) { m_printFiles = files ; }
void OSXStoreOpenURL(const wxString &url ) { m_getURL = url ; }
#endif
diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp
index 80408c6677..aa07caebdc 100644
--- a/src/common/combocmn.cpp
+++ b/src/common/combocmn.cpp
@@ -2061,6 +2061,9 @@ void wxComboCtrlBase::ShowPopup()
SetFocus();
+ //int displayIdx = wxDisplay::GetFromWindow(this);
+ //wxRect displayRect = wxDisplay(displayIdx != wxNOT_FOUND ? displayIdx : 0u).GetGeometry();
+
// Space above and below
int screenHeight;
wxPoint scrPos;
@@ -2183,9 +2186,13 @@ void wxComboCtrlBase::ShowPopup()
int showFlags = CanDeferShow;
- if ( spaceBelow < szp.y )
+ int anchorSideVertical = m_anchorSide & (wxUP | wxDOWN);
+ if (// Pop up as asked for by the library user.
+ (anchorSideVertical & wxUP) ||
+ // Automatic: Pop up if it does not fit down.
+ (anchorSideVertical == 0 && spaceBelow < szp.y ))
{
- popupY = scrPos.y - szp.y;
+ popupY = scrPos.y - szp.y + displayRect.GetTop();
showFlags |= ShowAbove;
}
diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp
index 0a1e43ad51..6c492aedab 100644
--- a/src/common/datavcmn.cpp
+++ b/src/common/datavcmn.cpp
@@ -1334,7 +1334,11 @@ wxDataViewItem wxDataViewCtrlBase::GetSelection() const
wxDataViewItemArray selections;
GetSelections(selections);
- return selections[0];
+ // BBS
+ if (!selections.empty())
+ return selections[0];
+ else
+ return wxDataViewItem(0);
}
namespace
diff --git a/src/common/dcbufcmn.cpp b/src/common/dcbufcmn.cpp
index 9b1c1f3159..ef5865ed4b 100644
--- a/src/common/dcbufcmn.cpp
+++ b/src/common/dcbufcmn.cpp
@@ -83,9 +83,15 @@ private:
const double scale = dc ? dc->GetContentScaleFactor() : 1.0;
wxBitmap* const buffer = new wxBitmap;
+#if __WXMSW__
+ // we must always return a valid bitmap but creating a bitmap of
+ // size 0 would fail, so create a 1*1 bitmap in this case
+ buffer->Create(wxMax(w, 1), wxMax(h, 1), 24);
+#else
// we must always return a valid bitmap but creating a bitmap of
// size 0 would fail, so create a 1*1 bitmap in this case
buffer->CreateWithDIPSize(wxMax(w, 1), wxMax(h, 1), scale);
+#endif
return buffer;
}
diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp
index db8a01f961..162c1ce2dc 100644
--- a/src/common/gdicmn.cpp
+++ b/src/common/gdicmn.cpp
@@ -863,11 +863,25 @@ void wxDisplaySize(int *width, int *height)
*height = size.y;
}
+void wxDisplaySize(const wxWindow *window, int *width, int *height)
+{
+ const wxSize size = wxGetDisplaySize(window);
+ if ( width )
+ *width = size.x;
+ if ( height )
+ *height = size.y;
+}
+
wxSize wxGetDisplaySize()
{
return wxDisplay().GetGeometry().GetSize();
}
+wxSize wxGetDisplaySize(const wxWindow *window)
+{
+ return window ? wxDisplay(window).GetGeometry().GetSize() : wxDisplay().GetGeometry().GetSize();
+}
+
void wxClientDisplayRect(int *x, int *y, int *width, int *height)
{
const wxRect rect = wxGetClientDisplayRect();
diff --git a/src/common/image.cpp b/src/common/image.cpp
index 19fe34ec91..a449b60930 100644
--- a/src/common/image.cpp
+++ b/src/common/image.cpp
@@ -390,11 +390,11 @@ wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
unsigned char red = pixel[0] ;
unsigned char green = pixel[1] ;
unsigned char blue = pixel[2] ;
- unsigned char alpha = 255 ;
- if ( source_alpha )
- alpha = *(source_alpha + y_offset + x * xFactor + x1) ;
if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue )
{
+ unsigned char alpha = 255 ;
+ if ( source_alpha )
+ alpha = *(source_alpha + y_offset + x * xFactor + x1) ;
if ( alpha > 0 )
{
avgRed += red ;
diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp
index ed3d988994..d71cda122d 100644
--- a/src/generic/grid.cpp
+++ b/src/generic/grid.cpp
@@ -4068,7 +4068,8 @@ void wxGrid::ProcessRowColLabelMouseEvent( const wxGridOperations &oper, wxMouse
{
if ( m_cursorMode == oper.GetCursorModeResize() )
{
- DoGridDragResize(event.GetPosition(), oper, gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), oper, gridWindow, m_cursorMode);
}
else if ( m_cursorMode == oper.GetCursorModeSelect() && line >=0 )
{
@@ -4691,12 +4692,14 @@ bool wxGrid::DoGridDragEvent(wxMouseEvent& event,
case WXGRID_CURSOR_RESIZE_ROW:
if ( m_dragRowOrCol != -1 )
- DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow, WXGRID_CURSOR_RESIZE_ROW);
break;
case WXGRID_CURSOR_RESIZE_COL:
if ( m_dragRowOrCol != -1 )
- DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow, WXGRID_CURSOR_RESIZE_COL);
break;
default:
@@ -4791,6 +4794,8 @@ wxGrid::DoGridCellLeftDown(wxMouseEvent& event,
case wxGridSelectCells:
case wxGridSelectRowsOrColumns:
// nothing to do in these cases
+ //BBS: select this cell when first click
+ m_selection->SelectBlock(coords.GetRow(), coords.GetCol(), coords.GetRow(), coords.GetCol(), event);
break;
case wxGridSelectRows:
@@ -5049,9 +5054,11 @@ void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent& event, wxGridWindow *eventG
}
}
+//BBS: add cursor mode for DoGridDragResize's paremeters
void wxGrid::DoGridDragResize(const wxPoint& position,
const wxGridOperations& oper,
- wxGridWindow* gridWindow)
+ wxGridWindow* gridWindow,
+ CursorMode mode)
{
wxCHECK_RET( m_dragRowOrCol != -1,
"shouldn't be called when not drag resizing" );
@@ -5064,10 +5071,28 @@ void wxGrid::DoGridDragResize(const wxPoint& position,
// orthogonal direction.
const int linePos = oper.Dual().Select(logicalPos);
- const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol);
- oper.SetLineSize(this, m_dragRowOrCol,
+ //BBS: add logic for resize multiplexed cols
+ if (mode == WXGRID_CURSOR_RESIZE_COL) {
+ int col_to_resize = m_dragRowOrCol;
+ int num_rows, num_cols;
+ this->GetCellSize(0, m_dragRowOrCol, &num_rows, &num_cols);
+ if (num_cols < 1)
+ col_to_resize = m_dragRowOrCol - 1;
+
+ const int lineEnd = oper.GetLineEndPos(this, m_dragRowOrCol);
+ const int lineSize = oper.GetLineSize(this, col_to_resize);
+ int size = linePos - lineEnd + lineSize;
+ oper.SetLineSize(this, col_to_resize,
+ wxMax(size,
+ oper.GetMinimalLineSize(this, col_to_resize)));
+ }
+ else {
+ const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol);
+
+ oper.SetLineSize(this, m_dragRowOrCol,
wxMax(linePos - lineStart,
oper.GetMinimalLineSize(this, m_dragRowOrCol)));
+ }
// TODO: generate RESIZING event, see #10754, if the size has changed.
}
@@ -5090,7 +5115,8 @@ wxPoint wxGrid::GetPositionForResizeEvent(int width) const
void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow, WXGRID_CURSOR_RESIZE_ROW);
SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, event);
@@ -5099,7 +5125,8 @@ void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow* gridWin
void wxGrid::DoEndDragResizeCol(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow, WXGRID_CURSOR_RESIZE_COL);
SendGridSizeEvent(wxEVT_GRID_COL_SIZE, m_dragRowOrCol, event);
@@ -5113,9 +5140,10 @@ void wxGrid::DoHeaderStartDragResizeCol(int col)
void wxGrid::DoHeaderDragResizeCol(int width)
{
+ //BBS: add cursor mode for DoGridDragResize's paremeters
DoGridDragResize(GetPositionForResizeEvent(width),
wxGridColumnOperations(),
- m_gridWin);
+ m_gridWin, WXGRID_CURSOR_RESIZE_COL);
}
void wxGrid::DoHeaderEndDragResizeCol(int width)
@@ -6013,6 +6041,10 @@ void wxGrid::OnKeyDown( wxKeyEvent& event )
DisableCellEditControl();
MoveCursorDown( event.ShiftDown() );
+ //BBS: select this cell when first click
+ m_selection->SelectBlock(m_currentCellCoords.GetRow(), m_currentCellCoords.GetCol(),
+ m_currentCellCoords.GetRow(), m_currentCellCoords.GetCol(),
+ event);
}
break;
diff --git a/src/msw/bmpcbox.cpp b/src/msw/bmpcbox.cpp
index 011bd4f534..17e7f18740 100644
--- a/src/msw/bmpcbox.cpp
+++ b/src/msw/bmpcbox.cpp
@@ -156,13 +156,20 @@ void wxBitmapComboBox::RecreateControl()
wxComboBox::DoClear();
- HWND hwnd = GetHwnd();
+ WNDPROC wndproc_edit = nullptr;
+ WinStruct<COMBOBOXINFO> combobox_info;
+ HWND hwnd = GetHwnd();
+if (::GetComboBoxInfo(hwnd, &combobox_info))
+ wndproc_edit = (WNDPROC)wxGetWindowProc(combobox_info.hwndItem);
DissociateHandle();
::DestroyWindow(hwnd);
if ( !MSWCreateControl(wxT("COMBOBOX"), wxEmptyString, pos, size) )
return;
+if (::GetComboBoxInfo(GetHwnd(), &combobox_info))
+ wxSetWindowProc(combobox_info.hwndItem, wndproc_edit);
+
// initialize the controls contents
for ( i = 0; i < numItems; i++ )
{
diff --git a/src/msw/font.cpp b/src/msw/font.cpp
index 434876939c..91d4603018 100644
--- a/src/msw/font.cpp
+++ b/src/msw/font.cpp
@@ -54,7 +54,7 @@ static const int PITCH_MASK = FIXED_PITCH | VARIABLE_PITCH;
class WXDLLEXPORT wxFontRefData: public wxGDIRefData
{
public:
- wxFontRefData(const wxFontInfo& info = wxFontInfo());
+ wxFontRefData(const wxFontInfo& info = wxFontInfo(), const wxWindow* window = nullptr);
wxFontRefData(const wxNativeFontInfo& info, WXHFONT hFont = 0)
{
@@ -324,7 +324,7 @@ protected:
// wxFontRefData
// ----------------------------------------------------------------------------
-wxFontRefData::wxFontRefData(const wxFontInfo& info)
+wxFontRefData::wxFontRefData(const wxFontInfo& info, const wxWindow *window)
{
m_hFont = NULL;
@@ -335,7 +335,7 @@ wxFontRefData::wxFontRefData(const wxFontInfo& info)
}
else
{
- m_nativeFontInfo.SetSizeOrDefault(info.GetFractionalPointSize());
+ m_nativeFontInfo.SetSizeOrDefault(info.GetFractionalPointSize(), window);
}
SetStyle(info.GetStyle());
@@ -518,12 +518,12 @@ wxFontEncoding wxNativeFontInfo::GetEncoding() const
return wxGetFontEncFromCharSet(lf.lfCharSet);
}
-void wxNativeFontInfo::SetFractionalPointSize(double pointSizeNew)
+void wxNativeFontInfo::SetFractionalPointSize(double pointSizeNew, const wxWindow *window)
{
// We don't have the correct DPI to use here, so use that of the
// primary screen and rely on WXAdjustToPPI() changing it later if
// necessary.
- const int ppi = ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY);
+ const int ppi = window ? window->GetDPI().GetY() : ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY);
lf.lfHeight = GetLogFontHeightAtPPI(pointSizeNew, ppi);
pointSize = pointSizeNew;
@@ -812,9 +812,9 @@ wxFont::wxFont(const wxString& fontdesc)
(void)Create(info);
}
-wxFont::wxFont(const wxFontInfo& info)
+wxFont::wxFont(const wxFontInfo& info, const wxWindow *window)
{
- m_refData = new wxFontRefData(info);
+ m_refData = new wxFontRefData(info, window);
}
bool wxFont::Create(const wxNativeFontInfo& info, WXHFONT hFont)
diff --git a/src/msw/menuitem.cpp b/src/msw/menuitem.cpp
index 0bd017a36a..3b98bf1678 100644
--- a/src/msw/menuitem.cpp
+++ b/src/msw/menuitem.cpp
@@ -368,6 +368,8 @@ void MenuDrawData::Init(wxWindow const* window)
// native menu uses small top margin for separator
if ( SeparatorMargin.cyTopHeight >= 2 )
SeparatorMargin.cyTopHeight -= 2;
+
+ SeparatorSize.cy = 0;
}
else
#endif // wxUSE_UXTHEME
diff --git a/src/msw/window.cpp b/src/msw/window.cpp
index c529a4fa3b..7e547c64df 100644
--- a/src/msw/window.cpp
+++ b/src/msw/window.cpp
@@ -4809,33 +4809,49 @@ static wxSize GetWindowDPI(HWND hwnd)
}
/*extern*/
-int wxGetSystemMetrics(int nIndex, const wxWindow* window)
+int wxGetSystemMetrics(int nIndex, const wxWindow* win)
{
#if wxUSE_DYNLIB_CLASS
- if ( !window )
- window = wxApp::GetMainTopWindow();
+ const wxWindow* window = (!win && wxTheApp) ? wxTheApp->GetTopWindow() : win;
- if ( window )
+ if (window)
{
- typedef int (WINAPI * GetSystemMetricsForDpi_t)(int nIndex, UINT dpi);
- static GetSystemMetricsForDpi_t s_pfnGetSystemMetricsForDpi = NULL;
- static bool s_initDone = false;
-
- if ( !s_initDone )
- {
- wxLoadedDLL dllUser32("user32.dll");
- wxDL_INIT_FUNC(s_pfn, GetSystemMetricsForDpi, dllUser32);
- s_initDone = true;
+#if 1
+ if (window->GetHWND() && (nIndex == SM_CXSCREEN || nIndex == SM_CYSCREEN)) {
+ HDC hdc = GetDC(window->GetHWND());
+#if 0
+ double dim = GetDeviceCaps(hdc, nIndex == SM_CXSCREEN ? HORZRES : VERTRES);
+ ReleaseDC(window->GetHWND(), hdc);
+ wxSize dpi = window->GetDPI();
+ dim *= 96.0 / (nIndex == SM_CXSCREEN ? dpi.x : dpi.y);
+ return int(dim + 0.5);
+#else
+ return int(GetDeviceCaps(hdc, nIndex == SM_CXSCREEN ? HORZRES : VERTRES));
+#endif
}
-
- if ( s_pfnGetSystemMetricsForDpi )
+ else
+#endif
{
- const int dpi = window->GetDPI().y;
- return s_pfnGetSystemMetricsForDpi(nIndex, (UINT)dpi);
+ typedef int (WINAPI * GetSystemMetricsForDpi_t)(int nIndex, UINT dpi);
+ static GetSystemMetricsForDpi_t s_pfnGetSystemMetricsForDpi = NULL;
+ static bool s_initDone = false;
+
+ if ( !s_initDone )
+ {
+ wxLoadedDLL dllUser32("user32.dll");
+ wxDL_INIT_FUNC(s_pfn, GetSystemMetricsForDpi, dllUser32);
+ s_initDone = true;
+ }
+
+ if ( s_pfnGetSystemMetricsForDpi )
+ {
+ const int dpi = window->GetDPI().y;
+ return s_pfnGetSystemMetricsForDpi(nIndex, (UINT)dpi);
+ }
}
}
#else
- wxUnusedVar(window);
+ wxUnusedVar(win);
#endif // wxUSE_DYNLIB_CLASS
return ::GetSystemMetrics(nIndex);
diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm
index f188e61089..7b867002d1 100644
--- a/src/osx/cocoa/dataview.mm
+++ b/src/osx/cocoa/dataview.mm
@@ -1604,6 +1604,15 @@ outlineView:(NSOutlineView*)outlineView
}
}
+//FIXME Vojtech: This is a workaround to get at least the "mouse move" events at the wxDataViewControl,
+// so we can show the tooltips. The "mouse move" events are being send only if the wxDataViewControl
+// has focus, which is a limitation of wxWidgets. We may grab focus on "mouse entry" though.
+- (void)mouseMoved:(NSEvent *)event
+{
+if (! implementation->DoHandleMouseEvent(event))
+ [super mouseMoved:event];
+}
+
//
// contextual menus
//
@@ -2006,7 +2015,8 @@ void wxCocoaDataViewControl::keyEvent(WX_NSEvent event, WXWidget slf, void *_cmd
if ( !dvc->GetEventHandler()->ProcessEvent(eventDV) )
wxWidgetCocoaImpl::keyEvent(event, slf, _cmd);
}
- else
+ //FIXME Vojtech's hack to get the accelerators assigned to the wxDataViewControl working.
+ else if (! DoHandleKeyEvent(event))
{
wxWidgetCocoaImpl::keyEvent(event, slf, _cmd); // all other keys
}
@@ -2540,12 +2550,22 @@ void wxCocoaDataViewControl::DoSetIndent(int indent)
void wxCocoaDataViewControl::HitTest(const wxPoint& point, wxDataViewItem& item, wxDataViewColumn*& columnPtr) const
{
- NSPoint const nativePoint = wxToNSPoint((NSScrollView*) GetWXWidget(),point);
+ NSTableHeaderView *headerView = [m_OutlineView headerView];
+ if (headerView && point.y < headerView.visibleRect.size.height) {
+ // The point is inside the header area.
+ columnPtr = NULL;
+ item = wxDataViewItem();
+ return;
+ }
+ // Convert from the window coordinates to the virtual scrolled view coordinates.
+ NSScrollView *scrollView = [m_OutlineView enclosingScrollView];
+ const NSRect &visibleRect = scrollView.contentView.visibleRect;
+ NSPoint const nativePoint = wxToNSPoint((NSScrollView*) GetWXWidget(),
+ wxPoint(point.x + visibleRect.origin.x, point.y + visibleRect.origin.y));
int indexColumn;
int indexRow;
-
indexColumn = [m_OutlineView columnAtPoint:nativePoint];
indexRow = [m_OutlineView rowAtPoint: nativePoint];
if ((indexColumn >= 0) && (indexRow >= 0))
diff --git a/src/osx/cocoa/settings.mm b/src/osx/cocoa/settings.mm
index c819deeb0c..dc3c3b0b53 100644
--- a/src/osx/cocoa/settings.mm
+++ b/src/osx/cocoa/settings.mm
@@ -222,7 +222,7 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
// ----------------------------------------------------------------------------
// Get a system metric, e.g. scrollbar size
-int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* WXUNUSED(win))
+int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* win)
{
int value;
@@ -257,11 +257,11 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* WXUN
// TODO case wxSYS_WINDOWMIN_Y:
case wxSYS_SCREEN_X:
- wxDisplaySize(&value, NULL);
+ wxDisplaySize(win, &value, NULL);
return value;
case wxSYS_SCREEN_Y:
- wxDisplaySize(NULL, &value);
+ wxDisplaySize(win, NULL, &value);
return value;
// TODO case wxSYS_FRAMESIZE_X:
diff --git a/src/osx/cocoa/window.mm b/src/osx/cocoa/window.mm
index 635ea286d4..42ae67e27a 100644
--- a/src/osx/cocoa/window.mm
+++ b/src/osx/cocoa/window.mm
@@ -191,6 +191,9 @@ NSRect wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const
- (BOOL)isEnabled;
- (void)setEnabled:(BOOL)flag;
+- (BOOL)clipsToBounds;
+- (void)setClipsToBounds:(BOOL)clipsToBounds;
+
- (void)setImage:(NSImage *)image;
- (void)setControlSize:(NSControlSize)size;
@@ -2559,6 +2562,7 @@ wxWidgetImpl( peer, flags )
if ( m_osxView )
CFRetain(m_osxView);
[m_osxView release];
+ m_osxView.clipsToBounds = YES;
}
--
2.42.0.windows.2

View File

@@ -1,743 +0,0 @@
From 5e82980ed1762338794d06b3f9f22fa10e050622 Mon Sep 17 00:00:00 2001
From: SoftFever <softfeverever@gmail.com>
Date: Sat, 23 Dec 2023 20:08:41 +0800
Subject: [PATCH] wx 3.1.5 patch for Orca
---
build/cmake/init.cmake | 4 ++
build/cmake/lib/webview/CMakeLists.txt | 4 +-
include/wx/fontutil.h | 15 +++++++-
include/wx/gdicmn.h | 3 ++
include/wx/generic/grid.h | 4 +-
include/wx/msw/font.h | 2 +-
include/wx/msw/tooltip.h | 4 +-
include/wx/osx/app.h | 2 +-
src/common/combocmn.cpp | 13 +++++--
src/common/datavcmn.cpp | 6 ++-
src/common/dcbufcmn.cpp | 8 +++-
src/common/gdicmn.cpp | 14 +++++++
src/common/image.cpp | 6 +--
src/common/intl.cpp | 7 ++++
src/generic/grid.cpp | 53 +++++++++++++++++++++-----
src/msw/bmpcbox.cpp | 9 ++++-
src/msw/font.cpp | 14 +++----
src/msw/menuitem.cpp | 2 +
src/msw/window.cpp | 52 ++++++++++++++++---------
src/osx/cocoa/dataview.mm | 26 +++++++++++--
src/osx/cocoa/settings.mm | 6 +--
src/osx/cocoa/window.mm | 4 ++
22 files changed, 199 insertions(+), 59 deletions(-)
diff --git a/build/cmake/init.cmake b/build/cmake/init.cmake
index 0bc4f934b9..479431a69c 100644
--- a/build/cmake/init.cmake
+++ b/build/cmake/init.cmake
@@ -413,7 +413,11 @@ if(wxUSE_GUI)
else()
find_package(OpenGL)
if(WXGTK3 AND OpenGL_EGL_FOUND AND wxUSE_GLCANVAS_EGL)
+ if(UNIX AND NOT APPLE)
+ set(OPENGL_LIBRARIES OpenGL EGL)
+ else()
set(OPENGL_LIBRARIES OpenGL::OpenGL OpenGL::EGL)
+ endif()
find_package(WAYLANDEGL)
if(WAYLANDEGL_FOUND AND wxHAVE_GDK_WAYLAND)
list(APPEND OPENGL_LIBRARIES ${WAYLANDEGL_LIBRARIES})
diff --git a/build/cmake/lib/webview/CMakeLists.txt b/build/cmake/lib/webview/CMakeLists.txt
index cc3298ff33..aa103ae474 100644
--- a/build/cmake/lib/webview/CMakeLists.txt
+++ b/build/cmake/lib/webview/CMakeLists.txt
@@ -56,9 +56,9 @@ if(APPLE)
elseif(WXMSW)
if(wxUSE_WEBVIEW_EDGE)
# Update the following variables if updating WebView2 SDK
- set(WEBVIEW2_VERSION "1.0.705.50")
+ set(WEBVIEW2_VERSION "1.0.1418.22")
set(WEBVIEW2_URL "https://www.nuget.org/api/v2/package/Microsoft.Web.WebView2/${WEBVIEW2_VERSION}")
- set(WEBVIEW2_SHA256 "6a34bb553e18cfac7297b4031f3eac2558e439f8d16a45945c22945ac404105d")
+ set(WEBVIEW2_SHA256 "51d2ef56196e2a9d768a6843385bcb9c6baf9ed34b2603ddb074fb4995543a99")
set(WEBVIEW2_DEFAULT_PACKAGE_DIR "${CMAKE_BINARY_DIR}/packages/Microsoft.Web.WebView2.${WEBVIEW2_VERSION}")
diff --git a/include/wx/fontutil.h b/include/wx/fontutil.h
index 09ad8c8ef3..c228e167d7 100644
--- a/include/wx/fontutil.h
+++ b/include/wx/fontutil.h
@@ -294,7 +294,11 @@ public:
wxFontEncoding GetEncoding() const;
void SetPointSize(int pointsize);
- void SetFractionalPointSize(double pointsize);
+ void SetFractionalPointSize(double pointsize
+#if defined(__WXMSW__)
+ , const wxWindow *window = nullptr
+#endif
+ );
void SetPixelSize(const wxSize& pixelSize);
void SetStyle(wxFontStyle style);
void SetNumericWeight(int weight);
@@ -307,12 +311,19 @@ public:
// Helper used in many ports: use the normal font size if the input is
// negative, as we handle -1 as meaning this for compatibility.
- void SetSizeOrDefault(double size)
+ void SetSizeOrDefault(double size
+#if defined(__WXMSW__)
+ , const wxWindow *window = nullptr
+#endif
+ )
{
SetFractionalPointSize
(
size < 0 ? wxNORMAL_FONT->GetFractionalPointSize()
: size
+#if defined(__WXMSW__)
+ ,window
+#endif
);
}
diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h
index e29a77627c..dc48cf9451 100644
--- a/include/wx/gdicmn.h
+++ b/include/wx/gdicmn.h
@@ -38,6 +38,7 @@ class WXDLLIMPEXP_FWD_CORE wxRegion;
class WXDLLIMPEXP_FWD_BASE wxString;
class WXDLLIMPEXP_FWD_CORE wxIconBundle;
class WXDLLIMPEXP_FWD_CORE wxPoint;
+class WXDLLIMPEXP_FWD_CORE wxWindow;
// ---------------------------------------------------------------------------
// constants
@@ -1092,7 +1093,9 @@ extern int WXDLLIMPEXP_CORE wxDisplayDepth();
// get the display size
extern void WXDLLIMPEXP_CORE wxDisplaySize(int *width, int *height);
+extern void WXDLLIMPEXP_CORE wxDisplaySize(const wxWindow *window, int *width, int *height);
extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySize();
+extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySize(const wxWindow *window);
extern void WXDLLIMPEXP_CORE wxDisplaySizeMM(int *width, int *height);
extern wxSize WXDLLIMPEXP_CORE wxGetDisplaySizeMM();
extern wxSize WXDLLIMPEXP_CORE wxGetDisplayPPI();
diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h
index d7a3890764..e4dee51d5a 100644
--- a/include/wx/generic/grid.h
+++ b/include/wx/generic/grid.h
@@ -2951,9 +2951,11 @@ private:
wxGridWindow* gridWindow);
// Update the width/height of the column/row being drag-resized.
+ //BBS: add cursor mode for DoGridDragResize's paremeters
void DoGridDragResize(const wxPoint& position,
const wxGridOperations& oper,
- wxGridWindow* gridWindow);
+ wxGridWindow* gridWindow,
+ CursorMode mode);
// process different clicks on grid cells
void DoGridCellLeftDown(wxMouseEvent& event,
diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h
index 0f9768b44e..094d774918 100644
--- a/include/wx/msw/font.h
+++ b/include/wx/msw/font.h
@@ -23,7 +23,7 @@ public:
// ctors and such
wxFont() { }
- wxFont(const wxFontInfo& info);
+ wxFont(const wxFontInfo& info, const wxWindow *window = nullptr);
wxFont(int size,
wxFontFamily family,
diff --git a/include/wx/msw/tooltip.h b/include/wx/msw/tooltip.h
index 4c3be08cec..96fb378d01 100644
--- a/include/wx/msw/tooltip.h
+++ b/include/wx/msw/tooltip.h
@@ -91,10 +91,10 @@ private:
// the one and only one tooltip control we use - never access it directly
// but use GetToolTipCtrl() which will create it when needed
static WXHWND ms_hwndTT;
-
+public:
// create the tooltip ctrl if it doesn't exist yet and return its HWND
static WXHWND GetToolTipCtrl();
-
+private:
// to be used in wxModule for deleting tooltip ctrl window when exiting mainloop
static void DeleteToolTipCtrl();
diff --git a/include/wx/osx/app.h b/include/wx/osx/app.h
index 317a0ca96f..58014ec1d4 100644
--- a/include/wx/osx/app.h
+++ b/include/wx/osx/app.h
@@ -161,7 +161,7 @@ private:
public:
bool OSXInitWasCalled() { return m_inited; }
- void OSXStoreOpenFiles(const wxArrayString &files ) { m_openFiles = files ; }
+ virtual void OSXStoreOpenFiles(const wxArrayString &files ) { m_openFiles = files ; }
void OSXStorePrintFiles(const wxArrayString &files ) { m_printFiles = files ; }
void OSXStoreOpenURL(const wxString &url ) { m_getURL = url ; }
#endif
diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp
index b61aac35bf..7cfc97d2f8 100644
--- a/src/common/combocmn.cpp
+++ b/src/common/combocmn.cpp
@@ -2141,7 +2141,7 @@ void wxComboCtrlBase::CreatePopup()
#if !USES_GENERICTLW
m_winPopup = new wxComboPopupWindowBase2( this, wxNO_BORDER );
#else
- int tlwFlags = wxNO_BORDER;
+ int tlwFlags = wxNO_BORDER | wxSTAY_ON_TOP;
#ifdef wxCC_GENERIC_TLW_IS_FRAME
tlwFlags |= wxFRAME_NO_TASKBAR;
#endif
@@ -2285,6 +2285,9 @@ void wxComboCtrlBase::ShowPopup()
SetFocus();
+ //int displayIdx = wxDisplay::GetFromWindow(this);
+ //wxRect displayRect = wxDisplay(displayIdx != wxNOT_FOUND ? displayIdx : 0u).GetGeometry();
+
// Space above and below
int screenHeight;
wxPoint scrPos;
@@ -2407,9 +2410,13 @@ void wxComboCtrlBase::ShowPopup()
int showFlags = CanDeferShow;
- if ( spaceBelow < szp.y )
+ int anchorSideVertical = m_anchorSide & (wxUP | wxDOWN);
+ if (// Pop up as asked for by the library user.
+ (anchorSideVertical & wxUP) ||
+ // Automatic: Pop up if it does not fit down.
+ (anchorSideVertical == 0 && spaceBelow < szp.y ))
{
- popupY = scrPos.y - szp.y;
+ popupY = scrPos.y - szp.y + displayRect.GetTop();
showFlags |= ShowAbove;
}
diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp
index 1f5fd4d66b..14ea2f8ef1 100644
--- a/src/common/datavcmn.cpp
+++ b/src/common/datavcmn.cpp
@@ -1322,7 +1322,11 @@ wxDataViewItem wxDataViewCtrlBase::GetSelection() const
wxDataViewItemArray selections;
GetSelections(selections);
- return selections[0];
+ // BBS
+ if (!selections.empty())
+ return selections[0];
+ else
+ return wxDataViewItem(0);
}
namespace
diff --git a/src/common/dcbufcmn.cpp b/src/common/dcbufcmn.cpp
index 74958fce10..59844f4526 100644
--- a/src/common/dcbufcmn.cpp
+++ b/src/common/dcbufcmn.cpp
@@ -82,9 +82,15 @@ private:
const double scale = dc ? dc->GetContentScaleFactor() : 1.0;
wxBitmap* const buffer = new wxBitmap;
+#if __WXMSW__
// we must always return a valid bitmap but creating a bitmap of
// size 0 would fail, so create a 1*1 bitmap in this case
- buffer->CreateScaled(wxMax(w, 1), wxMax(h, 1), -1, scale);
+ buffer->Create(wxMax(w, 1), wxMax(h, 1), 24);
+#else
+ // we must always return a valid bitmap but creating a bitmap of
+ // size 0 would fail, so create a 1*1 bitmap in this case
+ buffer->CreateScaled(wxMax(w, 1), wxMax(h, 1), -1, scale);
+#endif
return buffer;
}
diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp
index 20442bbc73..bc2c35bee6 100644
--- a/src/common/gdicmn.cpp
+++ b/src/common/gdicmn.cpp
@@ -863,11 +863,25 @@ void wxDisplaySize(int *width, int *height)
*height = size.y;
}
+void wxDisplaySize(const wxWindow *window, int *width, int *height)
+{
+ const wxSize size = wxGetDisplaySize(window);
+ if ( width )
+ *width = size.x;
+ if ( height )
+ *height = size.y;
+}
+
wxSize wxGetDisplaySize()
{
return wxDisplay().GetGeometry().GetSize();
}
+wxSize wxGetDisplaySize(const wxWindow *window)
+{
+ return window ? wxDisplay(window).GetGeometry().GetSize() : wxDisplay().GetGeometry().GetSize();
+}
+
void wxClientDisplayRect(int *x, int *y, int *width, int *height)
{
const wxRect rect = wxGetClientDisplayRect();
diff --git a/src/common/image.cpp b/src/common/image.cpp
index 78fe5b82a3..46db8722ce 100644
--- a/src/common/image.cpp
+++ b/src/common/image.cpp
@@ -383,11 +383,11 @@ wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
unsigned char red = pixel[0] ;
unsigned char green = pixel[1] ;
unsigned char blue = pixel[2] ;
- unsigned char alpha = 255 ;
- if ( source_alpha )
- alpha = *(source_alpha + y_offset + x * xFactor + x1) ;
if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue )
{
+ unsigned char alpha = 255 ;
+ if ( source_alpha )
+ alpha = *(source_alpha + y_offset + x * xFactor + x1) ;
if ( alpha > 0 )
{
avgRed += red ;
diff --git a/src/common/intl.cpp b/src/common/intl.cpp
index 0b0d8798f4..294f542b1f 100644
--- a/src/common/intl.cpp
+++ b/src/common/intl.cpp
@@ -1628,6 +1628,12 @@ GetInfoFromLCID(LCID lcid,
{
str = buf;
+//FIXME Vojtech: We forcefully set the locales for a decimal point to "C", but this
+// is not possible for the Win32 locales, therefore there is a discrepancy.
+// It looks like we live with the discrepancy for at least half a year, so we will
+// suppress the assert until we fix Slic3r to properly switch to "C" locales just
+// for file import / export.
+#if 0
// As we get our decimal point separator from Win32 and not the
// CRT there is a possibility of mismatch between them and this
// can easily happen if the user code called setlocale()
@@ -1641,6 +1647,7 @@ GetInfoFromLCID(LCID lcid,
"Decimal separator mismatch -- did you use setlocale()?"
"If so, use wxLocale to change the locale instead."
);
+#endif
}
break;
diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp
index 41fd4524cf..f4a15cb839 100644
--- a/src/generic/grid.cpp
+++ b/src/generic/grid.cpp
@@ -3824,7 +3824,8 @@ void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event, wxGridRowLabelWindo
{
case WXGRID_CURSOR_RESIZE_ROW:
{
- DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow, WXGRID_CURSOR_RESIZE_ROW);
}
break;
@@ -4166,7 +4167,8 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
switch ( m_cursorMode )
{
case WXGRID_CURSOR_RESIZE_COL:
- DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow, WXGRID_CURSOR_RESIZE_COL);
break;
case WXGRID_CURSOR_SELECT_COL:
@@ -4708,11 +4710,13 @@ bool wxGrid::DoGridDragEvent(wxMouseEvent& event,
return DoGridCellDrag(event, coords, isFirstDrag);
case WXGRID_CURSOR_RESIZE_ROW:
- DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow, WXGRID_CURSOR_RESIZE_ROW);
break;
case WXGRID_CURSOR_RESIZE_COL:
- DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow, WXGRID_CURSOR_RESIZE_COL);
break;
default:
@@ -4803,6 +4807,8 @@ wxGrid::DoGridCellLeftDown(wxMouseEvent& event,
case wxGridSelectCells:
case wxGridSelectRowsOrColumns:
// nothing to do in these cases
+ //BBS: select this cell when first click
+ m_selection->SelectBlock(coords.GetRow(), coords.GetCol(), coords.GetRow(), coords.GetCol(), event);
break;
case wxGridSelectRows:
@@ -5044,9 +5050,11 @@ void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent& event, wxGridWindow *eventG
}
}
+//BBS: add cursor mode for DoGridDragResize's paremeters
void wxGrid::DoGridDragResize(const wxPoint& position,
const wxGridOperations& oper,
- wxGridWindow* gridWindow)
+ wxGridWindow* gridWindow,
+ CursorMode mode)
{
// Get the logical position from the physical one we're passed.
const wxPoint
@@ -5056,10 +5064,28 @@ void wxGrid::DoGridDragResize(const wxPoint& position,
// orthogonal direction.
const int linePos = oper.Dual().Select(logicalPos);
- const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol);
- oper.SetLineSize(this, m_dragRowOrCol,
+ //BBS: add logic for resize multiplexed cols
+ if (mode == WXGRID_CURSOR_RESIZE_COL) {
+ int col_to_resize = m_dragRowOrCol;
+ int num_rows, num_cols;
+ this->GetCellSize(0, m_dragRowOrCol, &num_rows, &num_cols);
+ if (num_cols < 1)
+ col_to_resize = m_dragRowOrCol - 1;
+
+ const int lineEnd = oper.GetLineEndPos(this, m_dragRowOrCol);
+ const int lineSize = oper.GetLineSize(this, col_to_resize);
+ int size = linePos - lineEnd + lineSize;
+ oper.SetLineSize(this, col_to_resize,
+ wxMax(size,
+ oper.GetMinimalLineSize(this, col_to_resize)));
+ }
+ else {
+ const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol);
+
+ oper.SetLineSize(this, m_dragRowOrCol,
wxMax(linePos - lineStart,
oper.GetMinimalLineSize(this, m_dragRowOrCol)));
+ }
// TODO: generate RESIZING event, see #10754, if the size has changed.
}
@@ -5082,7 +5108,8 @@ wxPoint wxGrid::GetPositionForResizeEvent(int width) const
void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow, WXGRID_CURSOR_RESIZE_ROW);
SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event);
@@ -5091,7 +5118,8 @@ void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow* gridWin
void wxGrid::DoEndDragResizeCol(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ //BBS: add cursor mode for DoGridDragResize's paremeters
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow, WXGRID_CURSOR_RESIZE_COL);
SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event);
@@ -5105,9 +5133,10 @@ void wxGrid::DoHeaderStartDragResizeCol(int col)
void wxGrid::DoHeaderDragResizeCol(int width)
{
+ //BBS: add cursor mode for DoGridDragResize's paremeters
DoGridDragResize(GetPositionForResizeEvent(width),
wxGridColumnOperations(),
- m_gridWin);
+ m_gridWin, WXGRID_CURSOR_RESIZE_COL);
}
void wxGrid::DoHeaderEndDragResizeCol(int width)
@@ -5891,6 +5920,10 @@ void wxGrid::OnKeyDown( wxKeyEvent& event )
DisableCellEditControl();
MoveCursorDown( event.ShiftDown() );
+ //BBS: select this cell when first click
+ m_selection->SelectBlock(m_currentCellCoords.GetRow(), m_currentCellCoords.GetCol(),
+ m_currentCellCoords.GetRow(), m_currentCellCoords.GetCol(),
+ event);
}
break;
diff --git a/src/msw/bmpcbox.cpp b/src/msw/bmpcbox.cpp
index 0a2d167ad7..0aeba45ea9 100644
--- a/src/msw/bmpcbox.cpp
+++ b/src/msw/bmpcbox.cpp
@@ -156,13 +156,20 @@ void wxBitmapComboBox::RecreateControl()
wxComboBox::DoClear();
- HWND hwnd = GetHwnd();
+ WNDPROC wndproc_edit = nullptr;
+ WinStruct<COMBOBOXINFO> combobox_info;
+ HWND hwnd = GetHwnd();
+if (::GetComboBoxInfo(hwnd, &combobox_info))
+ wndproc_edit = (WNDPROC)wxGetWindowProc(combobox_info.hwndItem);
DissociateHandle();
::DestroyWindow(hwnd);
if ( !MSWCreateControl(wxT("COMBOBOX"), wxEmptyString, pos, size) )
return;
+if (::GetComboBoxInfo(GetHwnd(), &combobox_info))
+ wxSetWindowProc(combobox_info.hwndItem, wndproc_edit);
+
// initialize the controls contents
for ( i = 0; i < numItems; i++ )
{
diff --git a/src/msw/font.cpp b/src/msw/font.cpp
index 0bd240d79f..d38b1b00f5 100644
--- a/src/msw/font.cpp
+++ b/src/msw/font.cpp
@@ -54,7 +54,7 @@ static const int PITCH_MASK = FIXED_PITCH | VARIABLE_PITCH;
class WXDLLEXPORT wxFontRefData: public wxGDIRefData
{
public:
- wxFontRefData(const wxFontInfo& info = wxFontInfo());
+ wxFontRefData(const wxFontInfo& info = wxFontInfo(), const wxWindow* window = nullptr);
wxFontRefData(const wxNativeFontInfo& info, WXHFONT hFont = 0)
{
@@ -324,7 +324,7 @@ protected:
// wxFontRefData
// ----------------------------------------------------------------------------
-wxFontRefData::wxFontRefData(const wxFontInfo& info)
+wxFontRefData::wxFontRefData(const wxFontInfo& info, const wxWindow *window)
{
m_hFont = NULL;
@@ -335,7 +335,7 @@ wxFontRefData::wxFontRefData(const wxFontInfo& info)
}
else
{
- m_nativeFontInfo.SetSizeOrDefault(info.GetFractionalPointSize());
+ m_nativeFontInfo.SetSizeOrDefault(info.GetFractionalPointSize(), window);
}
SetStyle(info.GetStyle());
@@ -518,12 +518,12 @@ wxFontEncoding wxNativeFontInfo::GetEncoding() const
return wxGetFontEncFromCharSet(lf.lfCharSet);
}
-void wxNativeFontInfo::SetFractionalPointSize(double pointSizeNew)
+void wxNativeFontInfo::SetFractionalPointSize(double pointSizeNew, const wxWindow *window)
{
// We don't have the correct DPI to use here, so use that of the
// primary screen and rely on WXAdjustToPPI() changing it later if
// necessary.
- const int ppi = ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY);
+ const int ppi = window ? window->GetDPI().GetY() : ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY);
lf.lfHeight = GetLogFontHeightAtPPI(pointSizeNew, ppi);
pointSize = pointSizeNew;
@@ -812,9 +812,9 @@ wxFont::wxFont(const wxString& fontdesc)
(void)Create(info);
}
-wxFont::wxFont(const wxFontInfo& info)
+wxFont::wxFont(const wxFontInfo& info, const wxWindow *window)
{
- m_refData = new wxFontRefData(info);
+ m_refData = new wxFontRefData(info, window);
}
bool wxFont::Create(const wxNativeFontInfo& info, WXHFONT hFont)
diff --git a/src/msw/menuitem.cpp b/src/msw/menuitem.cpp
index 9bb397d472..30af7154a7 100644
--- a/src/msw/menuitem.cpp
+++ b/src/msw/menuitem.cpp
@@ -368,6 +368,8 @@ void MenuDrawData::Init(wxWindow const* window)
// native menu uses small top margin for separator
if ( SeparatorMargin.cyTopHeight >= 2 )
SeparatorMargin.cyTopHeight -= 2;
+
+ SeparatorSize.cy = 0;
}
else
#endif // wxUSE_UXTHEME
diff --git a/src/msw/window.cpp b/src/msw/window.cpp
index eadc2f5700..f64fea4446 100644
--- a/src/msw/window.cpp
+++ b/src/msw/window.cpp
@@ -4773,33 +4773,49 @@ static wxSize GetWindowDPI(HWND hwnd)
}
/*extern*/
-int wxGetSystemMetrics(int nIndex, const wxWindow* window)
+int wxGetSystemMetrics(int nIndex, const wxWindow* win)
{
#if wxUSE_DYNLIB_CLASS
- if ( !window )
- window = wxApp::GetMainTopWindow();
+ const wxWindow* window = (!win && wxTheApp) ? wxTheApp->GetTopWindow() : win;
- if ( window )
+ if (window)
{
- typedef int (WINAPI * GetSystemMetricsForDpi_t)(int nIndex, UINT dpi);
- static GetSystemMetricsForDpi_t s_pfnGetSystemMetricsForDpi = NULL;
- static bool s_initDone = false;
-
- if ( !s_initDone )
- {
- wxLoadedDLL dllUser32("user32.dll");
- wxDL_INIT_FUNC(s_pfn, GetSystemMetricsForDpi, dllUser32);
- s_initDone = true;
+#if 1
+ if (window->GetHWND() && (nIndex == SM_CXSCREEN || nIndex == SM_CYSCREEN)) {
+ HDC hdc = GetDC(window->GetHWND());
+#if 0
+ double dim = GetDeviceCaps(hdc, nIndex == SM_CXSCREEN ? HORZRES : VERTRES);
+ ReleaseDC(window->GetHWND(), hdc);
+ wxSize dpi = window->GetDPI();
+ dim *= 96.0 / (nIndex == SM_CXSCREEN ? dpi.x : dpi.y);
+ return int(dim + 0.5);
+#else
+ return int(GetDeviceCaps(hdc, nIndex == SM_CXSCREEN ? HORZRES : VERTRES));
+#endif
}
-
- if ( s_pfnGetSystemMetricsForDpi )
+ else
+#endif
{
- const int dpi = window->GetDPI().y;
- return s_pfnGetSystemMetricsForDpi(nIndex, (UINT)dpi);
+ typedef int (WINAPI * GetSystemMetricsForDpi_t)(int nIndex, UINT dpi);
+ static GetSystemMetricsForDpi_t s_pfnGetSystemMetricsForDpi = NULL;
+ static bool s_initDone = false;
+
+ if ( !s_initDone )
+ {
+ wxLoadedDLL dllUser32("user32.dll");
+ wxDL_INIT_FUNC(s_pfn, GetSystemMetricsForDpi, dllUser32);
+ s_initDone = true;
+ }
+
+ if ( s_pfnGetSystemMetricsForDpi )
+ {
+ const int dpi = window->GetDPI().y;
+ return s_pfnGetSystemMetricsForDpi(nIndex, (UINT)dpi);
+ }
}
}
#else
- wxUnusedVar(window);
+ wxUnusedVar(win);
#endif // wxUSE_DYNLIB_CLASS
return ::GetSystemMetrics(nIndex);
diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm
index 6ff0cc3088..4943f3ea38 100644
--- a/src/osx/cocoa/dataview.mm
+++ b/src/osx/cocoa/dataview.mm
@@ -1734,12 +1734,22 @@ outlineView:(NSOutlineView*)outlineView
if ( !dvc->GetEventHandler()->ProcessEvent(eventDV) )
[super keyDown:event];
}
- else
+ //FIXME Vojtech's hack to get the accelerators assigned to the wxDataViewControl working.
+ else if (! implementation->DoHandleKeyEvent(event))
{
[super keyDown:event]; // all other keys
}
}
+//FIXME Vojtech: This is a workaround to get at least the "mouse move" events at the wxDataViewControl,
+// so we can show the tooltips. The "mouse move" events are being send only if the wxDataViewControl
+// has focus, which is a limitation of wxWidgets. We may grab focus on "mouse entry" though.
+- (void)mouseMoved:(NSEvent *)event
+{
+if (! implementation->DoHandleMouseEvent(event))
+ [super mouseMoved:event];
+}
+
//
// contextual menus
//
@@ -2672,12 +2682,22 @@ void wxCocoaDataViewControl::DoSetIndent(int indent)
void wxCocoaDataViewControl::HitTest(const wxPoint& point, wxDataViewItem& item, wxDataViewColumn*& columnPtr) const
{
- NSPoint const nativePoint = wxToNSPoint((NSScrollView*) GetWXWidget(),point);
+ NSTableHeaderView *headerView = [m_OutlineView headerView];
+ if (headerView && point.y < headerView.visibleRect.size.height) {
+ // The point is inside the header area.
+ columnPtr = NULL;
+ item = wxDataViewItem();
+ return;
+ }
+ // Convert from the window coordinates to the virtual scrolled view coordinates.
+ NSScrollView *scrollView = [m_OutlineView enclosingScrollView];
+ const NSRect &visibleRect = scrollView.contentView.visibleRect;
+ NSPoint const nativePoint = wxToNSPoint((NSScrollView*) GetWXWidget(),
+ wxPoint(point.x + visibleRect.origin.x, point.y + visibleRect.origin.y));
int indexColumn;
int indexRow;
-
indexColumn = [m_OutlineView columnAtPoint:nativePoint];
indexRow = [m_OutlineView rowAtPoint: nativePoint];
if ((indexColumn >= 0) && (indexRow >= 0))
diff --git a/src/osx/cocoa/settings.mm b/src/osx/cocoa/settings.mm
index de5f52860c..a9581174a4 100644
--- a/src/osx/cocoa/settings.mm
+++ b/src/osx/cocoa/settings.mm
@@ -224,7 +224,7 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
// ----------------------------------------------------------------------------
// Get a system metric, e.g. scrollbar size
-int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* WXUNUSED(win))
+int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* win)
{
int value;
@@ -259,11 +259,11 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, const wxWindow* WXUN
// TODO case wxSYS_WINDOWMIN_Y:
case wxSYS_SCREEN_X:
- wxDisplaySize(&value, NULL);
+ wxDisplaySize(win, &value, NULL);
return value;
case wxSYS_SCREEN_Y:
- wxDisplaySize(NULL, &value);
+ wxDisplaySize(win, NULL, &value);
return value;
// TODO case wxSYS_FRAMESIZE_X:
diff --git a/src/osx/cocoa/window.mm b/src/osx/cocoa/window.mm
index b322e582c5..79de567333 100644
--- a/src/osx/cocoa/window.mm
+++ b/src/osx/cocoa/window.mm
@@ -190,6 +190,9 @@ NSRect wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const
- (BOOL)isEnabled;
- (void)setEnabled:(BOOL)flag;
+- (BOOL)clipsToBounds;
+- (void)setClipsToBounds:(BOOL)clipsToBounds;
+
- (void)setImage:(NSImage *)image;
- (void)setControlSize:(NSControlSize)size;
@@ -2505,6 +2508,7 @@ wxWidgetImpl( peer, flags )
if ( m_osxView )
CFRetain(m_osxView);
[m_osxView release];
+ m_osxView.clipsToBounds = YES;
}
--
2.41.0.windows.2

View File

@@ -20,16 +20,6 @@ else ()
set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=OFF") set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=OFF")
endif () endif ()
set(_wx_orcaslicer_patch "${CMAKE_CURRENT_LIST_DIR}/0001-wx-3.1.5-patch-for-Orca.patch")
if (MSVC)
set(_patch_cmd if not exist WXWIDGETS_PATCHED ( "${GIT_EXECUTABLE}" apply --verbose --ignore-space-change --whitespace=fix ${_wx_orcaslicer_patch} && type nul > WXWIDGETS_PATCHED ) )
else ()
set(_patch_cmd test -f WXWIDGETS_PATCHED || ${PATCH_CMD} ${_wx_orcaslicer_patch} && touch WXWIDGETS_PATCHED)
endif ()
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
set(_patch_cmd ${PATCH_CMD} ${_wx_orcaslicer_patch})
endif ()
# Note: for anybody wanting to switch to tarball fetching - this won't just work as # Note: for anybody wanting to switch to tarball fetching - this won't just work as
# git apply expects a git repo. Either git init empty repo, or change patching method. # git apply expects a git repo. Either git init empty repo, or change patching method.
@@ -44,12 +34,12 @@ endif ()
orcaslicer_add_cmake_project( orcaslicer_add_cmake_project(
wxWidgets wxWidgets
GIT_REPOSITORY "https://github.com/wxWidgets/wxWidgets" GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets"
GIT_TAG ${_wx_git_tag} # GIT_TAG ${_wx_git_tag}
GIT_SHALLOW ON GIT_SHALLOW ON
# URL ${_wx_tarball_url} # URL ${_wx_tarball_url}
# URL_HASH SHA256=${_wx_tarball_hash} # URL_HASH SHA256=${_wx_tarball_hash}
PATCH_COMMAND ${_patch_cmd} # PATCH_COMMAND ${_patch_cmd}
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} dep_TIFF dep_JPEG DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} dep_TIFF dep_JPEG
CMAKE_ARGS CMAKE_ARGS
-DwxBUILD_PRECOMP=ON -DwxBUILD_PRECOMP=ON

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1885,6 +1885,12 @@ msgstr ""
msgid "arrange current plate" msgid "arrange current plate"
msgstr "" msgstr ""
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "" msgstr ""
@@ -2327,10 +2333,10 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "" msgstr ""
msgid "Load Filament" msgid "Load"
msgstr "" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "" msgstr ""
msgid "Ext Spool" msgid "Ext Spool"
@@ -2348,7 +2354,7 @@ msgstr ""
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "" msgstr ""
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
msgid "Calibrate again" msgid "Calibrate again"
@@ -2389,7 +2395,7 @@ msgstr ""
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
msgid "Edit" msgid "Edit"
@@ -2937,6 +2943,14 @@ msgid ""
"automatically when current filament runs out" "automatically when current filament runs out"
msgstr "" msgstr ""
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "" msgstr ""
@@ -3008,6 +3022,45 @@ msgstr ""
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, possible-boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, possible-boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, possible-boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, possible-boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, possible-boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, possible-boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "" msgstr ""
@@ -3323,18 +3376,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr ""
msgid "MainBoard"
msgstr ""
msgid "TH"
msgstr ""
msgid "XCam"
msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "" msgstr ""
@@ -3854,7 +3895,7 @@ msgstr ""
msgid "Size:" msgid "Size:"
msgstr "" msgstr ""
#, possible-boost-format #, possible-c-format, possible-boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -3985,6 +4026,9 @@ msgstr ""
msgid "Device" msgid "Device"
msgstr "" msgstr ""
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "" msgstr ""
@@ -4024,6 +4068,9 @@ msgstr ""
msgid "Send all" msgid "Send all"
msgstr "" msgstr ""
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "" msgstr ""
@@ -4789,9 +4836,6 @@ msgstr ""
msgid "Bed" msgid "Bed"
msgstr "" msgstr ""
msgid "Unload"
msgstr ""
msgid "Debug Info" msgid "Debug Info"
msgstr "" msgstr ""
@@ -4959,9 +5003,6 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
msgid "HMS"
msgstr ""
msgid "Don't show again" msgid "Don't show again"
msgstr "" msgstr ""
@@ -5201,6 +5242,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5608,15 +5655,21 @@ msgstr ""
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "" msgstr ""
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "" msgstr ""
msgid "Download failed, File size exception."
msgstr ""
#, possible-c-format, possible-boost-format #, possible-c-format, possible-boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "" msgstr ""
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -5874,6 +5927,21 @@ msgstr ""
msgid "Units" msgid "Units"
msgstr "" msgstr ""
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -5948,6 +6016,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6550,6 +6626,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "" msgstr ""
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "" msgstr ""
@@ -6601,6 +6680,26 @@ msgstr ""
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "" msgstr ""
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "" msgstr ""
@@ -6769,8 +6868,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
msgid "Line width" msgid "Line width"
@@ -7146,25 +7245,22 @@ msgstr ""
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr ""
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr ""
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr ""
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr ""
msgid "Don't save" msgid "Don't save"
msgstr "" msgstr ""
msgid "Use Preset Value" msgid "Discard"
msgstr ""
msgid "Save Modified Value"
msgstr "" msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
@@ -7219,28 +7315,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7258,9 +7348,6 @@ msgstr ""
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "" msgstr ""
msgid "Transfer"
msgstr ""
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -7724,6 +7811,39 @@ msgstr ""
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr ""
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -9552,6 +9672,9 @@ msgstr ""
msgid "Lightning" msgid "Lightning"
msgstr "" msgstr ""
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -9713,10 +9836,10 @@ msgstr ""
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12096,6 +12219,9 @@ msgstr ""
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "" msgstr ""
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "" msgstr ""
@@ -12212,6 +12338,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -12221,6 +12355,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -12446,9 +12593,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "" msgstr ""
@@ -12492,12 +12636,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -12525,10 +12663,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -12537,13 +12679,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -12924,8 +13059,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -13468,6 +13603,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2024-03-17 22:08+0100\n" "PO-Revision-Date: 2024-03-17 22:08+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -1964,6 +1964,12 @@ msgstr "Ordenar"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "organitza la placa actual" msgstr "organitza la placa actual"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Rota automàticament" msgstr "Rota automàticament"
@@ -2426,11 +2432,11 @@ msgstr "Recàrrega automàtica"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS no connectat" msgstr "AMS no connectat"
msgid "Load Filament" msgid "Load"
msgstr "Carregar Filament" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Descarregar Filament" msgstr "Descarregar"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Bobina Ext" msgstr "Bobina Ext"
@@ -2447,7 +2453,7 @@ msgstr "Reintentar"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Calibrant AMS..." msgstr "Calibrant AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"S'ha produït un problema durant el calibratge. Feu clic per veure la solució." "S'ha produït un problema durant el calibratge. Feu clic per veure la solució."
@@ -2489,10 +2495,8 @@ msgstr "Agafar filament nou"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Trieu una ranura AMS i premeu el botó \"Carregar\" o \"Descarregar\" per "
"carregar o descarregar el filament automàticament."
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
@@ -3115,6 +3119,14 @@ msgstr ""
"AMS continuarà a una altra bobina amb les mateixes propietats del filament " "AMS continuarà a una altra bobina amb les mateixes propietats del filament "
"automàticament quan s'esgoti el filament actual" "automàticament quan s'esgoti el filament actual"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Fitxer" msgstr "Fitxer"
@@ -3194,6 +3206,45 @@ msgstr "Executant scripts de postprocessament"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Error desconegut en exportar el Codi-G." msgstr "Error desconegut en exportar el Codi-G."
@@ -3579,18 +3630,6 @@ msgstr "Pausa d'error de la primera capa"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "Pausa d'obstrucció del broquet" msgstr "Pausa d'obstrucció del broquet"
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Placa Base"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Desconegut" msgstr "Desconegut"
@@ -4128,7 +4167,7 @@ msgstr "Volum:"
msgid "Size:" msgid "Size:"
msgstr "Mida:" msgstr "Mida:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4270,6 +4309,9 @@ msgstr "Previsualització"
msgid "Device" msgid "Device"
msgstr "Dispositiu" msgstr "Dispositiu"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Projecte" msgstr "Projecte"
@@ -4309,6 +4351,9 @@ msgstr "Imprimeix-ho tot"
msgid "Send all" msgid "Send all"
msgstr "Envia-ho tot" msgstr "Envia-ho tot"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Dreceres de teclat" msgstr "Dreceres de teclat"
@@ -5108,9 +5153,6 @@ msgstr "Cambra"
msgid "Bed" msgid "Bed"
msgstr "Llit" msgstr "Llit"
msgid "Unload"
msgstr "Descarregar"
msgid "Debug Info" msgid "Debug Info"
msgstr "Informació de depuració" msgstr "Informació de depuració"
@@ -5297,9 +5339,6 @@ msgstr "Estat"
msgid "Update" msgid "Update"
msgstr "Actualitzar" msgstr "Actualitzar"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "No tornis a mostrar" msgstr "No tornis a mostrar"
@@ -5546,6 +5585,12 @@ msgstr "Permet senyals acústics"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "Detecció de filament enredat" msgstr "Detecció de filament enredat"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -6006,19 +6051,23 @@ msgstr "Important Model"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "preparar el fitxer 3MF..." msgstr "preparar el fitxer 3MF..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "descarregant projecte ..." msgstr "descarregant projecte ..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Projecte descarregat %d%%" msgstr "Projecte descarregat %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"La importació a Orca Slicer ha fallat. Descarregueu el fitxer manualment i "
"importeu-lo."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "Importar fitxer SLA" msgstr "Importar fitxer SLA"
@@ -6291,6 +6340,21 @@ msgstr "Imperial"
msgid "Units" msgid "Units"
msgstr "Unitats" msgstr "Unitats"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "Inici" msgstr "Inici"
@@ -6372,6 +6436,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -7024,6 +7096,9 @@ msgstr "Calibratge automàtic de flux mitjançant Micro Lidar"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Modificant el nom del dispositiu" msgstr "Modificant el nom del dispositiu"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Enviar a la targeta SD de la impressora" msgstr "Enviar a la targeta SD de la impressora"
@@ -7079,6 +7154,26 @@ msgstr "Excedit el temps d'espera de l'informe d'inici de sessió"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Falla desconeguda" msgstr "Falla desconeguda"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Iniciar sessió a la impressora" msgstr "Iniciar sessió a la impressora"
@@ -7295,8 +7390,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una " "Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
"\"Torre de Purga Timelapse\" \n" "\"Torre de Purga Timelapse\" \n"
@@ -7711,26 +7806,23 @@ msgstr "No definit"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Canvis no desats" msgstr "Canvis no desats"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Transferir o descartar canvis"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Valor antic"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Valor nou"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Transferir"
msgid "Don't save" msgid "Don't save"
msgstr "No desar" msgstr "No desar"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Descartar"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Feu clic amb el botó dret del ratolí per mostrar el text complet." msgstr "Feu clic amb el botó dret del ratolí per mostrar el text complet."
@@ -7792,28 +7884,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7831,9 +7917,6 @@ msgstr "Mostra tots els perfils ( inclosos els incompatibles )"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Seleccioneu els perfils a comparar" msgstr "Seleccioneu els perfils a comparar"
msgid "Transfer"
msgstr "Transferir"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat." msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat."
@@ -8332,6 +8415,39 @@ msgstr "Fet"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Carregar Filament"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "Confirmar i Actualitzar el broquet" msgstr "Confirmar i Actualitzar el broquet"
@@ -10662,6 +10778,9 @@ msgstr "Suport Cúbic"
msgid "Lightning" msgid "Lightning"
msgstr "Llampec" msgstr "Llampec"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Longitud d'ancoratge de farciment poc dens" msgstr "Longitud d'ancoratge de farciment poc dens"
@@ -10864,15 +10983,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"La velocitat del ventilador augmentarà linealment de zero a la capa " "La velocitat del ventilador augmentarà linealment de zero a la capa "
"\"close_fan_the_first_x_layers\" al màxim a la capa " "\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior " "\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " "\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1." "la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -13859,6 +13978,9 @@ msgstr "Cancel·lat"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: no s'ha pogut analitzar" msgstr "load_obj: no s'ha pogut analitzar"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "El fitxer conté polígons amb més de 4 vèrtexs." msgstr "El fitxer conté polígons amb més de 4 vèrtexs."
@@ -13985,6 +14107,14 @@ msgstr "Seleccioneu el filament per calibrar."
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "El valor de mida d'entrada ha de ser 3." msgstr "El valor de mida d'entrada ha de ser 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Connectant amb la impressora..." msgstr "Connectant amb la impressora..."
@@ -13996,6 +14126,19 @@ msgstr ""
"El resultat del Calibratge de les Dinàmiques de Flux s'ha desat a la " "El resultat del Calibratge de les Dinàmiques de Flux s'ha desat a la "
"impressora" "impressora"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Error intern" msgstr "Error intern"
@@ -14304,9 +14447,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Paràmetres d'impressió" msgstr "Paràmetres d'impressió"
msgid "- ℃"
msgstr "- °C"
msgid "Plate Type" msgid "Plate Type"
msgstr "Tipus de placa" msgstr "Tipus de placa"
@@ -14355,12 +14495,6 @@ msgstr "Al valor k"
msgid "Step value" msgid "Step value"
msgstr "Valor del pas" msgstr "Valor del pas"
msgid "0.5"
msgstr "0,5"
msgid "0.005"
msgstr "0,005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
"El diàmetre del broquet s'ha sincronitzat des de la configuració d'impressora" "El diàmetre del broquet s'ha sincronitzat des de la configuració d'impressora"
@@ -14390,10 +14524,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "Acció" msgstr "Acció"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Editeu el Calibratge de Dinàmiques de Flux" msgstr "Editeu el Calibratge de Dinàmiques de Flux"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -14402,13 +14540,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "Cerca de xarxa" msgstr "Cerca de xarxa"
@@ -14825,8 +14956,8 @@ msgstr ""
"Vols reescriure'l?" "Vols reescriure'l?"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus " "Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
@@ -15452,6 +15583,175 @@ msgstr ""
"Cos del missatge: \"%1%\"\n" "Cos del missatge: \"%1%\"\n"
"Error: \"%2%\"" "Error: \"%2%\""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -15882,6 +16182,47 @@ msgstr ""
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de " "augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
"deformació." "deformació."
#~ msgid "Unload Filament"
#~ msgstr "Descarregar Filament"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Trieu una ranura AMS i premeu el botó \"Carregar\" o \"Descarregar\" per "
#~ "carregar o descarregar el filament automàticament."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Placa Base"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "La importació a Orca Slicer ha fallat. Descarregueu el fitxer manualment "
#~ "i importeu-lo."
#~ msgid "- ℃"
#~ msgstr "- °C"
#~ msgid "0.5"
#~ msgstr "0,5"
#~ msgid "0.005"
#~ msgstr "0,005"
#~ msgid "active" #~ msgid "active"
#~ msgstr "actiu" #~ msgstr "actiu"
@@ -15990,18 +16331,6 @@ msgstr ""
#~ "No s'ha pogut realitzar l'operació booleana a les malles del model. Només " #~ "No s'ha pogut realitzar l'operació booleana a les malles del model. Només "
#~ "s'exportaran les parts positives." #~ "s'exportaran les parts positives."
#~ msgid "Transfer or discard changes"
#~ msgstr "Transferir o descartar canvis"
#~ msgid "Old Value"
#~ msgstr "Valor antic"
#~ msgid "New Value"
#~ msgstr "Valor nou"
#~ msgid "Discard"
#~ msgstr "Descartar"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2023-09-30 15:15+0200\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n"
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n" "Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -1918,6 +1918,12 @@ msgstr "Uspořádat"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "uspořádat aktuální podložku" msgstr "uspořádat aktuální podložku"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Automatické otáčení" msgstr "Automatické otáčení"
@@ -2380,11 +2386,11 @@ msgstr "Automatické Doplnění"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS není připojen" msgstr "AMS není připojen"
msgid "Load Filament" msgid "Load"
msgstr "Zavézt Filament" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Vysunout Filament" msgstr "Vysunout"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Ext Cívka" msgstr "Ext Cívka"
@@ -2401,7 +2407,7 @@ msgstr "Zkusit znovu"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Kalibruji AMS..." msgstr "Kalibruji AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "Během kalibrace došlo k problému. Kliknutím zobrazíte řešení." msgstr "Během kalibrace došlo k problému. Kliknutím zobrazíte řešení."
msgid "Calibrate again" msgid "Calibrate again"
@@ -2442,10 +2448,8 @@ msgstr "Vezměte nový filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Vyberte slot AMS a poté stiskněte \" Načíst \" nebo \" Uvolnit \" pro "
"automatické načtení nebo vyjměte vlákno."
msgid "Edit" msgid "Edit"
msgstr "Upravit" msgstr "Upravit"
@@ -3057,6 +3061,14 @@ msgstr ""
"AMS bude pokračovat na další cívku se stejnými vlastnostmi filamentu " "AMS bude pokračovat na další cívku se stejnými vlastnostmi filamentu "
"automaticky, když dojde aktuální filament" "automaticky, když dojde aktuální filament"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Soubor" msgstr "Soubor"
@@ -3134,6 +3146,45 @@ msgstr "Vykonávají se postprodukční skripty"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Neznámá chyba při exportu G-kódu." msgstr "Neznámá chyba při exportu G-kódu."
@@ -3509,18 +3560,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Základní deska"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Neznámý" msgstr "Neznámý"
@@ -4055,7 +4094,7 @@ msgstr "Objem:"
msgid "Size:" msgid "Size:"
msgstr "Velikost:" msgstr "Velikost:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4196,6 +4235,9 @@ msgstr "Náhled"
msgid "Device" msgid "Device"
msgstr "Zařízení" msgstr "Zařízení"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Projekt" msgstr "Projekt"
@@ -4235,6 +4277,9 @@ msgstr "Vytisknout vše"
msgid "Send all" msgid "Send all"
msgstr "Odeslat vše" msgstr "Odeslat vše"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Klávesové zkratky" msgstr "Klávesové zkratky"
@@ -5025,9 +5070,6 @@ msgstr "Komora"
msgid "Bed" msgid "Bed"
msgstr "Podložka" msgstr "Podložka"
msgid "Unload"
msgstr "Vysunout"
msgid "Debug Info" msgid "Debug Info"
msgstr "Informace o ladění" msgstr "Informace o ladění"
@@ -5211,9 +5253,6 @@ msgstr "Stav"
msgid "Update" msgid "Update"
msgstr "Aktualizovat" msgstr "Aktualizovat"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Znovu Nezobrazovat" msgstr "Znovu Nezobrazovat"
@@ -5461,6 +5500,12 @@ msgstr "Povolit zvuky upozornění"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5912,18 +5957,23 @@ msgstr "Import modelu"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "připravte soubor 3mf..." msgstr "připravte soubor 3mf..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "stahuji projekt ..." msgstr "stahuji projekt ..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Projekt stažen %d%%" msgstr "Projekt stažen %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"Import do Orca Sliceru selhal. Stáhněte soubor a proveďte jeho ruční import."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "" msgstr ""
@@ -6189,6 +6239,21 @@ msgstr "Imperiální"
msgid "Units" msgid "Units"
msgstr "Jednotky" msgstr "Jednotky"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6265,6 +6330,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6901,6 +6974,9 @@ msgstr "Automatická kalibrace průtoku pomocí Mikro Lidar"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Úprava názvu zařízení" msgstr "Úprava názvu zařízení"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Odeslat do tiskárny SD kartu" msgstr "Odeslat do tiskárny SD kartu"
@@ -6953,6 +7029,26 @@ msgstr "Časový limit pro obdržení hlášení o přihlášení vypršel"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Neznámá chyba" msgstr "Neznámá chyba"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Přihlaste se k tiskárně" msgstr "Přihlaste se k tiskárně"
@@ -7156,8 +7252,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Při nahrávání časosběru bez nástrojové hlavy se doporučuje přidat " "Při nahrávání časosběru bez nástrojové hlavy se doporučuje přidat "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
@@ -7572,26 +7668,23 @@ msgstr "Nedefinováno"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Neuložené změny" msgstr "Neuložené změny"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Zahodit nebo ponechat změny"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Stará hodnota"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Nová hodnota"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Přenést"
msgid "Don't save" msgid "Don't save"
msgstr "Neukládat" msgstr "Neukládat"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Zahodit"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Kliknutím pravým tlačítkem myši zobrazíte celý text." msgstr "Kliknutím pravým tlačítkem myši zobrazíte celý text."
@@ -7653,28 +7746,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7692,9 +7779,6 @@ msgstr "Zobrazit všechna přednastavení (včetně nekompatibilních)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Zvolte přednastavení k porovnání" msgstr "Zvolte přednastavení k porovnání"
msgid "Transfer"
msgstr "Přenést"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8176,6 +8260,39 @@ msgstr "Hotovo"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Zavézt Filament"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10259,6 +10376,9 @@ msgstr "Kubický podepíraný"
msgid "Lightning" msgid "Lightning"
msgstr "Blesky" msgstr "Blesky"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Délka kotvy vnitřní výplně" msgstr "Délka kotvy vnitřní výplně"
@@ -10454,10 +10574,10 @@ msgstr "Maximální otáčky ventilátoru ve vrstvě"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"Otáčky ventilátoru se lineárně zvýší z nuly ve vrstvě " "Otáčky ventilátoru se lineárně zvýší z nuly ve vrstvě "
"\"close_fan_first_layers\" na maximum ve vrstvě \"full_fan_speed_layer\". " "\"close_fan_first_layers\" na maximum ve vrstvě \"full_fan_speed_layer\". "
@@ -13237,6 +13357,9 @@ msgstr "Zrušeno"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: nepodařilo se zpracovat" msgstr "load_obj: nepodařilo se zpracovat"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "Soubor obsahuje polygon s více než 4 vrcholy." msgstr "Soubor obsahuje polygon s více než 4 vrcholy."
@@ -13362,6 +13485,14 @@ msgstr "Vyberte prosím filament pro kalibraci."
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "Velikost vstupní hodnoty musí být 3." msgstr "Velikost vstupní hodnoty musí být 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Připojování k tiskárně..." msgstr "Připojování k tiskárně..."
@@ -13371,6 +13502,19 @@ msgstr "Výsledek neúspěšného testu byl zahozen."
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "Výsledek kalibrace dynamiky průtoku byl uložen do tiskárny" msgstr "Výsledek kalibrace dynamiky průtoku byl uložen do tiskárny"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Interní chyba" msgstr "Interní chyba"
@@ -13667,9 +13811,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Parametry tisku" msgstr "Parametry tisku"
msgid "- ℃"
msgstr "- ℃"
msgid "Plate Type" msgid "Plate Type"
msgstr "Typ Podložky" msgstr "Typ Podložky"
@@ -13717,12 +13858,6 @@ msgstr "Do hodnoty k"
msgid "Step value" msgid "Step value"
msgstr "Krok hodnoty" msgstr "Krok hodnoty"
msgid "0.5"
msgstr "0.5"
msgid "0.005"
msgstr "0.005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "Průměr trysky byl synchronizován z Nastavení tiskárny" msgstr "Průměr trysky byl synchronizován z Nastavení tiskárny"
@@ -13750,10 +13885,14 @@ msgstr "Aktualizace historických záznamů kalibrace dynamiky průtoku probíh
msgid "Action" msgid "Action"
msgstr "Akce" msgstr "Akce"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Upravit kalibraci dynamiky průtoku" msgstr "Upravit kalibraci dynamiky průtoku"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13762,13 +13901,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "Vyhledávání v síti" msgstr "Vyhledávání v síti"
@@ -14167,8 +14299,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14722,6 +14854,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14883,8 +15184,8 @@ msgid ""
msgstr "" msgstr ""
"Plochou na podložku\n" "Plochou na podložku\n"
"Věděli jste, že můžete rychle nastavit orientaci modelu tak, aby jedna z " "Věděli jste, že můžete rychle nastavit orientaci modelu tak, aby jedna z "
"jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na " "jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na podložku"
"podložku\" nebo stiskněte klávesu <b>F</b>." "\" nebo stiskněte klávesu <b>F</b>."
#: resources/data/hints.ini: [hint:Object List] #: resources/data/hints.ini: [hint:Object List]
msgid "" msgid ""
@@ -15100,6 +15401,47 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Vysunout Filament"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Vyberte slot AMS a poté stiskněte \" Načíst \" nebo \" Uvolnit \" pro "
#~ "automatické načtení nebo vyjměte vlákno."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Základní deska"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "Import do Orca Sliceru selhal. Stáhněte soubor a proveďte jeho ruční "
#~ "import."
#~ msgid "- ℃"
#~ msgstr "- ℃"
#~ msgid "0.5"
#~ msgstr "0.5"
#~ msgid "0.005"
#~ msgstr "0.005"
#~ msgid "active" #~ msgid "active"
#~ msgstr "aktivní" #~ msgstr "aktivní"
@@ -15199,18 +15541,6 @@ msgstr ""
#~ "Nelze provést logickou operaci nad mashí modelů. Budou exportovány pouze " #~ "Nelze provést logickou operaci nad mashí modelů. Budou exportovány pouze "
#~ "kladné části." #~ "kladné části."
#~ msgid "Transfer or discard changes"
#~ msgstr "Zahodit nebo ponechat změny"
#~ msgid "Old Value"
#~ msgstr "Stará hodnota"
#~ msgid "New Value"
#~ msgstr "Nová hodnota"
#~ msgid "Discard"
#~ msgstr "Zahodit"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -1893,6 +1893,12 @@ msgstr "Arrange"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "Arrange current plate" msgstr "Arrange current plate"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Auto Rotate" msgstr "Auto Rotate"
@@ -2348,10 +2354,10 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS not connected" msgstr "AMS not connected"
msgid "Load Filament" msgid "Load"
msgstr "Load" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Unload" msgstr "Unload"
msgid "Ext Spool" msgid "Ext Spool"
@@ -2369,8 +2375,8 @@ msgstr "Retry"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Calibrating AMS..." msgstr "Calibrating AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "A problem occured during calibration. Click to view the solution." msgstr "A problem occurred during calibration. Click to view the solution."
msgid "Calibrate again" msgid "Calibrate again"
msgstr "Calibrate again" msgstr "Calibrate again"
@@ -2410,10 +2416,8 @@ msgstr "Grab new filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Choose an AMS slot then press \"Load\" or \"Unload\" to automatically load "
"or unload filament."
msgid "Edit" msgid "Edit"
msgstr "Edit" msgstr "Edit"
@@ -3015,6 +3019,14 @@ msgstr ""
"AMS will continue to another spool with the same filament properties " "AMS will continue to another spool with the same filament properties "
"automatically when current filament runs out." "automatically when current filament runs out."
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "File" msgstr "File"
@@ -3094,6 +3106,45 @@ msgstr "Running post-processing scripts"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Unknown error with G-code export" msgstr "Unknown error with G-code export"
@@ -3462,18 +3513,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "MainBoard"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Unknown" msgstr "Unknown"
@@ -3996,7 +4035,7 @@ msgstr "Volume:"
msgid "Size:" msgid "Size:"
msgstr "Size:" msgstr "Size:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4136,6 +4175,9 @@ msgstr "Preview"
msgid "Device" msgid "Device"
msgstr "Device" msgstr "Device"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Project" msgstr "Project"
@@ -4175,6 +4217,9 @@ msgstr "Print all"
msgid "Send all" msgid "Send all"
msgstr "Send all" msgstr "Send all"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Keyboard Shortcuts" msgstr "Keyboard Shortcuts"
@@ -4950,9 +4995,6 @@ msgstr "Cham"
msgid "Bed" msgid "Bed"
msgstr "Bed" msgstr "Bed"
msgid "Unload"
msgstr "Unload"
msgid "Debug Info" msgid "Debug Info"
msgstr "Debug Info" msgstr "Debug Info"
@@ -5122,9 +5164,6 @@ msgstr "Status"
msgid "Update" msgid "Update"
msgstr "Update" msgstr "Update"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Don't show again" msgstr "Don't show again"
@@ -5370,6 +5409,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5808,15 +5853,21 @@ msgstr "Importing Model"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "preparing 3mf file..." msgstr "preparing 3mf file..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "downloading project ..." msgstr "downloading project ..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Project downloaded %d%%" msgstr "Project downloaded %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6083,6 +6134,21 @@ msgstr "Imperial"
msgid "Units" msgid "Units"
msgstr "Units" msgstr "Units"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6159,6 +6225,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6792,6 +6866,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Modifying the device name" msgstr "Modifying the device name"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Send to Printer MicroSD card" msgstr "Send to Printer MicroSD card"
@@ -6844,6 +6921,26 @@ msgstr "Receive login report timeout"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Unknown Failure" msgstr "Unknown Failure"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Log in printer" msgstr "Log in printer"
@@ -7046,13 +7143,13 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgid "Line width" msgid "Line width"
msgstr "Line width" msgstr "Line width"
@@ -7448,26 +7545,23 @@ msgstr "Undefined"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "unsaved changes" msgstr "unsaved changes"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Transfer or discard changes"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Old value"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "New Value"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Transfer"
msgid "Don't save" msgid "Don't save"
msgstr "Don't save" msgstr "Don't save"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Discard"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Click the right mouse button to display the full text." msgstr "Click the right mouse button to display the full text."
@@ -7529,28 +7623,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7568,9 +7656,6 @@ msgstr "Show all presets (including incompatible)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Select presets to compare" msgstr "Select presets to compare"
msgid "Transfer"
msgstr "Transfer"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8043,6 +8128,39 @@ msgstr "Done"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Load"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10039,6 +10157,9 @@ msgstr "Support Cubic"
msgid "Lightning" msgid "Lightning"
msgstr "Lightning" msgstr "Lightning"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -10208,10 +10329,10 @@ msgstr "Full fan speed at layer"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12786,6 +12907,9 @@ msgstr "Canceled"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: failed to parse" msgstr "load_obj: failed to parse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices."
@@ -12902,6 +13026,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -12911,6 +13043,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -13136,9 +13281,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "Plate Type" msgstr "Plate Type"
@@ -13182,12 +13324,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -13215,10 +13351,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13227,13 +13367,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13614,8 +13747,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14159,6 +14292,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14531,6 +14833,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Unload"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" to automatically "
#~ "load or unload filament."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "MainBoard"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "active" #~ msgstr "active"
@@ -14626,18 +14953,6 @@ msgstr ""
#~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "Unable to perform boolean operation on model meshes. Only positive parts "
#~ "will be exported." #~ "will be exported."
#~ msgid "Transfer or discard changes"
#~ msgstr "Transfer or discard changes"
#~ msgid "Old Value"
#~ msgstr "Old value"
#~ msgid "New Value"
#~ msgstr "New Value"
#~ msgid "Discard"
#~ msgstr "Discard"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n" "Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -1970,6 +1970,12 @@ msgstr "Organizar"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "posicionar la bandeja actual" msgstr "posicionar la bandeja actual"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Rotación Automática" msgstr "Rotación Automática"
@@ -2435,11 +2441,11 @@ msgstr "Auto Rellenado"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS no conectado" msgstr "AMS no conectado"
msgid "Load Filament" msgid "Load"
msgstr "Cargar" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Descargar" msgstr "Descarga"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Carrete Externo" msgstr "Carrete Externo"
@@ -2456,7 +2462,7 @@ msgstr "Reintentar"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Calibración de AMS..." msgstr "Calibración de AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Se ha producido un problema durante la calibración. Haga clic para ver la " "Se ha producido un problema durante la calibración. Haga clic para ver la "
"solución." "solución."
@@ -2499,10 +2505,8 @@ msgstr "Grab new filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Elija una ranura AMS y pulse el botón \"Cargar\" o \"Descargar\" para cargar "
"o descargar automáticamente el filamento."
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
@@ -3128,6 +3132,14 @@ msgstr ""
"El AMS continuará con otra bobina con las mismas propiedades de filamento " "El AMS continuará con otra bobina con las mismas propiedades de filamento "
"automáticamente cuando el filamento se termine" "automáticamente cuando el filamento se termine"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
@@ -3207,6 +3219,45 @@ msgstr "Ejecutando scripts de post-procesado"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Error desconocido al exportar el G-Code." msgstr "Error desconocido al exportar el G-Code."
@@ -3602,18 +3653,6 @@ msgstr "Pausa de error de primera capa"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "Pausa de obstrucción de boquilla" msgstr "Pausa de obstrucción de boquilla"
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Placa Base"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Desconocido" msgstr "Desconocido"
@@ -4153,7 +4192,7 @@ msgstr "Volumen:"
msgid "Size:" msgid "Size:"
msgstr "Tamaño:" msgstr "Tamaño:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4295,6 +4334,9 @@ msgstr "Previsualización"
msgid "Device" msgid "Device"
msgstr "Dispositivo" msgstr "Dispositivo"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Proyecto" msgstr "Proyecto"
@@ -4334,6 +4376,9 @@ msgstr "Imprimir todo"
msgid "Send all" msgid "Send all"
msgstr "Mandar todo" msgstr "Mandar todo"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Atajos de teclado" msgstr "Atajos de teclado"
@@ -5128,9 +5173,6 @@ msgstr "Costura"
msgid "Bed" msgid "Bed"
msgstr "Cama" msgstr "Cama"
msgid "Unload"
msgstr "Descarga"
msgid "Debug Info" msgid "Debug Info"
msgstr "Información de Depuración" msgstr "Información de Depuración"
@@ -5320,9 +5362,6 @@ msgstr "Estado"
msgid "Update" msgid "Update"
msgstr "Actualizar" msgstr "Actualizar"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "No mostrar de nuevo" msgstr "No mostrar de nuevo"
@@ -5568,6 +5607,12 @@ msgstr "Permitir Sonido de Aviso"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "Detección de Enredos de Filamentos" msgstr "Detección de Enredos de Filamentos"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -6033,19 +6078,23 @@ msgstr "Importando modelo"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "preparar el archivo 3mf..." msgstr "preparar el archivo 3mf..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "descargando proyecto..." msgstr "descargando proyecto..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Proyecto descargado %d%%" msgstr "Proyecto descargado %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"La importación a Orca Slicer ha fallado. Descargue el archivo e impórtelo "
"manualmente."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "Importar archivo SLA" msgstr "Importar archivo SLA"
@@ -6322,6 +6371,21 @@ msgstr "Imperial"
msgid "Units" msgid "Units"
msgstr "Unidades" msgstr "Unidades"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "Página de Inicio" msgstr "Página de Inicio"
@@ -6400,6 +6464,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "Red" msgstr "Red"
@@ -7052,6 +7124,9 @@ msgstr "Calibración automática de caudal usando Micro Lidar"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Modificar el nombre del dispositivo" msgstr "Modificar el nombre del dispositivo"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Enviar a la tarjeta SD de la impresora" msgstr "Enviar a la tarjeta SD de la impresora"
@@ -7109,6 +7184,26 @@ msgstr "Receive login report timeout"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Error Desconocido" msgstr "Error Desconocido"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Iniciar sesión en la impresora" msgstr "Iniciar sesión en la impresora"
@@ -7326,8 +7421,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Cuando grabamos timelapse sin cabezal de impresión, es recomendable añadir " "Cuando grabamos timelapse sin cabezal de impresión, es recomendable añadir "
"un \"Torre de Purga de Intervalo\" \n" "un \"Torre de Purga de Intervalo\" \n"
@@ -7751,26 +7846,23 @@ msgstr "No definido"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Cambios No guardados" msgstr "Cambios No guardados"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Descartar o mantener los cambios"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Valor Antiguo"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Nuevo Valor"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Transferir"
msgid "Don't save" msgid "Don't save"
msgstr "No guardar" msgstr "No guardar"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Descartar"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Pulse el botón derecho del ratón para mostrar el texto completo." msgstr "Pulse el botón derecho del ratón para mostrar el texto completo."
@@ -7833,28 +7925,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7872,9 +7958,6 @@ msgstr "Mostrar todos los perfiles (incluyendo los compatibles)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Seleccionar perfiles para comparar" msgstr "Seleccionar perfiles para comparar"
msgid "Transfer"
msgstr "Transferir"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8367,6 +8450,39 @@ msgstr "Hecho"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Cargar"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "Confirmar y Actualizar la Boquilla" msgstr "Confirmar y Actualizar la Boquilla"
@@ -10710,6 +10826,9 @@ msgstr "Soporte Cúbico"
msgid "Lightning" msgid "Lightning"
msgstr "Rayo" msgstr "Rayo"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Longitud del anclaje de relleno de baja densidad" msgstr "Longitud del anclaje de relleno de baja densidad"
@@ -10914,10 +11033,10 @@ msgstr "Velocidad máxima del ventilador en la capa"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"La velocidad de ventilador se incrementará linealmente de cero a " "La velocidad de ventilador se incrementará linealmente de cero a "
"\"close_fan_the_first_x_layers\" al máximo de capa \"full_fan_speed_layer\". " "\"close_fan_the_first_x_layers\" al máximo de capa \"full_fan_speed_layer\". "
@@ -13412,10 +13531,9 @@ msgstr ""
"NOTA: Las superficies inferior y superior no se verán afectadas por este " "NOTA: Las superficies inferior y superior no se verán afectadas por este "
"valor para evitar huecos visuales en el exterior del modelo. Ajuste \"Umbral " "valor para evitar huecos visuales en el exterior del modelo. Ajuste \"Umbral "
"de una perímetro\" en la configuración avanzada para ajustar la sensibilidad " "de una perímetro\" en la configuración avanzada para ajustar la sensibilidad "
"de lo que se considera una superficie superior. El \"Umbral de una " "de lo que se considera una superficie superior. El \"Umbral de una perímetro"
"perímetro\" sólo es visible si este valor es superior al valor " "\" sólo es visible si este valor es superior al valor predeterminado de 0,5, "
"predeterminado de 0,5, o si las superficies superiores de una soel perímetro " "o si las superficies superiores de una soel perímetro están activadas."
"están activadas."
msgid "First layer minimum wall width" msgid "First layer minimum wall width"
msgstr "Ancho mínimo del perímetro de la primera capa" msgstr "Ancho mínimo del perímetro de la primera capa"
@@ -13914,6 +14032,9 @@ msgstr "Canceled"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: failed to parse" msgstr "load_obj: failed to parse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices."
@@ -14039,6 +14160,14 @@ msgstr "Por favor, seleccione el filamento para calibrar."
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "El valor de tamaño de entrada debe ser 3." msgstr "El valor de tamaño de entrada debe ser 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Conectando a la impresora." msgstr "Conectando a la impresora."
@@ -14050,6 +14179,19 @@ msgstr ""
"El resultado de la Calibración de Dinámicas de Flujo se ha salvado en la " "El resultado de la Calibración de Dinámicas de Flujo se ha salvado en la "
"impresora" "impresora"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Error interno" msgstr "Error interno"
@@ -14115,12 +14257,12 @@ msgstr ""
"wiki.\n" "wiki.\n"
"\n" "\n"
"Normalmente la calibración es innecesaria. Cuando se inicia una impresión de " "Normalmente la calibración es innecesaria. Cuando se inicia una impresión de "
"un solo color/material, con la opción \"Calibración de la dinámica de " "un solo color/material, con la opción \"Calibración de la dinámica de caudal"
"caudal\" marcada en el menú de inicio de impresión, la impresora seguirá el " "\" marcada en el menú de inicio de impresión, la impresora seguirá el método "
"método antiguo, calibrar el filamento antes de la impresión; Cuando se " "antiguo, calibrar el filamento antes de la impresión; Cuando se inicia una "
"inicia una impresión de varios colores/materiales, la impresora utilizará el " "impresión de varios colores/materiales, la impresora utilizará el parámetro "
"parámetro de compensación por defecto para el filamento durante cada cambio " "de compensación por defecto para el filamento durante cada cambio de "
"de filamento que tendrá un buen resultado en la mayoría de los casos.\n" "filamento que tendrá un buen resultado en la mayoría de los casos.\n"
"\n" "\n"
"Tenga en cuenta que hay algunos casos en los que el resultado de la " "Tenga en cuenta que hay algunos casos en los que el resultado de la "
"calibración no es fiable: el uso de una placa de textura para hacer la " "calibración no es fiable: el uso de una placa de textura para hacer la "
@@ -14362,9 +14504,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Parámetros de Impresión" msgstr "Parámetros de Impresión"
msgid "- ℃"
msgstr "- ℃"
msgid "Plate Type" msgid "Plate Type"
msgstr "Plate Type" msgstr "Plate Type"
@@ -14414,12 +14553,6 @@ msgstr "Al valor k"
msgid "Step value" msgid "Step value"
msgstr "Valor del paso" msgstr "Valor del paso"
msgid "0.5"
msgstr "0.5"
msgid "0.005"
msgstr "0.005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
"El diámetro de la boquilla has sido sincronizado desde los ajustes de " "El diámetro de la boquilla has sido sincronizado desde los ajustes de "
@@ -14450,10 +14583,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "Acción" msgstr "Acción"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Editar Calibración de Dinámicas de Flujo" msgstr "Editar Calibración de Dinámicas de Flujo"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -14462,13 +14599,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "Búsqueda de red" msgstr "Búsqueda de red"
@@ -14887,8 +15017,8 @@ msgstr ""
"¿Quieres reescribirlo?" "¿Quieres reescribirlo?"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor " "Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor "
@@ -15514,6 +15644,175 @@ msgstr ""
"Cuerpo del mensaje: \"%1%\" \n" "Cuerpo del mensaje: \"%1%\" \n"
"Error: \"%2%\"" "Error: \"%2%\""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "¡Conectado a Obico con éxito!" msgstr "¡Conectado a Obico con éxito!"
@@ -15950,6 +16249,47 @@ msgstr ""
"aumentar adecuadamente la temperatura del lecho térmico puede reducir la " "aumentar adecuadamente la temperatura del lecho térmico puede reducir la "
"probabilidad de deformaciones." "probabilidad de deformaciones."
#~ msgid "Unload Filament"
#~ msgstr "Descargar"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Elija una ranura AMS y pulse el botón \"Cargar\" o \"Descargar\" para "
#~ "cargar o descargar automáticamente el filamento."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Placa Base"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "La importación a Orca Slicer ha fallado. Descargue el archivo e impórtelo "
#~ "manualmente."
#~ msgid "- ℃"
#~ msgstr "- ℃"
#~ msgid "0.5"
#~ msgstr "0.5"
#~ msgid "0.005"
#~ msgstr "0.005"
#~ msgid "active" #~ msgid "active"
#~ msgstr "activo" #~ msgstr "activo"
@@ -16057,18 +16397,6 @@ msgstr ""
#~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "Unable to perform boolean operation on model meshes. Only positive parts "
#~ "will be exported." #~ "will be exported."
#~ msgid "Transfer or discard changes"
#~ msgstr "Descartar o mantener los cambios"
#~ msgid "Old Value"
#~ msgstr "Valor Antiguo"
#~ msgid "New Value"
#~ msgstr "Nuevo Valor"
#~ msgid "Discard"
#~ msgstr "Descartar"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"
@@ -16220,8 +16548,8 @@ msgstr ""
#~ msgstr "Capas de baja densidad (EXPERIMENTAL)" #~ msgstr "Capas de baja densidad (EXPERIMENTAL)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you " #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "selected\". \n" #~ "\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection" #~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr "" #~ msgstr ""
#~ "Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora " #~ "Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora "

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n" "Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -1978,6 +1978,12 @@ msgstr "Organiser"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "organiser la plaque actuelle" msgstr "organiser la plaque actuelle"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Rotation automatique" msgstr "Rotation automatique"
@@ -2443,11 +2449,11 @@ msgstr "Recharge Automatique"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS non connecté" msgstr "AMS non connecté"
msgid "Load Filament" msgid "Load"
msgstr "Charger" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Déchargement" msgstr "Décharger"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Bobine Ext" msgstr "Bobine Ext"
@@ -2464,7 +2470,7 @@ msgstr "Réessayer"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Étalonnage de l'AMS…" msgstr "Étalonnage de l'AMS…"
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Un problème est survenu lors de la calibration. Cliquez pour voir la " "Un problème est survenu lors de la calibration. Cliquez pour voir la "
"solution." "solution."
@@ -2507,10 +2513,8 @@ msgstr "Saisir un nouveau filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Choisissez un emplacement AMS puis appuyez sur le bouton correspondant pour "
"Charger ou Décharger le filament."
msgid "Edit" msgid "Edit"
msgstr "Éditer" msgstr "Éditer"
@@ -3151,6 +3155,14 @@ msgstr ""
"L'AMS passera automatiquement à une autre bobine avec les mêmes propriétés " "L'AMS passera automatiquement à une autre bobine avec les mêmes propriétés "
"de filament lorsque la bobine actuelle est épuisé" "de filament lorsque la bobine actuelle est épuisé"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Fichier" msgstr "Fichier"
@@ -3230,6 +3242,45 @@ msgstr "Exécution de scripts de post-traitement"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "Le script de post-traitement a été exécuté avec succès" msgstr "Le script de post-traitement a été exécuté avec succès"
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Erreur inconnue lors de l'exportation du G-code." msgstr "Erreur inconnue lors de l'exportation du G-code."
@@ -3623,18 +3674,6 @@ msgstr "Pause en cas d'erreur de la première couche"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "Pause en cas de buse bouchée" msgstr "Pause en cas de buse bouchée"
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Carte mère"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Inconnu" msgstr "Inconnu"
@@ -4172,7 +4211,7 @@ msgstr "Le volume:"
msgid "Size:" msgid "Size:"
msgstr "Taille:" msgstr "Taille:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4316,6 +4355,9 @@ msgstr "Aperçu"
msgid "Device" msgid "Device"
msgstr "Appareil" msgstr "Appareil"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Projet" msgstr "Projet"
@@ -4355,6 +4397,9 @@ msgstr "Tout imprimer"
msgid "Send all" msgid "Send all"
msgstr "Tout envoyer" msgstr "Tout envoyer"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Raccourcis Clavier" msgstr "Raccourcis Clavier"
@@ -5183,9 +5228,6 @@ msgstr "Chamb"
msgid "Bed" msgid "Bed"
msgstr "Plateau" msgstr "Plateau"
msgid "Unload"
msgstr "Décharger"
msgid "Debug Info" msgid "Debug Info"
msgstr "Les informations de débogage" msgstr "Les informations de débogage"
@@ -5373,9 +5415,6 @@ msgstr "État"
msgid "Update" msgid "Update"
msgstr "Mise à jour" msgstr "Mise à jour"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Ne plus afficher" msgstr "Ne plus afficher"
@@ -5624,6 +5663,12 @@ msgstr "Autoriser le son dinvite"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "Détection de filament coincé" msgstr "Détection de filament coincé"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "Type de buse" msgstr "Type de buse"
@@ -6092,19 +6137,23 @@ msgstr "Importation du modèle"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "préparation du fichier 3mf..." msgstr "préparation du fichier 3mf..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "téléchargement du projet..." msgstr "téléchargement du projet..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Projet téléchargé à %d%%" msgstr "Projet téléchargé à %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"Limportation vers OrcaSlicer a échoué. Veuillez télécharger le fichier et "
"limporter manuellement."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "Importer les archives SLA" msgstr "Importer les archives SLA"
@@ -6390,6 +6439,21 @@ msgstr "Impérial"
msgid "Units" msgid "Units"
msgstr "Unités" msgstr "Unités"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "Accueil" msgstr "Accueil"
@@ -6482,6 +6546,14 @@ msgstr ""
"Si cette option est activée, Orca se souviendra de la configuration du " "Si cette option est activée, Orca se souviendra de la configuration du "
"filament/processus pour chaque imprimante et la modifiera automatiquement." "filament/processus pour chaque imprimante et la modifiera automatiquement."
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "Réseau" msgstr "Réseau"
@@ -7154,6 +7226,9 @@ msgstr "Calibration automatique du débit à laide du Micro-Lidar"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Modification du nom de l'appareil" msgstr "Modification du nom de l'appareil"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Envoyer sur la carte SD de l'imprimante" msgstr "Envoyer sur la carte SD de l'imprimante"
@@ -7211,6 +7286,26 @@ msgstr "Délai d'expiration du rapport de connexion"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Erreur inconnue" msgstr "Erreur inconnue"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Connectez-vous à l'imprimante" msgstr "Connectez-vous à l'imprimante"
@@ -7450,8 +7545,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Lorsque vous enregistrez un timelapse sans tête doutil, il est recommandé " "Lorsque vous enregistrez un timelapse sans tête doutil, il est recommandé "
"dajouter une \"Tour dessuyage timelapse\".\n" "dajouter une \"Tour dessuyage timelapse\".\n"
@@ -7603,9 +7698,9 @@ msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament " "Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate" "does not support to print on the Cool Plate"
msgstr "" msgstr ""
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool " "Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate"
"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas " "\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être "
"être imprimé sur le plateau froid." "imprimé sur le plateau froid."
msgid "Engineering plate" msgid "Engineering plate"
msgstr "Plaque Engineering" msgstr "Plaque Engineering"
@@ -7882,26 +7977,23 @@ msgstr "Undef"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Modifications non enregistrées" msgstr "Modifications non enregistrées"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "Actions pour les changements non enregistrés" msgstr "Ignorer ou conserver les modifications"
msgid "Preset Value" msgid "Old Value"
msgstr "Valeur prédéfinie" msgstr "Ancienne valeur"
msgid "Modified Value" msgid "New Value"
msgstr "Valeur modifiée" msgstr "Nouvelle Valeur"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "Transfert de la valeur modifiée" msgstr "Transférer"
msgid "Don't save" msgid "Don't save"
msgstr "Ne pas enregistrer" msgstr "Ne pas enregistrer"
msgid "Use Preset Value" msgid "Discard"
msgstr "Utiliser la valeur prédéfinie" msgstr "Ignorer"
msgid "Save Modified Value"
msgstr "Enregistrer la valeur modifiée"
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "" msgstr ""
@@ -7965,41 +8057,23 @@ msgstr "Vous avez modifié certains paramètres du réglage prédéfini « %1%
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
"\n"
"Souhaitez-vous enregistrer les paramètres modifiés (valeur modifiée) ?"
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
"\n"
"Souhaitez-vous conserver ces paramètres modifiés (valeur modifiée) après "
"avoir changé de préréglage ?"
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
"Vous avez précédemment modifié vos paramètres et vous êtes sur le point de "
"les remplacer par de nouveaux."
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
"the modified values to the new project"
msgstr "" msgstr ""
"\n"
"Souhaitez-vous conserver vos paramètres modifiés actuels ou utiliser des "
"paramètres prédéfinis ?"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr ""
"\n"
"Souhaitez-vous sauvegarder vos paramètres modifiés actuels ?"
msgid "Extruders count" msgid "Extruders count"
msgstr "Nombre d'extrudeurs" msgstr "Nombre d'extrudeurs"
@@ -8016,9 +8090,6 @@ msgstr "Afficher tous les préréglages (y compris incompatibles)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Sélectionnez les préréglages à comparer" msgstr "Sélectionnez les préréglages à comparer"
msgid "Transfer"
msgstr "Transférer"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8524,6 +8595,39 @@ msgstr "Terminé"
msgid "resume" msgid "resume"
msgstr "reprendre" msgstr "reprendre"
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Charger"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "Confirmation et mise à jour de la buse" msgstr "Confirmation et mise à jour de la buse"
@@ -10893,6 +10997,9 @@ msgstr "Support Cubique"
msgid "Lightning" msgid "Lightning"
msgstr "Lightning" msgstr "Lightning"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Longueur de lancrage de remplissage interne" msgstr "Longueur de lancrage de remplissage interne"
@@ -11100,10 +11207,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
"la couche \"close_fan_the_first_x_layers\" jusquau maximum à la couche " "la couche \"close_fan_the_first_x_layers\" jusquau maximum à la couche "
@@ -12747,8 +12854,8 @@ msgid ""
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
"close all holes in the model." "close all holes in the model."
msgstr "" msgstr ""
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " "Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
"« Fermer les trous » pour fermer tous les trous du modèle." "Fermer les trous » pour fermer tous les trous du modèle."
msgid "Regular" msgid "Regular"
msgstr "Standard" msgstr "Standard"
@@ -13511,8 +13618,8 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most " "Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked" "printers. Default is checked"
msgstr "" msgstr ""
"Lextrusion relative est recommandée lors de lutilisation de loption " "Lextrusion relative est recommandée lors de lutilisation de loption « "
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
"non verrouillée (mode dextrusion absolu). La tour dessuyage nest " "non verrouillée (mode dextrusion absolu). La tour dessuyage nest "
"compatible quavec le mode relatif. Il est recommandé sur la plupart des " "compatible quavec le mode relatif. Il est recommandé sur la plupart des "
"imprimantes. Loption par défaut est cochée" "imprimantes. Loption par défaut est cochée"
@@ -14138,6 +14245,9 @@ msgstr "Annulé"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj : échec de l'analyse" msgstr "load_obj : échec de l'analyse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "Le fichier contient des polygones comportant plus de 4 sommets." msgstr "Le fichier contient des polygones comportant plus de 4 sommets."
@@ -14266,6 +14376,14 @@ msgstr "Veuillez sélectionner le filament à calibrer."
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "La valeur saisie doit être 3." msgstr "La valeur saisie doit être 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Connexion à limprimante…" msgstr "Connexion à limprimante…"
@@ -14277,6 +14395,22 @@ msgstr ""
"Le résultat de la calibration dynamique du débit a été enregistré sur " "Le résultat de la calibration dynamique du débit a été enregistré sur "
"limprimante" "limprimante"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
"Il existe déjà un résultat détalonnage antérieur portant le même nom : %s. "
"Un seul des résultats portant le même nom est sauvegardé. Êtes-vous sûr de "
"vouloir remplacer le résultat antérieur ?"
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Erreur interne" msgstr "Erreur interne"
@@ -14341,9 +14475,9 @@ msgstr ""
"Wiki.\n" "Wiki.\n"
"\n" "\n"
"Habituellement, la calibration est inutile. Lorsque vous démarrez une " "Habituellement, la calibration est inutile. Lorsque vous démarrez une "
"impression d'une seule couleur/matériau, avec l'option \"Calibration du " "impression d'une seule couleur/matériau, avec l'option \"Calibration du débit"
"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante " "\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra "
"suivra l'ancienne méthode de calibration du filament avant l'impression.\n" "l'ancienne méthode de calibration du filament avant l'impression.\n"
"Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante " "Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante "
"utilise le paramètre de compensation par défaut pour le filament lors de " "utilise le paramètre de compensation par défaut pour le filament lors de "
"chaque changement de filament, ce qui donne un bon résultat dans la plupart " "chaque changement de filament, ce qui donne un bon résultat dans la plupart "
@@ -14604,9 +14738,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Paramètres dimpression" msgstr "Paramètres dimpression"
msgid "- ℃"
msgstr "- ℃"
msgid "Plate Type" msgid "Plate Type"
msgstr "Type de plaque" msgstr "Type de plaque"
@@ -14654,12 +14785,6 @@ msgstr "À la valeur K"
msgid "Step value" msgid "Step value"
msgstr "Intervalle" msgstr "Intervalle"
msgid "0.5"
msgstr "0.5"
msgid "0.005"
msgstr "0.005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
"Le diamètre de la buse a été synchronisé à partir des paramètres de " "Le diamètre de la buse a été synchronisé à partir des paramètres de "
@@ -14689,11 +14814,15 @@ msgstr "Actualisation de historique des calibrations dynamiques du débit"
msgid "Action" msgid "Action"
msgstr "Action" msgstr "Action"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Editer la calibration dynamique du débit" msgstr "Editer la calibration dynamique du débit"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "Nouvelle calibration de la dynamique du flux" msgstr ""
msgid "Ok" msgid "Ok"
msgstr "" msgstr ""
@@ -14701,16 +14830,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "Le filament doit être sélectionné." msgstr "Le filament doit être sélectionné."
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
"Il existe déjà un résultat détalonnage antérieur portant le même nom : %s. "
"Un seul des résultats portant le même nom est sauvegardé. Êtes-vous sûr de "
"vouloir remplacer le résultat antérieur ?"
msgid "Network lookup" msgid "Network lookup"
msgstr "Recherche de réseau" msgstr "Recherche de réseau"
@@ -15136,8 +15255,8 @@ msgstr ""
"Voulez-vous le réécrire ?" "Voulez-vous le réécrire ?"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Nous renommerions les préréglages en « Vendor Type Serial @printer you " "Nous renommerions les préréglages en « Vendor Type Serial @printer you "
@@ -15786,6 +15905,175 @@ msgstr ""
"Corps du message : « %1% »\n" "Corps du message : « %1% »\n"
"Erreur : « %2% »" "Erreur : « %2% »"
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "Connexion à Obico réussie !" msgstr "Connexion à Obico réussie !"
@@ -16231,6 +16519,107 @@ msgstr ""
"déformer, tels que lABS, une augmentation appropriée de la température du " "déformer, tels que lABS, une augmentation appropriée de la température du "
"plateau chauffant peut réduire la probabilité de déformation." "plateau chauffant peut réduire la probabilité de déformation."
#~ msgid "Actions For Unsaved Changes"
#~ msgstr "Actions pour les changements non enregistrés"
#~ msgid "Preset Value"
#~ msgstr "Valeur prédéfinie"
#~ msgid "Modified Value"
#~ msgstr "Valeur modifiée"
#~ msgid "Transfer Modified Value"
#~ msgstr "Transfert de la valeur modifiée"
#~ msgid "Use Preset Value"
#~ msgstr "Utiliser la valeur prédéfinie"
#~ msgid "Save Modified Value"
#~ msgstr "Enregistrer la valeur modifiée"
#~ msgid ""
#~ "\n"
#~ "Would you like to save these changed settings(modified value)?"
#~ msgstr ""
#~ "\n"
#~ "Souhaitez-vous enregistrer les paramètres modifiés (valeur modifiée) ?"
#~ msgid ""
#~ "\n"
#~ "Would you like to keep these changed settings(modified value) after "
#~ "switching preset?"
#~ msgstr ""
#~ "\n"
#~ "Souhaitez-vous conserver ces paramètres modifiés (valeur modifiée) après "
#~ "avoir changé de préréglage ?"
#~ msgid ""
#~ "You have previously modified your settings and are about to overwrite "
#~ "them with new ones."
#~ msgstr ""
#~ "Vous avez précédemment modifié vos paramètres et vous êtes sur le point "
#~ "de les remplacer par de nouveaux."
#~ msgid ""
#~ "\n"
#~ "Do you want to keep your current modified settings, or use preset "
#~ "settings?"
#~ msgstr ""
#~ "\n"
#~ "Souhaitez-vous conserver vos paramètres modifiés actuels ou utiliser des "
#~ "paramètres prédéfinis ?"
#~ msgid ""
#~ "\n"
#~ "Do you want to save your current modified settings?"
#~ msgstr ""
#~ "\n"
#~ "Souhaitez-vous sauvegarder vos paramètres modifiés actuels ?"
#~ msgid "Unload Filament"
#~ msgstr "Déchargement"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Choisissez un emplacement AMS puis appuyez sur le bouton correspondant "
#~ "pour Charger ou Décharger le filament."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Carte mère"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "Limportation vers OrcaSlicer a échoué. Veuillez télécharger le fichier "
#~ "et limporter manuellement."
#~ msgid "- ℃"
#~ msgstr "- ℃"
#~ msgid "0.5"
#~ msgstr "0.5"
#~ msgid "0.005"
#~ msgstr "0.005"
#~ msgid "New Flow Dynamics Calibration"
#~ msgstr "Nouvelle calibration de la dynamique du flux"
#~ msgid "" #~ msgid ""
#~ "The 3mf file version is in Beta and it is newer than the current " #~ "The 3mf file version is in Beta and it is newer than the current "
#~ "OrcaSlicer version." #~ "OrcaSlicer version."
@@ -16348,18 +16737,6 @@ msgstr ""
#~ "Impossible d'effectuer une opération booléenne sur les maillages du " #~ "Impossible d'effectuer une opération booléenne sur les maillages du "
#~ "modèle. Seules les parties positives seront exportées." #~ "modèle. Seules les parties positives seront exportées."
#~ msgid "Transfer or discard changes"
#~ msgstr "Ignorer ou conserver les modifications"
#~ msgid "Old Value"
#~ msgstr "Ancienne valeur"
#~ msgid "New Value"
#~ msgstr "Nouvelle Valeur"
#~ msgid "Discard"
#~ msgstr "Ignorer"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"
@@ -16471,8 +16848,8 @@ msgstr ""
#~ "thickness (top+bottom solid layers)" #~ "thickness (top+bottom solid layers)"
#~ msgstr "" #~ msgstr ""
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
#~ "garantir l'épaisseur verticale de la coque (couches solides " #~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
#~ "supérieure+inférieure)." #~ "+inférieure)."
#~ msgid "Further reduce solid infill on walls (beta)" #~ msgid "Further reduce solid infill on walls (beta)"
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"Language: hu\n" "Language: hu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -1897,6 +1897,12 @@ msgstr "Elrendezés"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "aktuális tálca elrendezése" msgstr "aktuális tálca elrendezése"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Automatikus forgatás" msgstr "Automatikus forgatás"
@@ -2361,11 +2367,11 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "Az AMS nincs csatlakoztatva" msgstr "Az AMS nincs csatlakoztatva"
msgid "Load Filament" msgid "Load"
msgstr "Filament betöltés" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Filament kitöltése" msgstr "Kitöltés"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Kül. tekercs" msgstr "Kül. tekercs"
@@ -2382,7 +2388,7 @@ msgstr "Újra"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "AMS kalibrálása..." msgstr "AMS kalibrálása..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"A kalibráció során probléma merült fel. Kattintson a megoldás " "A kalibráció során probléma merült fel. Kattintson a megoldás "
"megtekintéséhez." "megtekintéséhez."
@@ -2425,10 +2431,8 @@ msgstr "Grab new filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Válassz egy AMS rekeszt, majd nyomd meg a \"Load\" vagy \"Unload\" gombot a "
"filament automatikus be- vagy kitöltéséhez."
msgid "Edit" msgid "Edit"
msgstr "Szerkesztés" msgstr "Szerkesztés"
@@ -3038,6 +3042,14 @@ msgstr ""
"Az AMS automatikusan egy másik, azonos tulajdonságú filamentre vált, ha az " "Az AMS automatikusan egy másik, azonos tulajdonságú filamentre vált, ha az "
"aktuális filament kifogy." "aktuális filament kifogy."
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Fájl" msgstr "Fájl"
@@ -3116,6 +3128,45 @@ msgstr "Utófeldolgozási szkriptek futtatása"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Ismeretlen hiba a G-kód exportálásakor." msgstr "Ismeretlen hiba a G-kód exportálásakor."
@@ -3485,18 +3536,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "MainBoard"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Ismeretlen" msgstr "Ismeretlen"
@@ -4019,7 +4058,7 @@ msgstr "Térfogat:"
msgid "Size:" msgid "Size:"
msgstr "Méret:" msgstr "Méret:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4159,6 +4198,9 @@ msgstr "Előnézet"
msgid "Device" msgid "Device"
msgstr "Nyomtató" msgstr "Nyomtató"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Projekt" msgstr "Projekt"
@@ -4198,6 +4240,9 @@ msgstr "Összes nyomtatása"
msgid "Send all" msgid "Send all"
msgstr "Összes elküldése" msgstr "Összes elküldése"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Gyorsbillentyűk" msgstr "Gyorsbillentyűk"
@@ -4973,9 +5018,6 @@ msgstr "Cham"
msgid "Bed" msgid "Bed"
msgstr "Asztal" msgstr "Asztal"
msgid "Unload"
msgstr "Kitöltés"
msgid "Debug Info" msgid "Debug Info"
msgstr "Hibakeresési infó" msgstr "Hibakeresési infó"
@@ -5145,9 +5187,6 @@ msgstr "Állapot"
msgid "Update" msgid "Update"
msgstr "Frissítés" msgstr "Frissítés"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Ne mutasd újra" msgstr "Ne mutasd újra"
@@ -5394,6 +5433,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5835,15 +5880,21 @@ msgstr "Modell importálása"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "3mf fájl előkészítése..." msgstr "3mf fájl előkészítése..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "projekt letöltése ..." msgstr "projekt letöltése ..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Projekt letöltve %d%%" msgstr "Projekt letöltve %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6111,6 +6162,21 @@ msgstr "Angolszász"
msgid "Units" msgid "Units"
msgstr "Mértékegység" msgstr "Mértékegység"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6187,6 +6253,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6827,6 +6901,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Eszköz nevének módosítása" msgstr "Eszköz nevének módosítása"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Küldés a nyomtatóban lévő MicroSD kártyára" msgstr "Küldés a nyomtatóban lévő MicroSD kártyára"
@@ -6882,6 +6959,26 @@ msgstr "Receive login report timeout"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Ismeretlen hiba" msgstr "Ismeretlen hiba"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Bejelentkezés a nyomtatóra" msgstr "Bejelentkezés a nyomtatóra"
@@ -7085,8 +7182,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy " "Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb " "helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
@@ -7494,26 +7591,23 @@ msgstr "Nincs meghatározva"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "mentetlen változások" msgstr "mentetlen változások"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Változások elvetése vagy megtartása"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Régi érték"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Új érték"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Átvitel"
msgid "Don't save" msgid "Don't save"
msgstr "Ne mentsd" msgstr "Ne mentsd"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Elvetés"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Kattints a jobb egérgombbal a teljes szöveg megjelenítéséhez." msgstr "Kattints a jobb egérgombbal a teljes szöveg megjelenítéséhez."
@@ -7576,28 +7670,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7615,9 +7703,6 @@ msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Select presets to compare" msgstr "Select presets to compare"
msgid "Transfer"
msgstr "Átvitel"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8093,6 +8178,39 @@ msgstr "Done"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Filament betöltés"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10110,6 +10228,9 @@ msgstr "Támasz kocka"
msgid "Lightning" msgid "Lightning"
msgstr "Világítás" msgstr "Világítás"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -10279,10 +10400,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12877,6 +12998,9 @@ msgstr "Canceled"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: failed to parse" msgstr "load_obj: failed to parse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices."
@@ -12993,6 +13117,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -13002,6 +13134,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -13227,9 +13372,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "Plate Type" msgstr "Plate Type"
@@ -13273,12 +13415,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -13306,10 +13442,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13318,13 +13458,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13705,8 +13838,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14249,6 +14382,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14621,6 +14923,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Filament kitöltése"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Válassz egy AMS rekeszt, majd nyomd meg a \"Load\" vagy \"Unload\" gombot "
#~ "a filament automatikus be- vagy kitöltéséhez."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "MainBoard"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "aktív" #~ msgstr "aktív"
@@ -14718,18 +15045,6 @@ msgstr ""
#~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "Unable to perform boolean operation on model meshes. Only positive parts "
#~ "will be exported." #~ "will be exported."
#~ msgid "Transfer or discard changes"
#~ msgstr "Változások elvetése vagy megtartása"
#~ msgid "Old Value"
#~ msgstr "Régi érték"
#~ msgid "New Value"
#~ msgstr "Új érték"
#~ msgid "Discard"
#~ msgstr "Elvetés"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -1962,6 +1962,12 @@ msgstr "Disponi"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "Disponi sul piatto corrente" msgstr "Disponi sul piatto corrente"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Rotazione automatica" msgstr "Rotazione automatica"
@@ -2431,11 +2437,11 @@ msgstr "Ricarica automatica"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS non collegato" msgstr "AMS non collegato"
msgid "Load Filament" msgid "Load"
msgstr "Carica" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Scarica Filamento" msgstr "Scarica"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Bobina esterna" msgstr "Bobina esterna"
@@ -2452,7 +2458,7 @@ msgstr "Riprova"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Calibrazione AMS..." msgstr "Calibrazione AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Si è verificato un problema durante la calibrazione. Clicca per visualizzare " "Si è verificato un problema durante la calibrazione. Clicca per visualizzare "
"la soluzione." "la soluzione."
@@ -2495,10 +2501,8 @@ msgstr "Prendo un nuovo filamento"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Seleziona uno slot AMS, premi \"Carica\" o \"Scarica\" per caricare o "
"scaricare automaticamente il filamento."
msgid "Edit" msgid "Edit"
msgstr "Modifica" msgstr "Modifica"
@@ -3126,6 +3130,14 @@ msgstr ""
"L'AMS passerà automaticamente a un altro filamento con stesse proprietà " "L'AMS passerà automaticamente a un altro filamento con stesse proprietà "
"quando il filamento corrente si esaurisce" "quando il filamento corrente si esaurisce"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "File" msgstr "File"
@@ -3206,6 +3218,45 @@ msgstr "Esecuzione script di post-elaborazione"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Errore sconosciuto nell'esportazione del G-code." msgstr "Errore sconosciuto nell'esportazione del G-code."
@@ -3592,18 +3643,6 @@ msgstr "Pausa in caso di errore nel primo layer"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "Pausa in caso di intasamento del nozzle" msgstr "Pausa in caso di intasamento del nozzle"
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "MainBoard"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Sconosciuto" msgstr "Sconosciuto"
@@ -4141,7 +4180,7 @@ msgstr "Volume:"
msgid "Size:" msgid "Size:"
msgstr "Dimensione:" msgstr "Dimensione:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4283,6 +4322,9 @@ msgstr "Anteprima"
msgid "Device" msgid "Device"
msgstr "Dispositivo" msgstr "Dispositivo"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Progetto" msgstr "Progetto"
@@ -4322,6 +4364,9 @@ msgstr "Stampa tutto"
msgid "Send all" msgid "Send all"
msgstr "Invia tutto" msgstr "Invia tutto"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Scorciatoie Tastiera" msgstr "Scorciatoie Tastiera"
@@ -5118,9 +5163,6 @@ msgstr "Camera"
msgid "Bed" msgid "Bed"
msgstr "Piano" msgstr "Piano"
msgid "Unload"
msgstr "Scarica"
msgid "Debug Info" msgid "Debug Info"
msgstr "Informazioni di debug" msgstr "Informazioni di debug"
@@ -5307,9 +5349,6 @@ msgstr "Stato"
msgid "Update" msgid "Update"
msgstr "Aggiorna" msgstr "Aggiorna"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Non mostrare più" msgstr "Non mostrare più"
@@ -5555,6 +5594,12 @@ msgstr "Consenti suono di richiesta"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "Rilevamento del groviglio del filamento" msgstr "Rilevamento del groviglio del filamento"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -6021,19 +6066,23 @@ msgstr "Importazione del modello"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "preparazione file 3mf..." msgstr "preparazione file 3mf..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "Download progetto..." msgstr "Download progetto..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Progetto scaricato %d%%" msgstr "Progetto scaricato %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"L'importazione di Orca Slicer non è riuscita. Si prega di scaricare il file "
"e importarlo manualmente."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "Importa archivio SLA" msgstr "Importa archivio SLA"
@@ -6307,6 +6356,21 @@ msgstr "Imperiale"
msgid "Units" msgid "Units"
msgstr "Unità" msgstr "Unità"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "Home" msgstr "Home"
@@ -6385,6 +6449,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "Rete" msgstr "Rete"
@@ -7037,6 +7109,9 @@ msgstr "Calibrazione automatica del flusso tramite Micro Lidar"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Modifica nome del dispositivo" msgstr "Modifica nome del dispositivo"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Invia a microSD stampante" msgstr "Invia a microSD stampante"
@@ -7092,6 +7167,26 @@ msgstr "Timeout ricezione del rapporto di login"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Fallimento sconosciuto" msgstr "Fallimento sconosciuto"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Log in stampante" msgstr "Log in stampante"
@@ -7310,8 +7405,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Quando si registra un timelapse senza testa di stampa, si consiglia di " "Quando si registra un timelapse senza testa di stampa, si consiglia di "
"aggiungere un \"Timelapse Torre di pulizia\"\n" "aggiungere un \"Timelapse Torre di pulizia\"\n"
@@ -7732,26 +7827,23 @@ msgstr "Indefinito"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Modifiche non salvate" msgstr "Modifiche non salvate"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Scarta o mantieni le modifiche"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Valore precedente"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Nuovo valore"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Trasferisci"
msgid "Don't save" msgid "Don't save"
msgstr "Non salvare" msgstr "Non salvare"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Cancella"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "" msgstr ""
@@ -7814,28 +7906,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7853,9 +7939,6 @@ msgstr "Mostra tutti i preset (compresi non compatibili)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Seleziona i preset da confrontare" msgstr "Seleziona i preset da confrontare"
msgid "Transfer"
msgstr "Trasferisci"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8361,6 +8444,39 @@ msgstr "Fine"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Carica"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "Conferma e aggiorna l'ugello" msgstr "Conferma e aggiorna l'ugello"
@@ -8456,8 +8572,8 @@ msgid ""
msgstr "" msgstr ""
"È stato rilevato un aggiornamento importante che deve essere eseguito prima " "È stato rilevato un aggiornamento importante che deve essere eseguito prima "
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile " "che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna " "effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
"firmware\"." "\"."
msgid "" msgid ""
"The firmware version is abnormal. Repairing and updating are required before " "The firmware version is abnormal. Repairing and updating are required before "
@@ -10712,6 +10828,9 @@ msgstr "Supporto cubico"
msgid "Lightning" msgid "Lightning"
msgstr "Lightning" msgstr "Lightning"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Lunghezza dell'ancora di riempimento sparsa" msgstr "Lunghezza dell'ancora di riempimento sparsa"
@@ -10919,17 +11038,16 @@ msgstr "Massima velocità della ventola al layer"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"La velocità della ventola aumenterà linearmente da zero al livello " "La velocità della ventola aumenterà linearmente da zero al livello "
"\"close_fan_the_first_x_layers\" al massimo al livello " "\"close_fan_the_first_x_layers\" al massimo al livello \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" verrà ignorato se " "\". \"full_fan_speed_layer\" verrà ignorato se inferiore a "
"inferiore a \"close_fan_the_first_x_layers\", nel qual caso la ventola " "\"close_fan_the_first_x_layers\", nel qual caso la ventola funzionerà alla "
"funzionerà alla massima velocità consentita al livello " "massima velocità consentita al livello \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" + 1."
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Supporta la velocità della ventola dell'interfaccia" msgstr "Supporta la velocità della ventola dell'interfaccia"
@@ -13931,6 +14049,9 @@ msgstr "Annullato"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: analisi non riuscita" msgstr "load_obj: analisi non riuscita"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "Il file contiene poligoni con più di 4 vertici." msgstr "Il file contiene poligoni con più di 4 vertici."
@@ -14059,6 +14180,14 @@ msgstr "Selezionare il filamento da calibrare."
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "La dimensione del valore di input deve essere 3." msgstr "La dimensione del valore di input deve essere 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Collegamento alla stampante..." msgstr "Collegamento alla stampante..."
@@ -14070,6 +14199,19 @@ msgstr ""
"Il risultato della calibrazione di Flow Dynamics è stato salvato nella " "Il risultato della calibrazione di Flow Dynamics è stato salvato nella "
"stampante" "stampante"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Errore interno" msgstr "Errore interno"
@@ -14385,9 +14527,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Parametri di stampa" msgstr "Parametri di stampa"
msgid "- ℃"
msgstr "- °C"
msgid "Plate Type" msgid "Plate Type"
msgstr "Tipo di piatto" msgstr "Tipo di piatto"
@@ -14437,12 +14576,6 @@ msgstr "Al valore k"
msgid "Step value" msgid "Step value"
msgstr "Valore del passaggio" msgstr "Valore del passaggio"
msgid "0.5"
msgstr "0.5"
msgid "0.005"
msgstr "0.005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
"Il diametro del nozzle è stato sincronizzato dalle impostazioni della " "Il diametro del nozzle è stato sincronizzato dalle impostazioni della "
@@ -14472,10 +14605,14 @@ msgstr "Aggiornamento dei record storici di calibrazione di Flow Dynamics"
msgid "Action" msgid "Action"
msgstr "Azione" msgstr "Azione"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Modifica calibrazione dinamica flusso (Edit Flow Dynamics)" msgstr "Modifica calibrazione dinamica flusso (Edit Flow Dynamics)"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -14484,13 +14621,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "Ricerca network" msgstr "Ricerca network"
@@ -14903,8 +15033,8 @@ msgstr ""
"Vuoi riscriverlo?" "Vuoi riscriverlo?"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer " "Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer "
@@ -15537,6 +15667,175 @@ msgstr ""
"Corpo messaggio: \"%1%\"\n" "Corpo messaggio: \"%1%\"\n"
"Errore: \"%2%\"" "Errore: \"%2%\""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -15966,6 +16265,47 @@ msgstr ""
"aumentare in modo appropriato la temperatura del piano riscaldato può " "aumentare in modo appropriato la temperatura del piano riscaldato può "
"ridurre la probabilità di deformazione." "ridurre la probabilità di deformazione."
#~ msgid "Unload Filament"
#~ msgstr "Scarica Filamento"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Seleziona uno slot AMS, premi \"Carica\" o \"Scarica\" per caricare o "
#~ "scaricare automaticamente il filamento."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "MainBoard"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "L'importazione di Orca Slicer non è riuscita. Si prega di scaricare il "
#~ "file e importarlo manualmente."
#~ msgid "- ℃"
#~ msgstr "- °C"
#~ msgid "0.5"
#~ msgstr "0.5"
#~ msgid "0.005"
#~ msgstr "0.005"
#~ msgid "active" #~ msgid "active"
#~ msgstr "attivo" #~ msgstr "attivo"
@@ -16076,18 +16416,6 @@ msgstr ""
#~ "Impossibile eseguire operazioni booleane sulle mesh del modello. Verranno " #~ "Impossibile eseguire operazioni booleane sulle mesh del modello. Verranno "
#~ "esportate solo le parti positive." #~ "esportate solo le parti positive."
#~ msgid "Transfer or discard changes"
#~ msgstr "Scarta o mantieni le modifiche"
#~ msgid "Old Value"
#~ msgstr "Valore precedente"
#~ msgid "New Value"
#~ msgstr "Nuovo valore"
#~ msgid "Discard"
#~ msgstr "Cancella"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"
@@ -16244,8 +16572,8 @@ msgstr ""
#~ msgstr "Nessun layer sparso (SPERIMENTALE)" #~ msgstr "Nessun layer sparso (SPERIMENTALE)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you " #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "selected\". \n" #~ "\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection" #~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr "" #~ msgstr ""
#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale " #~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale "

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -1885,6 +1885,12 @@ msgstr "レイアウト"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "現在のプレートをレイアウト" msgstr "現在のプレートをレイアウト"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "自動回転" msgstr "自動回転"
@@ -2333,11 +2339,11 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS が接続されていません" msgstr "AMS が接続されていません"
msgid "Load Filament" msgid "Load"
msgstr "ロード" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "アンロード" msgstr "アンロード"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "外部スプールホルダー" msgstr "外部スプールホルダー"
@@ -2354,7 +2360,7 @@ msgstr "再試行"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "AMS キャリブレーション" msgstr "AMS キャリブレーション"
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"キャリブレーション中に問題が発生しました。クリックして解決策をご確認くださ" "キャリブレーション中に問題が発生しました。クリックして解決策をご確認くださ"
"い。" "い。"
@@ -2397,10 +2403,8 @@ msgstr "Grab new filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"AMS スロットを選択し、[ロード] または [アンロード] をタップすると、フィラメン"
"トが自動的にロードまたはアンロードされます。"
msgid "Edit" msgid "Edit"
msgstr "編集" msgstr "編集"
@@ -2982,6 +2986,14 @@ msgid ""
"automatically when current filament runs out" "automatically when current filament runs out"
msgstr "使用中のフィラメントが切れた時に、同じ属性のフィラメントに切り替えます" msgstr "使用中のフィラメントが切れた時に、同じ属性のフィラメントに切り替えます"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "ファイル" msgstr "ファイル"
@@ -3057,6 +3069,45 @@ msgstr "後処理スクリプトを実行"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "不明なエラー: G-codeエクスポート" msgstr "不明なエラー: G-codeエクスポート"
@@ -3408,18 +3459,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "メインボード"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "不明" msgstr "不明"
@@ -3941,7 +3980,7 @@ msgstr "ボリューム"
msgid "Size:" msgid "Size:"
msgstr "サイズ:" msgstr "サイズ:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4077,6 +4116,9 @@ msgstr "プレビュー"
msgid "Device" msgid "Device"
msgstr "デバイス" msgstr "デバイス"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "プロジェクト" msgstr "プロジェクト"
@@ -4116,6 +4158,9 @@ msgstr "造形開始 (全プレート)"
msgid "Send all" msgid "Send all"
msgstr "送信 (全プレート)" msgstr "送信 (全プレート)"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "ショートカット" msgstr "ショートカット"
@@ -4884,9 +4929,6 @@ msgstr "筐体"
msgid "Bed" msgid "Bed"
msgstr "ベッド" msgstr "ベッド"
msgid "Unload"
msgstr "アンロード"
msgid "Debug Info" msgid "Debug Info"
msgstr "デバッグ情報" msgstr "デバッグ情報"
@@ -5056,9 +5098,6 @@ msgstr "デバイス状態"
msgid "Update" msgid "Update"
msgstr "更新" msgstr "更新"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "次回から表示しない" msgstr "次回から表示しない"
@@ -5298,6 +5337,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5730,15 +5775,21 @@ msgstr "モデルをインポート"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "3mfファイルを準備" msgstr "3mfファイルを準備"
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "プロジェクトをダウンロード中" msgstr "プロジェクトをダウンロード中"
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "プロジェクトをダウンロード %d%%" msgstr "プロジェクトをダウンロード %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6005,6 +6056,21 @@ msgstr "インチ"
msgid "Units" msgid "Units"
msgstr "単位" msgstr "単位"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6081,6 +6147,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6692,6 +6766,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "デバイス名を変更" msgstr "デバイス名を変更"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "プリンターのSDカードに送信" msgstr "プリンターのSDカードに送信"
@@ -6745,6 +6822,26 @@ msgstr "Receive login report timeout"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "不明な失敗" msgstr "不明な失敗"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "プリンターを登録" msgstr "プリンターを登録"
@@ -6942,8 +7039,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」" "ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム" "を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
@@ -7333,26 +7430,23 @@ msgstr "未定義"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "未保存の変更" msgstr "未保存の変更"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "変更を破棄または保持"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "古い値"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "新しい値"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "流用"
msgid "Don't save" msgid "Don't save"
msgstr "保存しない" msgstr "保存しない"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "破棄"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "マウスを右クリックして全文を表示します" msgstr "マウスを右クリックして全文を表示します"
@@ -7410,28 +7504,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7449,9 +7537,6 @@ msgstr "全てのプリセットを表示"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Select presets to compare" msgstr "Select presets to compare"
msgid "Transfer"
msgstr "流用"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -7919,6 +8004,39 @@ msgstr "Done"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "ロード"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -9846,6 +9964,9 @@ msgstr "キュービックサポート"
msgid "Lightning" msgid "Lightning"
msgstr "ライトニング" msgstr "ライトニング"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -10010,10 +10131,10 @@ msgstr "最大回転速度の積層"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12514,6 +12635,9 @@ msgstr "Canceled"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: failed to parse" msgstr "load_obj: failed to parse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices."
@@ -12630,6 +12754,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -12639,6 +12771,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -12864,9 +13009,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "Plate Type" msgstr "Plate Type"
@@ -12910,12 +13052,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -12943,10 +13079,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -12955,13 +13095,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13342,8 +13475,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -13885,6 +14018,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14236,6 +14538,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "アンロード"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "AMS スロットを選択し、[ロード] または [アンロード] をタップすると、フィラ"
#~ "メントが自動的にロードまたはアンロードされます。"
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "メインボード"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "アクティブ" #~ msgstr "アクティブ"
@@ -14325,18 +14652,6 @@ msgstr ""
#~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "Unable to perform boolean operation on model meshes. Only positive parts "
#~ "will be exported." #~ "will be exported."
#~ msgid "Transfer or discard changes"
#~ msgstr "変更を破棄または保持"
#~ msgid "Old Value"
#~ msgstr "古い値"
#~ msgid "New Value"
#~ msgstr "新しい値"
#~ msgid "Discard"
#~ msgstr "破棄"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

File diff suppressed because it is too large Load Diff

View File

@@ -159,6 +159,7 @@ src/slic3r/Utils/FlashAir.cpp
src/slic3r/Utils/MKS.cpp src/slic3r/Utils/MKS.cpp
src/slic3r/Utils/OctoPrint.cpp src/slic3r/Utils/OctoPrint.cpp
src/slic3r/Utils/Repetier.cpp src/slic3r/Utils/Repetier.cpp
src/slic3r/Utils/ProfileDescription.hpp
src/slic3r/Utils/Obico.cpp src/slic3r/Utils/Obico.cpp
src/slic3r/Utils/SimplyPrint.cpp src/slic3r/Utils/SimplyPrint.cpp
src/slic3r/Utils/Flashforge.cpp src/slic3r/Utils/Flashforge.cpp

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"Language: nl\n" "Language: nl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -1906,6 +1906,12 @@ msgstr "Rangschikken"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "Huidig printbed rangschikken" msgstr "Huidig printbed rangschikken"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Automatisch roteren" msgstr "Automatisch roteren"
@@ -2378,10 +2384,10 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS niet aangesloten" msgstr "AMS niet aangesloten"
msgid "Load Filament" msgid "Load"
msgstr "Filament laden" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Lossen" msgstr "Lossen"
msgid "Ext Spool" msgid "Ext Spool"
@@ -2399,7 +2405,7 @@ msgstr "Opnieuw proberen"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "AMS kalibreren..." msgstr "AMS kalibreren..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Er is een probleem opgetreden tijdens de kalibratie. Klik om de oplossing te " "Er is een probleem opgetreden tijdens de kalibratie. Klik om de oplossing te "
"bekijken." "bekijken."
@@ -2442,10 +2448,8 @@ msgstr "Grab new filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Kies een AMS sleuf en druk op de \"Laden\" of \"Verwijderen\" knop om het "
"filament automatisch te laden of te verwijderen."
msgid "Edit" msgid "Edit"
msgstr "Bewerken" msgstr "Bewerken"
@@ -3059,6 +3063,14 @@ msgstr ""
"AMS gaat automatisch verder met een andere spoel met dezelfde filament " "AMS gaat automatisch verder met een andere spoel met dezelfde filament "
"eigenschappen wanneer het huidige filament op is." "eigenschappen wanneer het huidige filament op is."
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Bestand" msgstr "Bestand"
@@ -3138,6 +3150,45 @@ msgstr "Het uitvoeren van post-processing scripts"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Onbekende fout tijdens het exporteren van de G-code" msgstr "Onbekende fout tijdens het exporteren van de G-code"
@@ -3514,18 +3565,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Moederbord"
msgid "TH"
msgstr "th"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Onbekend" msgstr "Onbekend"
@@ -4048,7 +4087,7 @@ msgstr "Volume:"
msgid "Size:" msgid "Size:"
msgstr "Maat:" msgstr "Maat:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4188,6 +4227,9 @@ msgstr "Voorvertoning"
msgid "Device" msgid "Device"
msgstr "Apparaat" msgstr "Apparaat"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Project" msgstr "Project"
@@ -4227,6 +4269,9 @@ msgstr "Print alles"
msgid "Send all" msgid "Send all"
msgstr "Alles verzenden" msgstr "Alles verzenden"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Sneltoesten" msgstr "Sneltoesten"
@@ -5002,9 +5047,6 @@ msgstr "Kamer"
msgid "Bed" msgid "Bed"
msgstr "Printbed" msgstr "Printbed"
msgid "Unload"
msgstr "Lossen"
msgid "Debug Info" msgid "Debug Info"
msgstr "Informatie over Debuggen" msgstr "Informatie over Debuggen"
@@ -5174,9 +5216,6 @@ msgstr "Status"
msgid "Update" msgid "Update"
msgstr "Updaten" msgstr "Updaten"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Niet nogmaals tonen" msgstr "Niet nogmaals tonen"
@@ -5431,6 +5470,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5883,15 +5928,21 @@ msgstr "Model importeren"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "voorbereiden van 3mf bestand..." msgstr "voorbereiden van 3mf bestand..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "project downloaden..." msgstr "project downloaden..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Project %d%% gedownload" msgstr "Project %d%% gedownload"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6163,6 +6214,21 @@ msgstr "Imperiaal"
msgid "Units" msgid "Units"
msgstr "Eenheden" msgstr "Eenheden"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6240,6 +6306,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6889,6 +6963,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "De naam van het apparaat wijzigen" msgstr "De naam van het apparaat wijzigen"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Verzenden naar de MicroSD-kaart in de printer" msgstr "Verzenden naar de MicroSD-kaart in de printer"
@@ -6943,6 +7020,26 @@ msgstr "Receive login report timeout"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Onbekende fout" msgstr "Onbekende fout"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Inloggen op printer" msgstr "Inloggen op printer"
@@ -7151,8 +7248,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een " "Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
"„Timelapse Wipe Tower” toe te voegen \n" "„Timelapse Wipe Tower” toe te voegen \n"
@@ -7562,26 +7659,23 @@ msgstr "Niet gedefinieerd"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "niet-opgeslagen wijzigingen" msgstr "niet-opgeslagen wijzigingen"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Verwerp of bewaar aanpassingen"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Oude waarde"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Nieuwe waarde"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Overdracht"
msgid "Don't save" msgid "Don't save"
msgstr "Niet opslaan" msgstr "Niet opslaan"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Verwerpen"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Klik op de rechtermuisknop om de volledige tekst weer te geven." msgstr "Klik op de rechtermuisknop om de volledige tekst weer te geven."
@@ -7647,28 +7741,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7686,9 +7774,6 @@ msgstr "Toon alle presets (inclusief incompatibele)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Select presets to compare" msgstr "Select presets to compare"
msgid "Transfer"
msgstr "Overdracht"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8170,6 +8255,39 @@ msgstr "Done"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Filament laden"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10200,6 +10318,9 @@ msgstr "Ondersteuning Cubic"
msgid "Lightning" msgid "Lightning"
msgstr "Lightning" msgstr "Lightning"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -10372,10 +10493,10 @@ msgstr "Volledige snelheid op laag"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12991,6 +13112,9 @@ msgstr "Canceled"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: failed to parse" msgstr "load_obj: failed to parse"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices."
@@ -13107,6 +13231,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -13116,6 +13248,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -13341,9 +13486,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "Plate Type" msgstr "Plate Type"
@@ -13387,12 +13529,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -13420,10 +13556,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13432,13 +13572,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13819,8 +13952,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14363,6 +14496,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14735,6 +15037,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Lossen"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Kies een AMS sleuf en druk op de \"Laden\" of \"Verwijderen\" knop om het "
#~ "filament automatisch te laden of te verwijderen."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Moederbord"
#~ msgid "TH"
#~ msgstr "th"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "Actief" #~ msgstr "Actief"
@@ -14832,18 +15159,6 @@ msgstr ""
#~ "Unable to perform boolean operation on model meshes. Only positive parts " #~ "Unable to perform boolean operation on model meshes. Only positive parts "
#~ "will be exported." #~ "will be exported."
#~ msgid "Transfer or discard changes"
#~ msgstr "Verwerp of bewaar aanpassingen"
#~ msgid "Old Value"
#~ msgstr "Oude waarde"
#~ msgid "New Value"
#~ msgstr "Nieuwe waarde"
#~ msgid "Discard"
#~ msgstr "Verwerpen"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2024-04-12 13:49+0700\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: andylg@yandex.ru\n" "Language-Team: andylg@yandex.ru\n"
@@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.2\n"
msgid "Supports Painting" msgid "Supports Painting"
@@ -1957,6 +1957,12 @@ msgstr "Расставить"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "Расстановка моделей на текущем столе" msgstr "Расстановка моделей на текущем столе"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Автоповорот" msgstr "Автоповорот"
@@ -2426,11 +2432,11 @@ msgstr "Дозаправка"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "АСПП не подключена" msgstr "АСПП не подключена"
msgid "Load Filament" msgid "Load"
msgstr "Загрузить" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Выгрузить" msgstr "Выгруз."
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Внеш. катушка" msgstr "Внеш. катушка"
@@ -2447,7 +2453,7 @@ msgstr "Повтор"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Калибровка АСПП..." msgstr "Калибровка АСПП..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Во время калибровки возникла проблема. Нажмите, чтобы просмотреть решение." "Во время калибровки возникла проблема. Нажмите, чтобы просмотреть решение."
@@ -2489,10 +2495,8 @@ msgstr "Загрузка нового прутка"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Выберите слот АСПП, затем нажмите кнопку «Загрузить» или «Выгрузить» для "
"автоматической загрузки или выгрузки прутка."
msgid "Edit" msgid "Edit"
msgstr "Правка" msgstr "Правка"
@@ -3124,6 +3128,14 @@ msgstr ""
"АСПП автоматически переключится на другую катушку с тем же типом материала, " "АСПП автоматически переключится на другую катушку с тем же типом материала, "
"когда текущий закончится." "когда текущий закончится."
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Файл" msgstr "Файл"
@@ -3203,6 +3215,45 @@ msgstr "Запуск скриптов постобработки"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Неизвестная ошибка при экспорте G-кода." msgstr "Неизвестная ошибка при экспорте G-кода."
@@ -3599,18 +3650,6 @@ msgstr "Пауза при ошибке на первом слое"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "Пауза при засорении сопла" msgstr "Пауза при засорении сопла"
msgid "MC"
msgstr "Плата управления"
msgid "MainBoard"
msgstr "Материнская плата"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Неизвестно" msgstr "Неизвестно"
@@ -4148,7 +4187,7 @@ msgstr "Объём:"
msgid "Size:" msgid "Size:"
msgstr "Размер:" msgstr "Размер:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4291,6 +4330,9 @@ msgstr "Предпросмотр нарезки"
msgid "Device" msgid "Device"
msgstr "Принтер" msgstr "Принтер"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Проект" msgstr "Проект"
@@ -4330,6 +4372,9 @@ msgstr "Распечатать все столы"
msgid "Send all" msgid "Send all"
msgstr "Отправить G-код всех столов на SD-карту" msgstr "Отправить G-код всех столов на SD-карту"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Горячие клавиши" msgstr "Горячие клавиши"
@@ -5127,9 +5172,6 @@ msgstr "Выдув"
msgid "Bed" msgid "Bed"
msgstr "Стол" msgstr "Стол"
msgid "Unload"
msgstr "Выгруз."
msgid "Debug Info" msgid "Debug Info"
msgstr "Отладочная информация" msgstr "Отладочная информация"
@@ -5318,9 +5360,6 @@ msgstr "Статус"
msgid "Update" msgid "Update"
msgstr "Обновление" msgstr "Обновление"
msgid "HMS"
msgstr "Здоровье принтера"
msgid "Don't show again" msgid "Don't show again"
msgstr "Больше не показывать" msgstr "Больше не показывать"
@@ -5568,6 +5607,12 @@ msgstr "Разрешить звуковые уведомления"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "Обнаружение запутывания прутка" msgstr "Обнаружение запутывания прутка"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -6030,19 +6075,23 @@ msgstr "Импортирование модели"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "подготовка 3mf файла..." msgstr "подготовка 3mf файла..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "скачивание проекта..." msgstr "скачивание проекта..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Проект загружен %d%%" msgstr "Проект загружен %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
"Не удалось импортировать в Orca Slicer. Загрузите файл и импортируйте его "
"вручную."
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "Импорт SLA архива" msgstr "Импорт SLA архива"
@@ -6317,6 +6366,21 @@ msgstr ""
"Единицы \n" "Единицы \n"
"измерения" "измерения"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "Домашняя страница" msgstr "Домашняя страница"
@@ -6401,6 +6465,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "Сеть" msgstr "Сеть"
@@ -7057,6 +7129,9 @@ msgstr "Автокалибровка потока с помощью микрол
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Изменение имени принтера" msgstr "Изменение имени принтера"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Отправить на SD-карту принтера" msgstr "Отправить на SD-карту принтера"
@@ -7108,6 +7183,26 @@ msgstr "Таймаут получения отчета о входе"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Неизвестная ошибка" msgstr "Неизвестная ошибка"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Войти в принтер" msgstr "Войти в принтер"
@@ -7131,8 +7226,8 @@ msgid ""
"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services."
msgstr "" msgstr ""
"Перед использованием устройства Bambu Lab ознакомьтесь с правилами и " "Перед использованием устройства Bambu Lab ознакомьтесь с правилами и "
"условиями. Нажимая на кнопку \"Согласие на использование устройства Bambu " "условиями. Нажимая на кнопку \"Согласие на использование устройства Bambu Lab"
"Lab\", вы соглашаетесь соблюдать Политику конфиденциальности и Условия " "\", вы соглашаетесь соблюдать Политику конфиденциальности и Условия "
"использования (далее - \"Условия\"). Если вы не соблюдаете или не согласны с " "использования (далее - \"Условия\"). Если вы не соблюдаете или не согласны с "
"Политикой конфиденциальности Bambu Lab, пожалуйста, не пользуйтесь " "Политикой конфиденциальности Bambu Lab, пожалуйста, не пользуйтесь "
"оборудованием и услугами Bambu Lab." "оборудованием и услугами Bambu Lab."
@@ -7327,8 +7422,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"При записи таймлапса без видимости головы рекомендуется добавить «Черновая " "При записи таймлапса без видимости головы рекомендуется добавить «Черновая "
"башня таймлапса». \n" "башня таймлапса». \n"
@@ -7758,26 +7853,23 @@ msgstr "Не задано"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Несохранённые изменения" msgstr "Несохранённые изменения"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Отклонить или сохранить изменения"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Старое значение"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Новое значение"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Перенести"
msgid "Don't save" msgid "Don't save"
msgstr "Не сохранять" msgstr "Не сохранять"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Не сохранять"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Нажмите правой кнопкой мыши, чтобы отобразить полный текст." msgstr "Нажмите правой кнопкой мыши, чтобы отобразить полный текст."
@@ -7839,28 +7931,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7878,9 +7964,6 @@ msgstr "Показать все профили (включая несовмес
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Выберите профили для сравнения" msgstr "Выберите профили для сравнения"
msgid "Transfer"
msgstr "Перенести"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8375,6 +8458,39 @@ msgstr "Готово"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Загрузить"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "Подтвердить и обновить сопло" msgstr "Подтвердить и обновить сопло"
@@ -10698,6 +10814,9 @@ msgstr "Динам. куб. поддержка"
msgid "Lightning" msgid "Lightning"
msgstr "Молния" msgstr "Молния"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Длина привязок разреженного заполнения" msgstr "Длина привязок разреженного заполнения"
@@ -10752,8 +10871,8 @@ msgstr ""
"две ближайшие линии заполнения с коротким отрезком периметра. Если не " "две ближайшие линии заполнения с коротким отрезком периметра. Если не "
"найдено такого отрезка периметра короче этого параметра, линия заполнения " "найдено такого отрезка периметра короче этого параметра, линия заполнения "
"соединяется с отрезком периметра только с одной стороны, а длина отрезка " "соединяется с отрезком периметра только с одной стороны, а длина отрезка "
"периметра ограничена значением «Длина привязок разреженного заполнения» " "периметра ограничена значением «Длина привязок разреженного "
"(infill_anchor), но не больше этого параметра.\n" "заполнения» (infill_anchor), но не больше этого параметра.\n"
"Если установить 0, то будет использоваться старый алгоритм для соединения " "Если установить 0, то будет использоваться старый алгоритм для соединения "
"заполнения, который даёт такой же результат, как и при значениях 1000 и 0." "заполнения, который даёт такой же результат, как и при значениях 1000 и 0."
@@ -10908,17 +11027,17 @@ msgstr "Полная скорость вентилятора на слое"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"Скорость вентилятора будет нарастать линейно от нуля на слое " "Скорость вентилятора будет нарастать линейно от нуля на слое "
"\"close_fan_the_first_x_layers\" до максимума на слое " "\"close_fan_the_first_x_layers\" до максимума на слое \"full_fan_speed_layer"
"\"full_fan_speed_layer\". Значение \"full_fan_speed_layer\" будет " "\". Значение \"full_fan_speed_layer\" будет игнорироваться, если оно меньше "
"игнорироваться, если оно меньше значения \"close_fan_the_first_x_layers\", в " "значения \"close_fan_the_first_x_layers\", в этом случае вентилятор будет "
"этом случае вентилятор будет работать на максимально допустимой скорости на " "работать на максимально допустимой скорости на слое "
"слое \"close_fan_the_first_x_layers\" + 1." "\"close_fan_the_first_x_layers\" + 1."
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Скорость вентилятора на связующем слое" msgstr "Скорость вентилятора на связующем слое"
@@ -13921,6 +14040,9 @@ msgstr "Отменено"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: ошибка обработки" msgstr "load_obj: ошибка обработки"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "Файл содержит многоугольники с более чем 4 вершинами." msgstr "Файл содержит многоугольники с более чем 4 вершинами."
@@ -14047,6 +14169,14 @@ msgstr "Пожалуйста, выберите пруток для калибр
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "Размер входного значения должен быть равен 3." msgstr "Размер входного значения должен быть равен 3."
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "Подключение к принтеру..." msgstr "Подключение к принтеру..."
@@ -14056,6 +14186,19 @@ msgstr "Результат неудачного теста был удалён."
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "Результат калибровки динамики потока был сохранён на принтере" msgstr "Результат калибровки динамики потока был сохранён на принтере"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "Внутренняя ошибка" msgstr "Внутренняя ошибка"
@@ -14363,9 +14506,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "Параметры печати" msgstr "Параметры печати"
msgid "- ℃"
msgstr "- ℃"
msgid "Plate Type" msgid "Plate Type"
msgstr "Типа печатной пластины" msgstr "Типа печатной пластины"
@@ -14413,12 +14553,6 @@ msgstr "Конечный коэф. K"
msgid "Step value" msgid "Step value"
msgstr "Шаг" msgstr "Шаг"
msgid "0.5"
msgstr "0.5"
msgid "0.005"
msgstr "0.005"
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "Диаметр сопла был синхронизирован с настройками принтера" msgstr "Диаметр сопла был синхронизирован с настройками принтера"
@@ -14446,10 +14580,14 @@ msgstr "Обновление записей истории калибровки
msgid "Action" msgid "Action"
msgstr "Действие" msgstr "Действие"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "Редактировать калибровку динамики потока" msgstr "Редактировать калибровку динамики потока"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -14458,13 +14596,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "Поиск по сети" msgstr "Поиск по сети"
@@ -14874,8 +15005,8 @@ msgstr ""
"Хотите перезаписать его?" "Хотите перезаписать его?"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n" "Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
@@ -15485,6 +15616,175 @@ msgstr ""
"Текст сообщения: \"%1%\"\n" "Текст сообщения: \"%1%\"\n"
"Ошибка: \"%2%\"" "Ошибка: \"%2%\""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "Соединение с Obico успешно установлено." msgstr "Соединение с Obico успешно установлено."
@@ -15921,6 +16221,47 @@ msgstr ""
"ABS, повышение температуры подогреваемого стола может снизить эту " "ABS, повышение температуры подогреваемого стола может снизить эту "
"вероятность?" "вероятность?"
#~ msgid "Unload Filament"
#~ msgstr "Выгрузить"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Выберите слот АСПП, затем нажмите кнопку «Загрузить» или «Выгрузить» для "
#~ "автоматической загрузки или выгрузки прутка."
#~ msgid "MC"
#~ msgstr "Плата управления"
#~ msgid "MainBoard"
#~ msgstr "Материнская плата"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "Здоровье принтера"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr ""
#~ "Не удалось импортировать в Orca Slicer. Загрузите файл и импортируйте его "
#~ "вручную."
#~ msgid "- ℃"
#~ msgstr "- ℃"
#~ msgid "0.5"
#~ msgstr "0.5"
#~ msgid "0.005"
#~ msgstr "0.005"
#~ msgid "active" #~ msgid "active"
#~ msgstr "активный" #~ msgstr "активный"
@@ -16026,18 +16367,6 @@ msgstr ""
#~ "Невозможно выполнить булевы операции над сетками модели. Будут " #~ "Невозможно выполнить булевы операции над сетками модели. Будут "
#~ "экспортированы только положительные части." #~ "экспортированы только положительные части."
#~ msgid "Transfer or discard changes"
#~ msgstr "Отклонить или сохранить изменения"
#~ msgid "Old Value"
#~ msgstr "Старое значение"
#~ msgid "New Value"
#~ msgstr "Новое значение"
#~ msgid "Discard"
#~ msgstr "Не сохранять"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"Language: sv\n" "Language: sv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -1892,6 +1892,12 @@ msgstr "Arrangera"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "Arrangera plattan" msgstr "Arrangera plattan"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Auto Rotera" msgstr "Auto Rotera"
@@ -2354,10 +2360,10 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS ej ansluten" msgstr "AMS ej ansluten"
msgid "Load Filament" msgid "Load"
msgstr "Ladda Filament" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Mata ut" msgstr "Mata ut"
msgid "Ext Spool" msgid "Ext Spool"
@@ -2375,7 +2381,7 @@ msgstr "Försök igen"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Kalibrerar AMS..." msgstr "Kalibrerar AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "Ett problem uppstod vid kalibrering. Tryck för att se åtgärd." msgstr "Ett problem uppstod vid kalibrering. Tryck för att se åtgärd."
msgid "Calibrate again" msgid "Calibrate again"
@@ -2416,10 +2422,8 @@ msgstr "Ta ett nytt filament"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Välj ett AMS fack tryck sedan \"Ladda eller \"Mata ur\" knappen för att "
"automatiskt mata eller mata ut filament."
msgid "Edit" msgid "Edit"
msgstr "Redigera" msgstr "Redigera"
@@ -3027,6 +3031,14 @@ msgstr ""
"AMS fortsätter automatiskt till en annan spole med samma filament egenskaper " "AMS fortsätter automatiskt till en annan spole med samma filament egenskaper "
"när det aktuella filamentet tar slut." "när det aktuella filamentet tar slut."
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Fil" msgstr "Fil"
@@ -3104,6 +3116,45 @@ msgstr "Kör efterbearbetnings skript"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Okänt fel vid exportering av G-code." msgstr "Okänt fel vid exportering av G-code."
@@ -3474,18 +3525,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Moderkort"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "X Kamera"
msgid "Unknown" msgid "Unknown"
msgstr "Okänd" msgstr "Okänd"
@@ -4008,7 +4047,7 @@ msgstr "Volym:"
msgid "Size:" msgid "Size:"
msgstr "Storlek:" msgstr "Storlek:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4147,6 +4186,9 @@ msgstr "Förhandsvisning"
msgid "Device" msgid "Device"
msgstr "Enhet" msgstr "Enhet"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Projekt" msgstr "Projekt"
@@ -4186,6 +4228,9 @@ msgstr "Skriv ut allt"
msgid "Send all" msgid "Send all"
msgstr "Skicka alla" msgstr "Skicka alla"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Kortkommando" msgstr "Kortkommando"
@@ -4961,9 +5006,6 @@ msgstr "Kammare"
msgid "Bed" msgid "Bed"
msgstr "Byggplattan" msgstr "Byggplattan"
msgid "Unload"
msgstr "Mata ut"
msgid "Debug Info" msgid "Debug Info"
msgstr "Felsöknings Information" msgstr "Felsöknings Information"
@@ -5133,9 +5175,6 @@ msgstr "Status"
msgid "Update" msgid "Update"
msgstr "Uppdatera" msgstr "Uppdatera"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Visa inte igen" msgstr "Visa inte igen"
@@ -5380,6 +5419,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5822,15 +5867,21 @@ msgstr "Importerar Modell"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "förbereder 3mf-filen..." msgstr "förbereder 3mf-filen..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "laddar ner projekt ..." msgstr "laddar ner projekt ..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Projektet har laddats ned %d%%" msgstr "Projektet har laddats ned %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6095,6 +6146,21 @@ msgstr "Brittisk standard"
msgid "Units" msgid "Units"
msgstr "Enheter" msgstr "Enheter"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6171,6 +6237,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6806,6 +6880,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Ändra enhetens namn" msgstr "Ändra enhetens namn"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Skicka till skrivarens MicroSD-kort" msgstr "Skicka till skrivarens MicroSD-kort"
@@ -6857,6 +6934,26 @@ msgstr "Timeout för mottagande av inloggnings rapport"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Okänt fel" msgstr "Okänt fel"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Logga in skrivare" msgstr "Logga in skrivare"
@@ -7064,8 +7161,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger " "När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
"till ett \"Timelapse Wipe Tower\".\n" "till ett \"Timelapse Wipe Tower\".\n"
@@ -7475,26 +7572,23 @@ msgstr "Oidentifierad"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Ej sparade ändringar" msgstr "Ej sparade ändringar"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Överge eller Behåll ändringar"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Gammalt värde"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Nytt värde"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Överför"
msgid "Don't save" msgid "Don't save"
msgstr "Spara inte" msgstr "Spara inte"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Överge"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Högerklicka för att se hela texten." msgstr "Högerklicka för att se hela texten."
@@ -7556,28 +7650,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7595,9 +7683,6 @@ msgstr "Visa alla inställningar (inklusive inkompatibla)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Välj förinställningar att jämföra" msgstr "Välj förinställningar att jämföra"
msgid "Transfer"
msgstr "Överför"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8069,6 +8154,39 @@ msgstr "Klar"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Ladda Filament"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -9298,9 +9416,9 @@ msgid ""
"quality for needle and small details" "quality for needle and small details"
msgstr "" msgstr ""
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista " "Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets " "lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan " "\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
"förbättra kylnings kvaliteten för små detaljer" "kylnings kvaliteten för små detaljer"
msgid "Normal printing" msgid "Normal printing"
msgstr "Normal utskrift" msgstr "Normal utskrift"
@@ -10050,6 +10168,9 @@ msgstr "Kubik Support"
msgid "Lightning" msgid "Lightning"
msgstr "Blixt" msgstr "Blixt"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "" msgstr ""
@@ -10218,10 +10339,10 @@ msgstr "Full fläkthastighet vid lager"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
@@ -12804,6 +12925,9 @@ msgstr "Avbruten"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "load_obj: misslyckades med att analysera" msgstr "load_obj: misslyckades med att analysera"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "Filen innehåller polygoner med fler än 4 hörn." msgstr "Filen innehåller polygoner med fler än 4 hörn."
@@ -12920,6 +13044,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -12929,6 +13061,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -13154,9 +13299,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "Typ av byggplatta" msgstr "Typ av byggplatta"
@@ -13200,12 +13342,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -13233,10 +13369,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13245,13 +13385,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13632,8 +13765,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14176,6 +14309,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14548,6 +14850,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Mata ut"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Välj ett AMS fack tryck sedan \"Ladda eller \"Mata ur\" knappen för att "
#~ "automatiskt mata eller mata ut filament."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Moderkort"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "X Kamera"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "aktiv" #~ msgstr "aktiv"
@@ -14644,18 +14971,6 @@ msgstr ""
#~ "Det går inte att utföra booleska operationer på modell mesh. Endast " #~ "Det går inte att utföra booleska operationer på modell mesh. Endast "
#~ "positiva delar kommer att exporteras." #~ "positiva delar kommer att exporteras."
#~ msgid "Transfer or discard changes"
#~ msgstr "Överge eller Behåll ändringar"
#~ msgid "Old Value"
#~ msgstr "Gammalt värde"
#~ msgid "New Value"
#~ msgstr "Nytt värde"
#~ msgid "Discard"
#~ msgstr "Överge"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2023-08-10 20:25-0400\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.3.2\n" "X-Generator: Poedit 3.3.2\n"
msgid "Supports Painting" msgid "Supports Painting"
@@ -1904,6 +1904,12 @@ msgstr "Організувати"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "упорядкувати поточну табличку" msgstr "упорядкувати поточну табличку"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "Авто-поворот" msgstr "Авто-поворот"
@@ -2371,11 +2377,11 @@ msgstr ""
msgid "AMS not connected" msgid "AMS not connected"
msgstr "АМС не підключено" msgstr "АМС не підключено"
msgid "Load Filament" msgid "Load"
msgstr "Завантажте філамент" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "Вивантажте філамент" msgstr "Вивантаження"
msgid "Ext Spool" msgid "Ext Spool"
msgstr "Зовнішня котушка" msgstr "Зовнішня котушка"
@@ -2392,7 +2398,7 @@ msgstr "Повторити спробу"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "Калібрування АМС..." msgstr "Калібрування АМС..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "" msgstr ""
"Під час калібрування виникла проблема. Натисніть, щоб переглянути рішення." "Під час калібрування виникла проблема. Натисніть, щоб переглянути рішення."
@@ -2434,11 +2440,8 @@ msgstr ""
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "" msgstr ""
"Виберіть слот AMS, потім натисніть кнопку \\Load\\ або \\Unload\\, щоб "
"автоматично\n"
"завантажити або вивантажити філамент."
msgid "Edit" msgid "Edit"
msgstr "Редагувати" msgstr "Редагувати"
@@ -3047,6 +3050,14 @@ msgstr ""
"AMS перейде на іншу котушку з тими самими властивостями автоматично, коли " "AMS перейде на іншу котушку з тими самими властивостями автоматично, коли "
"поточний філамент закінчується" "поточний філамент закінчується"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "Файл" msgstr "Файл"
@@ -3130,6 +3141,45 @@ msgstr "Запуск скриптів постобробки"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "Невідома помилка під час експорту G-коду." msgstr "Невідома помилка під час експорту G-коду."
@@ -3501,18 +3551,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr "MC"
msgid "MainBoard"
msgstr "Основна плата"
msgid "TH"
msgstr "TH"
msgid "XCam"
msgstr "XCam"
msgid "Unknown" msgid "Unknown"
msgstr "Невідомий" msgstr "Невідомий"
@@ -4035,7 +4073,7 @@ msgstr "Об'єм:"
msgid "Size:" msgid "Size:"
msgstr "Розмір:" msgstr "Розмір:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4176,6 +4214,9 @@ msgstr "Попередній перегляд"
msgid "Device" msgid "Device"
msgstr "Пристрій" msgstr "Пристрій"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "Проєкт" msgstr "Проєкт"
@@ -4215,6 +4256,9 @@ msgstr "Роздрукувати все"
msgid "Send all" msgid "Send all"
msgstr "Надіслати все" msgstr "Надіслати все"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "Гарячі клавіші" msgstr "Гарячі клавіші"
@@ -5005,9 +5049,6 @@ msgstr "Камера"
msgid "Bed" msgid "Bed"
msgstr "Стіл" msgstr "Стіл"
msgid "Unload"
msgstr "Вивантаження"
msgid "Debug Info" msgid "Debug Info"
msgstr "Налагоджувальна інформація" msgstr "Налагоджувальна інформація"
@@ -5177,9 +5218,6 @@ msgstr "Статус"
msgid "Update" msgid "Update"
msgstr "Оновлення" msgstr "Оновлення"
msgid "HMS"
msgstr "HMS"
msgid "Don't show again" msgid "Don't show again"
msgstr "Більше не показувати" msgstr "Більше не показувати"
@@ -5427,6 +5465,12 @@ msgstr ""
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5871,15 +5915,21 @@ msgstr "Імпорт моделі"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "підготувати файл 3mf..." msgstr "підготувати файл 3mf..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "завантажую проект..." msgstr "завантажую проект..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "Проект завантажено %d%%" msgstr "Проект завантажено %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -6149,6 +6199,21 @@ msgstr "Імперський"
msgid "Units" msgid "Units"
msgstr "Одиниці" msgstr "Одиниці"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6224,6 +6289,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6861,6 +6934,9 @@ msgstr ""
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "Зміна імені пристрою" msgstr "Зміна імені пристрою"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "Надіслати на SD-карту принтера" msgstr "Надіслати на SD-карту принтера"
@@ -6912,6 +6988,26 @@ msgstr ""
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "Невідомий збій" msgstr "Невідомий збій"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "Вхід до принтера" msgstr "Вхід до принтера"
@@ -7101,8 +7197,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"При записі таймлапсу без інструментальної головки рекомендується додати " "При записі таймлапсу без інструментальної головки рекомендується додати "
"“Timelapse Wipe Tower” \n" "“Timelapse Wipe Tower” \n"
@@ -7516,26 +7612,23 @@ msgstr "Undef"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Незбережені зміни" msgstr "Незбережені зміни"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "Відкинути або зберегти зміни"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "Старе значення"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "Нове значення"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "Передача"
msgid "Don't save" msgid "Don't save"
msgstr "Не зберігати" msgstr "Не зберігати"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "Не зберігати"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "Натисніть праву кнопку миші, щоб відобразити повний текст." msgstr "Натисніть праву кнопку миші, щоб відобразити повний текст."
@@ -7597,28 +7690,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7636,9 +7723,6 @@ msgstr "Показати всі налаштування (включаючи н
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "Виберіть налаштування для порівняння" msgstr "Виберіть налаштування для порівняння"
msgid "Transfer"
msgstr "Передача"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8107,6 +8191,39 @@ msgstr "Виконано"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "Завантажте філамент"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10130,6 +10247,9 @@ msgstr "Підтримуючий кубічний"
msgid "Lightning" msgid "Lightning"
msgstr "Блискавка" msgstr "Блискавка"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "Довжина прив'язки заповнення" msgstr "Довжина прив'язки заповнення"
@@ -10331,10 +10451,10 @@ msgstr "Повна швидкість вентилятора на шарі"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"Швидкість вентилятора лінійно збільшується від нуля на " "Швидкість вентилятора лінійно збільшується від нуля на "
"рівні«close_fan_the_first_x_layers» до максимуму на рівні " "рівні«close_fan_the_first_x_layers» до максимуму на рівні "
@@ -12966,6 +13086,9 @@ msgstr ""
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "" msgstr ""
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "" msgstr ""
@@ -13082,6 +13205,14 @@ msgstr ""
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "" msgstr ""
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "" msgstr ""
@@ -13091,6 +13222,19 @@ msgstr ""
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
@@ -13316,9 +13460,6 @@ msgstr ""
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "" msgstr ""
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "" msgstr ""
@@ -13362,12 +13503,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "" msgstr ""
@@ -13395,10 +13530,14 @@ msgstr ""
msgid "Action" msgid "Action"
msgstr "" msgstr ""
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "" msgstr ""
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13407,13 +13546,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "" msgstr ""
@@ -13798,8 +13930,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14349,6 +14481,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14721,6 +15022,32 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "Вивантажте філамент"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Виберіть слот AMS, потім натисніть кнопку \\Load\\ або \\Unload\\, щоб "
#~ "автоматично\n"
#~ "завантажити або вивантажити філамент."
#~ msgid "MC"
#~ msgstr "MC"
#~ msgid "MainBoard"
#~ msgstr "Основна плата"
#~ msgid "TH"
#~ msgstr "TH"
#~ msgid "XCam"
#~ msgstr "XCam"
#~ msgid "HMS"
#~ msgstr "HMS"
#~ msgid "active" #~ msgid "active"
#~ msgstr "активно" #~ msgstr "активно"
@@ -14800,18 +15127,6 @@ msgstr ""
#~ msgid "Load failed [%d]!" #~ msgid "Load failed [%d]!"
#~ msgstr "Завантаження не вдалося [%d]!" #~ msgstr "Завантаження не вдалося [%d]!"
#~ msgid "Transfer or discard changes"
#~ msgstr "Відкинути або зберегти зміни"
#~ msgid "Old Value"
#~ msgstr "Старе значення"
#~ msgid "New Value"
#~ msgstr "Нове значення"
#~ msgid "Discard"
#~ msgstr "Не зберігати"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Slic3rPE\n" "Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2023-04-01 13:21+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n"
"Last-Translator: SoftFever <softfeverever@gmail.com>\n" "Last-Translator: SoftFever <softfeverever@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -1887,6 +1887,12 @@ msgstr "自动摆放"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "在当前盘执行自动摆放" msgstr "在当前盘执行自动摆放"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "自动朝向" msgstr "自动朝向"
@@ -2327,10 +2333,10 @@ msgstr "自动补给"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS 未连接" msgstr "AMS 未连接"
msgid "Load Filament" msgid "Load"
msgstr "进料" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "退料" msgstr "退料"
msgid "Ext Spool" msgid "Ext Spool"
@@ -2348,7 +2354,7 @@ msgstr "重试"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "正在校准AMS..." msgstr "正在校准AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "校准过程遇到问题。点击查看解决方案。" msgstr "校准过程遇到问题。点击查看解决方案。"
msgid "Calibrate again" msgid "Calibrate again"
@@ -2389,8 +2395,8 @@ msgstr "咬入耗材丝"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "选择1个AMS槽位然后点击进料/退料按钮以自动进料/退料。" msgstr ""
msgid "Edit" msgid "Edit"
msgstr "编辑" msgstr "编辑"
@@ -2960,6 +2966,14 @@ msgid ""
"automatically when current filament runs out" "automatically when current filament runs out"
msgstr "AMS料材丝耗尽后将自动切换到属性完全相同的耗材丝" msgstr "AMS料材丝耗尽后将自动切换到属性完全相同的耗材丝"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "文件" msgstr "文件"
@@ -3031,6 +3045,45 @@ msgstr "运行后处理脚本"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "导出G-code文件发生未知错误。" msgstr "导出G-code文件发生未知错误。"
@@ -3390,18 +3443,6 @@ msgstr "首层扫描异常暂停"
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "堵头暂停" msgstr "堵头暂停"
msgid "MC"
msgstr ""
msgid "MainBoard"
msgstr "主板"
msgid "TH"
msgstr ""
msgid "XCam"
msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "未定义" msgstr "未定义"
@@ -3930,7 +3971,7 @@ msgstr "体积:"
msgid "Size:" msgid "Size:"
msgstr "尺寸:" msgstr "尺寸:"
#, boost-format #, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4069,6 +4110,9 @@ msgstr "预览"
msgid "Device" msgid "Device"
msgstr "设备" msgstr "设备"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "项目" msgstr "项目"
@@ -4108,6 +4152,9 @@ msgstr "打印所有盘"
msgid "Send all" msgid "Send all"
msgstr "发送所有盘" msgstr "发送所有盘"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "快捷键" msgstr "快捷键"
@@ -4881,9 +4928,6 @@ msgstr "机箱"
msgid "Bed" msgid "Bed"
msgstr "热床" msgstr "热床"
msgid "Unload"
msgstr "退料"
msgid "Debug Info" msgid "Debug Info"
msgstr "调试信息" msgstr "调试信息"
@@ -5059,9 +5103,6 @@ msgstr "设备状态"
msgid "Update" msgid "Update"
msgstr "固件更新" msgstr "固件更新"
msgid "HMS"
msgstr ""
msgid "Don't show again" msgid "Don't show again"
msgstr "不再显示" msgstr "不再显示"
@@ -5298,6 +5339,12 @@ msgstr "允许提示音"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "缠料检测" msgstr "缠料检测"
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5721,15 +5768,21 @@ msgstr "正在导入模型"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "正在准备3mf文件..." msgstr "正在准备3mf文件..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "项目下载中..." msgstr "项目下载中..."
msgid "Download failed, File size exception."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "项目已下载%d%%" msgstr "项目已下载%d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "" msgstr ""
@@ -5992,6 +6045,21 @@ msgstr "英制"
msgid "Units" msgid "Units"
msgstr "单位" msgstr "单位"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@@ -6066,6 +6134,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "网络" msgstr "网络"
@@ -6679,6 +6755,9 @@ msgstr "使用微型激光雷达进行自动流量校准"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "修改打印机名称" msgstr "修改打印机名称"
msgid "Bind with Pin Code"
msgstr ""
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "发送到打印机的SD卡" msgstr "发送到打印机的SD卡"
@@ -6730,6 +6809,26 @@ msgstr "接收登录报告超时"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "发生错误" msgstr "发生错误"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
msgid "Log in printer" msgid "Log in printer"
msgstr "登录打印机" msgstr "登录打印机"
@@ -6920,8 +7019,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n" "在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。" "右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
@@ -7310,26 +7409,23 @@ msgstr "未定义"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "未保存的更改" msgstr "未保存的更改"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "放弃或保留更改"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "旧值"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "新值"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "迁移"
msgid "Don't save" msgid "Don't save"
msgstr "不保存" msgstr "不保存"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "放弃"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "单击鼠标右键显示全文。" msgstr "单击鼠标右键显示全文。"
@@ -7387,28 +7483,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7426,9 +7516,6 @@ msgstr "显示所有预设(包括不兼容的)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "选择要比较的预设" msgstr "选择要比较的预设"
msgid "Transfer"
msgstr "迁移"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -7904,6 +7991,39 @@ msgstr "完成"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "进料"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "确认并更新喷嘴" msgstr "确认并更新喷嘴"
@@ -9916,6 +10036,9 @@ msgstr "支撑立方体"
msgid "Lightning" msgid "Lightning"
msgstr "闪电" msgstr "闪电"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "稀疏填充锚线长度" msgstr "稀疏填充锚线长度"
@@ -10091,10 +10214,10 @@ msgstr "满速风扇在"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"风扇速度将从“禁用第一层”的零线性上升到“全风扇速度层”的最大。如果低于“禁用风扇" "风扇速度将从“禁用第一层”的零线性上升到“全风扇速度层”的最大。如果低于“禁用风扇"
"第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将在“禁用风扇第一" "第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将在“禁用风扇第一"
@@ -12673,6 +12796,9 @@ msgstr "已取消"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "加载对象:无法分析" msgstr "加载对象:无法分析"
msgid "load mtl in obj: failed to parse"
msgstr ""
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "该文件包含顶点超过4个的多边形。" msgstr "该文件包含顶点超过4个的多边形。"
@@ -12796,6 +12922,14 @@ msgstr "请选择要校准的耗材丝。"
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "输入值大小必须为3。" msgstr "输入值大小必须为3。"
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "正在连接打印机..." msgstr "正在连接打印机..."
@@ -12805,6 +12939,19 @@ msgstr "测试失败的结果已被删除。"
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "动态流量校准的结果已保存至打印机。" msgstr "动态流量校准的结果已保存至打印机。"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "内部错误" msgstr "内部错误"
@@ -13072,9 +13219,6 @@ msgstr "将打印一份测试模型。在校准之前,请清理打印平台并
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "打印参数" msgstr "打印参数"
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "热床类型" msgstr "热床类型"
@@ -13121,12 +13265,6 @@ msgstr "结束k值"
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "喷嘴直径已从打印机设置同步" msgstr "喷嘴直径已从打印机设置同步"
@@ -13154,10 +13292,14 @@ msgstr "刷新历史流量动态校准记录"
msgid "Action" msgid "Action"
msgstr "操作" msgstr "操作"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "编辑动态流量校准" msgstr "编辑动态流量校准"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13166,13 +13308,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "搜索网络" msgstr "搜索网络"
@@ -13571,8 +13706,8 @@ msgstr ""
"你想重写预设吗" "你想重写预设吗"
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14137,6 +14272,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "主机打印机的枚举失败。消息体:\"%1%\"错误:\"%2%\"" msgstr "主机打印机的枚举失败。消息体:\"%1%\"错误:\"%2%\""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14531,6 +14835,17 @@ msgstr ""
"避免翘曲\n" "避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。" "您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Unload Filament"
#~ msgstr "退料"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr "选择1个AMS槽位然后点击进料/退料按钮以自动进料/退料。"
#~ msgid "MainBoard"
#~ msgstr "主板"
#~ msgid "active" #~ msgid "active"
#~ msgstr "活动的" #~ msgstr "活动的"
@@ -14628,18 +14943,6 @@ msgstr ""
#~ "will be exported." #~ "will be exported."
#~ msgstr "无法对模型网格执行布尔运算。只有正面部分将被导出。" #~ msgstr "无法对模型网格执行布尔运算。只有正面部分将被导出。"
#~ msgid "Transfer or discard changes"
#~ msgstr "放弃或保留更改"
#~ msgid "Old Value"
#~ msgstr "旧值"
#~ msgid "New Value"
#~ msgstr "新值"
#~ msgid "Discard"
#~ msgstr "放弃"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"
@@ -14755,8 +15058,8 @@ msgstr ""
#~ msgstr "无稀疏层(实验)" #~ msgstr "无稀疏层(实验)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you " #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "selected\". \n" #~ "\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection" #~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr "" #~ msgstr ""
#~ "我们会将预设重命名为“供应商 类型 系列 @您选择的打印机”。\n" #~ "我们会将预设重命名为“供应商 类型 系列 @您选择的打印机”。\n"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-16 16:45+0200\n" "POT-Creation-Date: 2024-05-01 00:42+0800\n"
"PO-Revision-Date: 2023-11-06 14:37+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n"
"Last-Translator: ablegods <ablegods@gmail.com>\n" "Last-Translator: ablegods <ablegods@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -1947,6 +1947,12 @@ msgstr "自動擺放"
msgid "arrange current plate" msgid "arrange current plate"
msgstr "在列印板執行自動擺放" msgstr "在列印板執行自動擺放"
msgid "Reload All"
msgstr ""
msgid "reload all from disk"
msgstr ""
msgid "Auto Rotate" msgid "Auto Rotate"
msgstr "自動旋轉方向" msgstr "自動旋轉方向"
@@ -2414,10 +2420,10 @@ msgstr "自動補充"
msgid "AMS not connected" msgid "AMS not connected"
msgstr "AMS 尚未連接" msgstr "AMS 尚未連接"
msgid "Load Filament" msgid "Load"
msgstr "進料" msgstr ""
msgid "Unload Filament" msgid "Unload"
msgstr "退料" msgstr "退料"
msgid "Ext Spool" msgid "Ext Spool"
@@ -2435,7 +2441,7 @@ msgstr "重試"
msgid "Calibrating AMS..." msgid "Calibrating AMS..."
msgstr "正在校準 AMS..." msgstr "正在校準 AMS..."
msgid "A problem occured during calibration. Click to view the solution." msgid "A problem occurred during calibration. Click to view the solution."
msgstr "校準過程遇到問題。點擊查看解決方案。" msgstr "校準過程遇到問題。點擊查看解決方案。"
msgid "Calibrate again" msgid "Calibrate again"
@@ -2476,8 +2482,8 @@ msgstr "咬入線材"
msgid "" msgid ""
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
"load or unload filiament." "load or unload filaments."
msgstr "選擇 1 個 AMS 槽位,然後點擊進料/退料按鈕以自動進料/退料。" msgstr ""
msgid "Edit" msgid "Edit"
msgstr "編輯" msgstr "編輯"
@@ -3079,6 +3085,14 @@ msgid ""
"automatically when current filament runs out" "automatically when current filament runs out"
msgstr "AMS 線材耗盡後將自動切換到屬性完全相同的線材" msgstr "AMS 線材耗盡後將自動切換到屬性完全相同的線材"
msgid "Air Printing Detection"
msgstr ""
msgid ""
"Detects clogging and filament grinding, halting printing immediately to "
"conserve time and filament."
msgstr ""
msgid "File" msgid "File"
msgstr "檔案" msgstr "檔案"
@@ -3153,6 +3167,45 @@ msgstr "執行後處理腳本"
msgid "Successfully executed post-processing script" msgid "Successfully executed post-processing script"
msgstr "" msgstr ""
msgid "Unknown error occured during exporting G-code."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
"card is write locked?\n"
"Error message: %1%"
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. There might be "
"problem with target device, please try exporting again or using different "
"device. The corrupted output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid ""
"Renaming of the G-code after copying to the selected destination folder has "
"failed. Current path is %1%.tmp. Please try exporting again."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the original code at %1% "
"couldn't be opened during copy check. The output G-code is at %2%.tmp."
msgstr ""
#, boost-format
msgid ""
"Copying of the temporary G-code has finished but the exported code couldn't "
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
#, boost-format
msgid "G-code file exported to %1%"
msgstr ""
msgid "Unknown error when export G-code." msgid "Unknown error when export G-code."
msgstr "匯出 G-code 檔案發生未知錯誤。" msgstr "匯出 G-code 檔案發生未知錯誤。"
@@ -3527,18 +3580,6 @@ msgstr ""
msgid "Nozzle clog pause" msgid "Nozzle clog pause"
msgstr "" msgstr ""
msgid "MC"
msgstr ""
msgid "MainBoard"
msgstr "主板"
msgid "TH"
msgstr ""
msgid "XCam"
msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "未定義" msgstr "未定義"
@@ -4093,7 +4134,7 @@ msgstr "體積:"
msgid "Size:" msgid "Size:"
msgstr "尺寸:" msgstr "尺寸:"
#, fuzzy, boost-format #, fuzzy, c-format, boost-format
msgid "" msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)." "separate the conflicted objects farther (%s <-> %s)."
@@ -4236,6 +4277,9 @@ msgstr "預覽"
msgid "Device" msgid "Device"
msgstr "設備" msgstr "設備"
msgid "Multi-device"
msgstr ""
msgid "Project" msgid "Project"
msgstr "專案項目" msgstr "專案項目"
@@ -4282,6 +4326,9 @@ msgstr "列印所有列印板"
msgid "Send all" msgid "Send all"
msgstr "傳送所有列印板" msgstr "傳送所有列印板"
msgid "Send to Multi-device"
msgstr ""
msgid "Keyboard Shortcuts" msgid "Keyboard Shortcuts"
msgstr "快捷鍵" msgstr "快捷鍵"
@@ -5077,9 +5124,6 @@ msgstr "機箱"
msgid "Bed" msgid "Bed"
msgstr "熱床" msgstr "熱床"
msgid "Unload"
msgstr "退料"
msgid "Debug Info" msgid "Debug Info"
msgstr "除錯資訊" msgstr "除錯資訊"
@@ -5263,9 +5307,6 @@ msgstr "設備狀態"
msgid "Update" msgid "Update"
msgstr "韌體更新" msgstr "韌體更新"
msgid "HMS"
msgstr ""
msgid "Don't show again" msgid "Don't show again"
msgstr "不再顯示" msgstr "不再顯示"
@@ -5508,6 +5549,12 @@ msgstr "允許提示音效"
msgid "Filament Tangle Detect" msgid "Filament Tangle Detect"
msgstr "" msgstr ""
msgid "Nozzle Clumping Detection"
msgstr ""
msgid "Check if the nozzle is clumping by filament or other foreign objects."
msgstr ""
msgid "Nozzle Type" msgid "Nozzle Type"
msgstr "" msgstr ""
@@ -5956,17 +6003,23 @@ msgstr "正在匯入模型"
msgid "prepare 3mf file..." msgid "prepare 3mf file..."
msgstr "正在準備 3mf 檔案..." msgstr "正在準備 3mf 檔案..."
msgid "Download failed, unknown file format."
msgstr ""
msgid "downloading project ..." msgid "downloading project ..."
msgstr "專案項目下載中..." msgstr "專案項目下載中..."
msgid "Download failed, File size exception."
msgstr ""
#, fuzzy, c-format, boost-format #, fuzzy, c-format, boost-format
msgid "Project downloaded %d%%" msgid "Project downloaded %d%%"
msgstr "專案項目已下載 %d%%" msgstr "專案項目已下載 %d%%"
msgid "" msgid ""
"Importing to Orca Slicer failed. Please download the file and manually " "Importing to Bambu Studio failed. Please download the file and manually "
"import it." "import it."
msgstr "匯入 Orca Slicer 失敗。 請下載該檔案並手動匯入。" msgstr ""
msgid "Import SLA archive" msgid "Import SLA archive"
msgstr "" msgstr ""
@@ -6238,6 +6291,21 @@ msgstr "英製"
msgid "Units" msgid "Units"
msgstr "單位" msgstr "單位"
msgid "Allow only one OrcaSlicer instance"
msgstr ""
msgid ""
"On OSX there is always only one instance of app running by default. However "
"it is allowed to run multiple instances of same app from the command line. "
"In such case this settings will allow only one instance."
msgstr ""
msgid ""
"If this is enabled, when starting OrcaSlicer and another instance of the "
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
msgid "Home" msgid "Home"
msgstr "首頁" msgstr "首頁"
@@ -6313,6 +6381,14 @@ msgid ""
"each printer automatically." "each printer automatically."
msgstr "" msgstr ""
msgid "Multi-device Management(Take effect after restarting Studio)."
msgstr ""
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
"same time and manage multiple devices."
msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
@@ -6974,6 +7050,9 @@ msgstr "使用微型雷射雷達進行自動流量校準"
msgid "Modifying the device name" msgid "Modifying the device name"
msgstr "修改列印設備名稱" msgstr "修改列印設備名稱"
msgid "Bind with Pin Code"
msgstr ""
#, fuzzy #, fuzzy
msgid "Send to Printer SD card" msgid "Send to Printer SD card"
msgstr "傳送到列印設備的 SD 記憶卡" msgstr "傳送到列印設備的 SD 記憶卡"
@@ -7031,6 +7110,26 @@ msgstr "接收登入回覆逾時"
msgid "Unknown Failure" msgid "Unknown Failure"
msgstr "未知錯誤" msgstr "未知錯誤"
msgid ""
"Please Find the Pin Code in Account page on printer screen,\n"
" and type in the Pin Code below."
msgstr ""
msgid "Can't find Pin Code?"
msgstr ""
msgid "Pin Code"
msgstr ""
msgid "Binding..."
msgstr ""
msgid "Please confirm on the printer screen"
msgstr ""
msgid "Log in failed. Please check the Pin Code."
msgstr ""
#, fuzzy #, fuzzy
msgid "Log in printer" msgid "Log in printer"
msgstr "登入列印設備" msgstr "登入列印設備"
@@ -7236,8 +7335,8 @@ msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add " "by right-click the empty position of build plate and choose \"Add Primitive"
"Primitive\"->\"Timelapse Wipe Tower\"." "\"->\"Timelapse Wipe Tower\"."
msgstr "" msgstr ""
"在錄製無工具頭縮時錄影影片時,建議增加“縮時錄影擦拭塔”\n" "在錄製無工具頭縮時錄影影片時,建議增加“縮時錄影擦拭塔”\n"
"右鍵單擊列印板的空白位置,選擇“新增標準模型”->“縮時錄影擦拭塔”。" "右鍵單擊列印板的空白位置,選擇“新增標準模型”->“縮時錄影擦拭塔”。"
@@ -7656,26 +7755,23 @@ msgstr "未定義"
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "未儲存的更改" msgstr "未儲存的更改"
msgid "Actions For Unsaved Changes" msgid "Transfer or discard changes"
msgstr "" msgstr "放棄或保留更改"
msgid "Preset Value" msgid "Old Value"
msgstr "" msgstr "舊值"
msgid "Modified Value" msgid "New Value"
msgstr "" msgstr "新值"
msgid "Transfer Modified Value" msgid "Transfer"
msgstr "" msgstr "遷移"
msgid "Don't save" msgid "Don't save"
msgstr "不儲存" msgstr "不儲存"
msgid "Use Preset Value" msgid "Discard"
msgstr "" msgstr "放棄"
msgid "Save Modified Value"
msgstr ""
msgid "Click the right mouse button to display the full text." msgid "Click the right mouse button to display the full text."
msgstr "單擊滑鼠右鍵顯示全文。" msgstr "單擊滑鼠右鍵顯示全文。"
@@ -7733,28 +7829,22 @@ msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to save these changed settings(modified value)?" "You can save or discard the preset values you have modified."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Would you like to keep these changed settings(modified value) after " "You can save or discard the preset values you have modified, or choose to "
"switching preset?" "transfer the values you have modified to the new preset."
msgstr "" msgstr ""
msgid "" msgid "You have previously modified your settings."
"You have previously modified your settings and are about to overwrite them "
"with new ones."
msgstr "" msgstr ""
msgid "" msgid ""
"\n" "\n"
"Do you want to keep your current modified settings, or use preset settings?" "You can discard the preset values you have modified, or choose to transfer "
msgstr "" "the modified values to the new project"
msgid ""
"\n"
"Do you want to save your current modified settings?"
msgstr "" msgstr ""
msgid "Extruders count" msgid "Extruders count"
@@ -7774,9 +7864,6 @@ msgstr "顯示所有預設(包括不相容的)"
msgid "Select presets to compare" msgid "Select presets to compare"
msgstr "選擇要比較的預設" msgstr "選擇要比較的預設"
msgid "Transfer"
msgstr "遷移"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
@@ -8287,6 +8374,39 @@ msgstr "完成"
msgid "resume" msgid "resume"
msgstr "" msgstr ""
msgid "Resume Printing"
msgstr ""
msgid "Resume Printing(defects acceptable)"
msgstr ""
msgid "Resume Printing(problem solved)"
msgstr ""
msgid "Stop Printing"
msgstr ""
msgid "Check Assistant"
msgstr ""
msgid "Filament Extruded, Continue"
msgstr ""
msgid "Not Extruded Yet, Retry"
msgstr ""
msgid "Finished, Continue"
msgstr ""
msgid "Load Filament"
msgstr "進料"
msgid "Filament Loaded, Resume"
msgstr ""
msgid "View Liveview"
msgstr ""
msgid "Confirm and Update Nozzle" msgid "Confirm and Update Nozzle"
msgstr "" msgstr ""
@@ -10314,6 +10434,9 @@ msgstr "支撐立方體"
msgid "Lightning" msgid "Lightning"
msgstr "閃電" msgstr "閃電"
msgid "Cross Hatch"
msgstr ""
msgid "Sparse infill anchor length" msgid "Sparse infill anchor length"
msgstr "稀疏填充錨線長度" msgstr "稀疏填充錨線長度"
@@ -10496,10 +10619,10 @@ msgstr "滿速風扇在"
msgid "" msgid ""
"Fan speed will be ramped up linearly from zero at layer " "Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer " "\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " "\". \"full_fan_speed_layer\" will be ignored if lower than "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running " "\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." "maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr "" msgstr ""
"風扇速度將從“禁用第一層”的零線性上升到“全風扇速度層”的最大。如果低於“禁用風扇" "風扇速度將從“禁用第一層”的零線性上升到“全風扇速度層”的最大。如果低於“禁用風扇"
"第一層”,則“全風扇速度第一層”將被忽略,在這種情況下,風扇將在“禁用風扇第一" "第一層”,則“全風扇速度第一層”將被忽略,在這種情況下,風扇將在“禁用風扇第一"
@@ -13127,6 +13250,9 @@ msgstr "已取消"
msgid "load_obj: failed to parse" msgid "load_obj: failed to parse"
msgstr "載入物件:無法分析" msgstr "載入物件:無法分析"
msgid "load mtl in obj: failed to parse"
msgstr ""
#, fuzzy #, fuzzy
msgid "The file contains polygons with more than 4 vertices." msgid "The file contains polygons with more than 4 vertices."
msgstr "該檔案包含頂點超過 4 個的多邊形。" msgstr "該檔案包含頂點超過 4 個的多邊形。"
@@ -13262,6 +13388,14 @@ msgstr "請選擇要校準的線材。"
msgid "The input value size must be 3." msgid "The input value size must be 3."
msgstr "輸入值大小必須為 3。" msgstr "輸入值大小必須為 3。"
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
"delete the existing historical results and then start calibration. Or you "
"can continue the calibration, but you cannot create new calibration "
"historical results. \n"
"Do you still want to continue the calibration?"
msgstr ""
#, fuzzy #, fuzzy
msgid "Connecting to printer..." msgid "Connecting to printer..."
msgstr "正在連接列印設備..." msgstr "正在連接列印設備..."
@@ -13273,6 +13407,19 @@ msgstr "測試失敗的結果已被刪除。"
msgid "Flow Dynamics Calibration result has been saved to the printer" msgid "Flow Dynamics Calibration result has been saved to the printer"
msgstr "動態流量校準的結果已儲存至列印設備。" msgstr "動態流量校準的結果已儲存至列印設備。"
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
msgid "Internal Error" msgid "Internal Error"
msgstr "內部錯誤" msgstr "內部錯誤"
@@ -13554,9 +13701,6 @@ msgstr "將列印一份測試模型。在校準之前,請清理列印板並將
msgid "Printing Parameters" msgid "Printing Parameters"
msgstr "列印參數" msgstr "列印參數"
msgid "- ℃"
msgstr ""
msgid "Plate Type" msgid "Plate Type"
msgstr "熱床類型" msgstr "熱床類型"
@@ -13604,12 +13748,6 @@ msgstr ""
msgid "Step value" msgid "Step value"
msgstr "" msgstr ""
msgid "0.5"
msgstr ""
msgid "0.005"
msgstr ""
#, fuzzy #, fuzzy
msgid "The nozzle diameter has been synchronized from the printer Settings" msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr "噴嘴直徑已從列印設備設定中同步" msgstr "噴嘴直徑已從列印設備設定中同步"
@@ -13638,10 +13776,14 @@ msgstr "重整歷史流量動態校準記錄"
msgid "Action" msgid "Action"
msgstr "操作" msgstr "操作"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
msgstr ""
msgid "Edit Flow Dynamics Calibration" msgid "Edit Flow Dynamics Calibration"
msgstr "編輯動態流量校準" msgstr "編輯動態流量校準"
msgid "New Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration"
msgstr "" msgstr ""
msgid "Ok" msgid "Ok"
@@ -13650,13 +13792,6 @@ msgstr ""
msgid "The filament must be selected." msgid "The filament must be selected."
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"There is already a historical calibration result with the same name: %s. "
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
msgid "Network lookup" msgid "Network lookup"
msgstr "搜尋網路" msgstr "搜尋網路"
@@ -14060,8 +14195,8 @@ msgid ""
msgstr "" msgstr ""
msgid "" msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you " "We would rename the presets as \"Vendor Type Serial @printer you selected"
"selected\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
@@ -14609,6 +14744,175 @@ msgid ""
"Error: \"%2%\"" "Error: \"%2%\""
msgstr "" msgstr ""
msgid ""
"It has a small layer height, and results in almost negligible layer lines "
"and high printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
"and acceleration, and the sparse infill pattern is Gyroid. So, it results in "
"much higher printing quality, but a much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
"bigger layer height, and results in almost negligible layer lines, and "
"slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"height, and results in almost invisible layer lines and higher printing "
"quality, but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost invisible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer "
"height, and results in minimal layer lines and higher printing quality, but "
"shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
"lines, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in minimal layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"It has a general layer height, and results in general layer lines and "
"printing quality. It is suitable for most general printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but slightly shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in less apparent layer lines and much higher printing "
"quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, lower speeds and acceleration, and the sparse infill pattern is "
"Gyroid. So, it results in almost negligible layer lines and much higher "
"printing quality, but much longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
"height, and results in almost negligible layer lines and longer printing "
"time."
msgstr ""
msgid ""
"It has a big layer height, and results in apparent layer lines and ordinary "
"printing quality and printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
"and a higher sparse infill density. So, it results in higher strength of the "
"prints, but more filament consumption and longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in more apparent layer lines and lower printing quality, "
"but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
"height, and results in much more apparent layer lines and much lower "
"printing quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and slight higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
"height, and results in less apparent layer lines and higher printing "
"quality, but longer printing time."
msgstr ""
msgid ""
"It has a very big layer height, and results in very apparent layer lines, "
"low printing quality and general printing time."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
"height, and results in very apparent layer lines and much lower printing "
"quality, but shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
"layer height, and results in extremely apparent layer lines and much lower "
"printing quality, but much shorter printing time in some printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
"smaller layer height, and results in slightly less but still apparent layer "
"lines and slightly higher printing quality, but longer printing time in some "
"printing cases."
msgstr ""
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
"height, and results in less but still apparent layer lines and slightly "
"higher printing quality, but longer printing time in some printing cases."
msgstr ""
msgid "Connected to Obico successfully!" msgid "Connected to Obico successfully!"
msgstr "" msgstr ""
@@ -14980,6 +15284,22 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Unload Filament"
#~ msgstr "退料"
#~ msgid ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr "選擇 1 個 AMS 槽位,然後點擊進料/退料按鈕以自動進料/退料。"
#~ msgid "MainBoard"
#~ msgstr "主板"
#~ msgid ""
#~ "Importing to Orca Slicer failed. Please download the file and manually "
#~ "import it."
#~ msgstr "匯入 Orca Slicer 失敗。 請下載該檔案並手動匯入。"
#~ msgid "active" #~ msgid "active"
#~ msgstr "活動的" #~ msgstr "活動的"
@@ -15079,18 +15399,6 @@ msgstr ""
#~ "will be exported." #~ "will be exported."
#~ msgstr "無法對模型網格執行布林運算。只有正面部分將被導出。" #~ msgstr "無法對模型網格執行布林運算。只有正面部分將被導出。"
#~ msgid "Transfer or discard changes"
#~ msgstr "放棄或保留更改"
#~ msgid "Old Value"
#~ msgstr "舊值"
#~ msgid "New Value"
#~ msgstr "新值"
#~ msgid "Discard"
#~ msgstr "放棄"
#, boost-format #, boost-format
#~ msgid "" #~ msgid ""
#~ "You have changed some settings of preset \"%1%\". \n" #~ "You have changed some settings of preset \"%1%\". \n"

View File

@@ -1,137 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><rect width="64" height="64" rx="14" style="fill:#e9e9e9"/><path d="M13.84,50.354a19.7,19.7,0,0,0,13.883,5.79A19.944,19.944,0,0,0,41.858,22.182Z" style="fill:#292826"/><path d="M41.858,22.181,13.84,50.354l.061.059A220.548,220.548,0,0,0,46.378,29.277a19.964,19.964,0,0,0-4.52-7.1" style="fill:#009789"/><path d="M36.381,7.856A19.943,19.943,0,0,0,22.327,41.818L50.345,13.646a19.693,19.693,0,0,0-13.964-5.79" style="fill:#292826"/><path d="M36.381,7.856A19.636,19.636,0,0,0,26.04,10.782a22.742,22.742,0,0,0-5.91-.745,23.084,23.084,0,0,0-9.477,2.124.632.632,0,0,0,.129,1.191,13.52,13.52,0,0,1,8.069,5.137A20.06,20.06,0,0,0,17.41,33.534a19.873,19.873,0,0,1,2-3.488c1.819-2.5,3.743-3.8,6.585-5.723,2.093-1.416,5-3.077,13.359-6.512a28.421,28.421,0,0,0,6.12-2.821c1.4-.831,2.461-1.615,2.8-2.842.024-.086.045-.172.065-.256A19.655,19.655,0,0,0,36.381,7.856" style="fill:#262523"/><path d="M39.69,14.551c.727,1.285-.728,3.495-3.249,4.937s-5.154,1.569-5.88.284.727-3.495,3.248-4.937,5.154-1.569,5.881-.284" style="fill:#fff"/></svg>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
width="1023.9872"
height="1023.9927"
viewBox="0 0 1023.9872 1023.9927"
sodipodi:docname="BambuStudio.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient619">
<stop
style="stop-color:#d9d9d9;stop-opacity:1;"
offset="0"
id="stop615" />
<stop
style="stop-color:#f9f9f9;stop-opacity:1;"
offset="1"
id="stop617" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath16">
<path
d="M 0,792 H 612 V 0 H 0 Z"
id="path14" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient619"
id="linearGradient621"
x1="0"
y1="0"
x2="1024"
y2="1024.9971"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0000572,0,0,1.0000572,-0.06243956,-0.05871163)" />
</defs>
<sodipodi:namedview
id="namedview4"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.25"
inkscape:cx="292"
inkscape:cy="568"
inkscape:window-width="1350"
inkscape:window-height="1237"
inkscape:window-x="486"
inkscape:window-y="91"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="background"
transform="matrix(0.99895749,0,0,0.99799215,-0.93372195,0.0585938)">
<rect
style="fill:url(#linearGradient621);fill-opacity:1;stroke-width:1.00006"
id="rect457"
width="1025.0558"
height="1026.0529"
x="0.93469638"
y="-0.058711685"
rx="2.0001144"
ry="2.0001144" />
</g>
<g
id="g8"
inkscape:groupmode="layer"
inkscape:label="OrcaS"
transform="matrix(1.3333333,0,0,-1.3333333,1.3995581e-8,1055.9963)">
<g
id="g10"
transform="translate(76.258954,16.062441)">
<g
id="g12"
clip-path="url(#clipPath16)">
<g
id="g18"
transform="translate(59.7287,115.3517)">
<path
d="m 0,0 c 53.332,-53.285 126.698,-86.317 207.744,-86.646 164.049,-0.664 298.355,134.38 297.699,299.337 -0.324,81.496 -33.176,155.271 -86.17,208.899 z"
style="fill:#292826;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" />
</g>
<g
id="g22"
transform="translate(479.0017,536.9419)">
<path
d="m 0,0 -419.273,-421.59 c 0.298,-0.298 0.606,-0.587 0.906,-0.884 146.894,74.925 348.023,206.579 486.003,316.297 C 52.756,-65.97 29.506,-29.859 0,0"
style="fill:#009789;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" />
</g>
<g
id="g26"
transform="translate(397.0372,747)">
<path
d="m 0,0 c -163.742,0 -296.482,-133.473 -296.482,-298.121 0,-81.979 32.915,-156.223 86.172,-210.117 l 419.273,421.59 C 155.364,-33.096 81.529,0 0,0"
style="fill:#292826;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" />
</g>
<g
id="g30"
transform="translate(397.0372,747)">
<path
d="m 0,0 c -56.714,0 -109.702,-16.022 -154.751,-43.796 -24.127,6.312 -54.061,11.37 -88.437,11.157 -59.938,-0.372 -108.713,-16.603 -141.822,-31.784 -8.218,-3.768 -6.898,-15.967 1.941,-17.829 21.801,-4.593 50.498,-14.324 78.883,-35.28 17.931,-13.238 31.574,-27.883 41.856,-41.597 -21.794,-41.504 -34.152,-88.793 -34.152,-138.992 0,-29.952 4.412,-58.865 12.586,-86.137 12.54,27.79 25.699,46.391 29.916,52.184 27.229,37.41 56.015,56.883 98.542,85.651 31.328,21.193 74.856,46.047 199.916,97.449 0,0 39.121,11.017 91.587,42.212 20.912,12.433 36.823,24.17 41.863,42.526 0.355,1.293 0.677,2.57 0.973,3.83 C 129.175,-22.506 67.208,0 0,0"
style="fill:#262523;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32" />
</g>
<g
id="g34"
transform="translate(446.5563,646.8041)">
<path
d="m 0,0 c 10.875,-19.229 -10.891,-52.305 -48.616,-73.879 -37.725,-21.573 -77.124,-23.474 -88,-4.245 -10.875,19.229 10.891,52.305 48.617,73.879 C -50.274,17.328 -10.875,19.229 0,0"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -1,22 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M.5,13.5V1.5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v12a1,1,0,0,1-1,1H1.5A1,1,0,0,1,.5,13.5Zm3-6h3m2,0h3m-4-4v8" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round;opacity:0.6000000000000001"/></svg>
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
<g id="ADD">
<path fill="#FFFFFF" d="M72.3,117.5H10.5v-75h75v23.27c1.61-0.56,3.28-0.99,5-1.29V41.04l27-27V72.3c1.89,1.71,3.57,3.65,5,5.76V8
c0-0.05-0.01-0.1-0.02-0.15c0-0.06-0.01-0.11-0.02-0.17c-0.03-0.22-0.08-0.43-0.15-0.62c0,0,0-0.01,0-0.01c0,0,0,0,0,0
c-0.01-0.03-0.03-0.05-0.04-0.08c-0.05-0.11-0.11-0.21-0.17-0.31c-0.03-0.04-0.05-0.08-0.08-0.11c-0.06-0.08-0.13-0.16-0.2-0.24
c-0.03-0.03-0.06-0.07-0.09-0.1c-0.09-0.09-0.19-0.17-0.3-0.25c-0.01-0.01-0.02-0.02-0.04-0.03c-0.12-0.08-0.24-0.15-0.38-0.2
c-0.04-0.02-0.09-0.03-0.13-0.05c-0.1-0.04-0.2-0.07-0.3-0.09c-0.05-0.01-0.09-0.02-0.14-0.03c-0.15-0.03-0.3-0.05-0.45-0.05H48
c-0.57,0-1.12,0.19-1.56,0.55l-40,32c-0.03,0.03-0.06,0.06-0.09,0.09c-0.07,0.06-0.13,0.12-0.19,0.19
c-0.05,0.06-0.1,0.12-0.15,0.18c-0.05,0.07-0.09,0.13-0.14,0.2c-0.04,0.07-0.08,0.14-0.12,0.21c-0.03,0.07-0.07,0.15-0.09,0.22
c-0.03,0.08-0.05,0.16-0.07,0.24c-0.02,0.08-0.04,0.15-0.05,0.23c-0.01,0.09-0.02,0.18-0.03,0.27c0,0.04-0.01,0.08-0.01,0.13v80
c0,1.38,1.12,2.5,2.5,2.5h70.06C75.95,121.07,74.01,119.39,72.3,117.5z M48.88,10.5h65.09l-27,27H15.13L48.88,10.5z"/>
<g>
<path fill="#ED6B21" d="M96,69.5c-14.61,0-26.5,11.89-26.5,26.5s11.89,26.5,26.5,26.5s26.5-11.89,26.5-26.5S110.61,69.5,96,69.5z
M96,117.5c-11.86,0-21.5-9.64-21.5-21.5S84.14,74.5,96,74.5s21.5,9.64,21.5,21.5S107.86,117.5,96,117.5z"/>
<path fill="#ED6B21" d="M112,93.5H98.5V80c0-1.38-1.12-2.5-2.5-2.5s-2.5,1.12-2.5,2.5v13.5H80c-1.38,0-2.5,1.12-2.5,2.5
s1.12,2.5,2.5,2.5h13.5V112c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V98.5H112c1.38,0,2.5-1.12,2.5-2.5S113.38,93.5,112,93.5z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 307 B

View File

@@ -1,19 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M.5,13.5V3.5a1,1,0,0,1,1-1h10a1,1,0,0,1,1,1v10a1,1,0,0,1-1,1H1.5A1,1,0,0,1,.5,13.5Zm13-1a1,1,0,0,0,1-1V1.5a1,1,0,0,0-1-1H3.5a1,1,0,0,0-1,1m0,7h3m2,0h3m-4,4v-8" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round;opacity:0.6000000000000001"/></svg>
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
<g id="add_x5F_copies">
<g>
<path fill="#808080" d="M8,2c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S4.69,2,8,2 M8,1C4.13,1,1,4.13,1,8s3.13,7,7,7s7-3.13,7-7
S11.87,1,8,1L8,1z"/>
</g>
<g>
<path fill="#009688" d="M12,8.75H4C3.59,8.75,3.25,8.41,3.25,8S3.59,7.25,4,7.25h8c0.41,0,0.75,0.34,0.75,0.75S12.41,8.75,12,8.75
z"/>
</g>
<g>
<path fill="#009688" d="M8,12.75c-0.41,0-0.75-0.34-0.75-0.75V4c0-0.41,0.34-0.75,0.75-0.75S8.75,3.59,8.75,4v8
C8.75,12.41,8.41,12.75,8,12.75z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 846 B

After

Width:  |  Height:  |  Size: 363 B

View File

@@ -1,4 +1 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M5.5,14.5c-1.105,0-2-3.686-2-7s.895-7,2-7" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="7.5" y1="7.5" x2="15.5" y2="7.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="11.5" y1="11.5" x2="11.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><path d="M3.5,13.7c-.294.511-.636.8-1,.8-1.1,0-2-3.686-2-7s.9-7,2-7c.365,0,.707.293,1,.805" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M6.727,4.5c.334-2.208,1-4,1.773-4,.354,0,.686.378.974,1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M9.474,13.5c-.288.622-.62,1-.974,1-.77,0-1.439-1.792-1.773-4" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M2 7H12" stroke="#262E30" stroke-linecap="round"/>
<path d="M7 2V12" stroke="#262E30" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 223 B

After

Width:  |  Height:  |  Size: 922 B

View File

@@ -1,4 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M6.5,14.5a1,1,0,0,1-1-1v-9h-4a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1h-4v2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="8.5" y1="8.5" x2="14.5" y2="14.5" style="fill:none;stroke:#009688;stroke-linejoin:round"/><line x1="14.5" y1="8.5" x2="8.5" y2="14.5" style="fill:none;stroke:#009688;stroke-linejoin:round"/><line x1="11.5" y1="8.5" x2="11.5" y2="14.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="14.5" y1="11.5" x2="8.5" y2="11.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill="#808080" d="m 4,0 v 4 h 4 v 10 h 4 V 4 h 4 V 0 Z m 1.121094,1 h 1.414062 l 2,2 H 7.115235 Z M 7.242188,1 H 8.65625 L 11,3.34375 v 1.4140625 z m 2.121093,0 h 1.408205 l 1.998045,1.998 H 11.35547 Z m 2.121094,0 h 1.414063 l 1.992186,2 h -1.414061 z m 2.121094,0 H 15 V 2.3964375 Z M 5,1.59175 6.408203,3 H 5 Z m 4,1.8789062 2,1.9941407 V 6.8788594 L 9,4.8847188 Z M 9,5.59175 11,7.5858906 V 9 L 9,7 Z m 0,2.1210938 2,2.0000002 v 1.414063 L 9,9.126906 Z m 0,2.1210942 2,2 V 13 H 10.761152 L 9,11.248 Z M 9,12 10,13 H 9 Z" />
<path fill="#009688" d="M 3.5 9 C 1.5741139 9 0 10.574114 0 12.5 C 0 14.425886 1.5741139 16 3.5 16 C 5.4258861 16 7 14.425886 7 12.5 C 7 10.574114 5.4258861 9 3.5 9 z M 3.5 10.199219 C 4.7773592 10.199219 5.8007813 11.222641 5.8007812 12.5 C 5.8007812 12.667974 5.7816922 12.830839 5.7480469 12.988281 L 3.0117188 10.251953 C 3.1691607 10.218308 3.3320257 10.199219 3.5 10.199219 z M 2.4863281 10.433594 L 5.5664062 13.513672 C 5.3371871 13.983352 4.9544913 14.362231 4.4804688 14.583984 L 1.4160156 11.521484 C 1.6376653 11.046724 2.0161177 10.663072 2.4863281 10.433594 z M 1.2421875 12.054688 L 3.9472656 14.757812 C 3.8024888 14.786013 3.6534389 14.800781 3.5 14.800781 C 2.2226408 14.800781 1.1992188 13.777359 1.1992188 12.5 C 1.1992188 12.347226 1.2142247 12.198881 1.2421875 12.054688 z " />
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 721 B

View File

@@ -1,4 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M6.5,14.5a1,1,0,0,1-1-1v-9h-4a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1h-4v2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M15,11.5A3.5,3.5,0,1,1,11.5,8,3.5,3.5,0,0,1,15,11.5ZM14,11H9v1h5Z" style="fill:#009688"/></svg>
<path fill="#808080" d="m 5,14 v 2 H 10.293 11 V 15.293 6 h 5 V 0 H 0 v 6 h 5 v 5 l 1,0 V 5 L 4,3 H 1.5 V 4 H 3.583984 L 4.587891,5 H 1 V 1 h 14 v 3.293 l -1,-1 V 1.5 H 13 V 3 H 8 V 13 H 7 v 1 h 1.293 l 1,1 H 6 V 14 Z M 9.707,4 h 3.586 l 1,1 H 10.707 Z M 9,4.707 l 1,1 v 8.586 l -1,-1 z" />
<path fill="#009688" d="M 1,12 C 0.5,12 0,12 0,12.5 0,13 0.5,13 1,13 H 6 C 6.5,13 7,13 7,12.5 7,12 6.5,12 6,12 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 503 B

After

Width:  |  Height:  |  Size: 373 B

View File

@@ -1,4 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M6.5,14.5a1,1,0,0,1-1-1v-9h-4a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1h-4v2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M15,11.5A3.5,3.5,0,1,1,11.5,8,3.5,3.5,0,0,1,15,11.5ZM14,11H12V9H11v2H9v1h2v2h1V12h2Z" style="fill:#009688"/></svg>
<path fill="#808080" d="M 6,11 V 7.5 H 5 V 11 Z M 5,13.5 7.53125,16 H 12 V 7 h 4 V 2.5 L 13.625,0 H 1 V 4.7128906 L 3.419922,7 H 7 v 7.257812 l -1,-1 z M 2.695312,1 h 10.580079 l 1,1 H 3.695312 Z M 2,1.703125 l 1,1 V 5.40625 l -1,-1 z M 4,3 h 11 v 3 h -4 v 9 H 8 V 6 H 4 Z" />
<path fill="#009688" d="M 3.5,9 C 3,9 3,9.5 3,10 v 2 H 1 C 0.5,12 0,12 0,12.5 0,13 0.5,13 1,13 h 2 v 2 c 0,0.5 0,1 0.5,1 C 4,16 4,15.5 4,15 V 13 H 6 C 6.5,13 7,13 7,12.5 7,12 6.5,12 6,12 H 4 V 10 C 4,9.5 4,9 3.5,9 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 592 B

After

Width:  |  Height:  |  Size: 392 B

View File

@@ -1,13 +1 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M10.2,13.8A20.875,20.875,0,0,1,6.376,8.5C4.305,4.673,3.353,1.124,4.25.572" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M1.781,6.381A18.541,18.541,0,0,1,8,5.5c4.142,0,7.5.9,7.5,2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M12.017,2.314A21.814,21.814,0,0,1,9.624,8.5c-2.071,3.826-4.477,6.48-5.374,5.927" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M15.5,7.5c0,1.1-3.358,2-7.5,2S.5,8.6.5,7.5c0-.414.472-.8,1.281-1.118" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M4.25,14.426c-.9-.552.055-4.1,2.126-7.927S10.853.02,11.75.572c.336.207.413.835.267,1.742" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M4.25.572c.9-.552,3.3,2.1,5.374,5.927s3.023,7.375,2.126,7.927c-.336.207-.885-.036-1.548-.624" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><circle cx="12" cy="2.804" r="1" style="fill:#009688;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><circle cx="9.6" cy="13.196" r="1" style="fill:#009688;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><circle cx="2.5" cy="6.499" r="1" style="fill:#009688;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<g clip-path="url(#clip0_1018_9532)">
<path d="M5.91568 8.56926C6.89399 8.56926 7.68706 7.78905 7.68706 6.82662C7.68706 5.86419 6.89399 5.08398 5.91568 5.08398C4.93736 5.08398 4.14429 5.86419 4.14429 6.82662C4.14429 7.78905 4.93736 8.56926 5.91568 8.56926Z" fill="#ACACAC" stroke="#262E30" stroke-width="0.5" stroke-miterlimit="10"/>
<path d="M12.4062 10.1944C12.4062 10.1278 12.4031 10.0619 12.3969 9.99688C12.3846 9.86738 12.4411 9.73764 12.5542 9.67334L12.8254 9.5191C12.9708 9.4364 13.0205 9.25075 12.9359 9.10648L12.5552 8.45774C12.4721 8.31626 12.2909 8.26771 12.1482 8.34873L11.8637 8.51036C11.7533 8.57312 11.6164 8.55773 11.5126 8.48446C11.4004 8.40531 11.2802 8.33658 11.1532 8.27958C11.0354 8.22672 10.9518 8.114 10.9518 7.9849V7.67695C10.9518 7.51127 10.8175 7.37695 10.6518 7.37695H9.8824C9.71671 7.37695 9.5824 7.51127 9.5824 7.67695V7.98451C9.5824 8.1138 9.49862 8.22664 9.38067 8.27958C9.25393 8.33647 9.13373 8.40528 9.02164 8.48444C8.91786 8.55774 8.78097 8.57312 8.67049 8.51036L8.38599 8.34873C8.24336 8.26771 8.06209 8.31626 7.97907 8.45774L7.59837 9.10648C7.51371 9.25075 7.56339 9.4364 7.7088 9.51909L7.98137 9.6741C8.09379 9.73804 8.15034 9.86668 8.13776 9.99539C8.13137 10.0609 8.128 10.1272 8.128 10.1944C8.128 10.261 8.13113 10.327 8.13732 10.392C8.14964 10.5215 8.09309 10.6512 7.98002 10.7155L7.7088 10.8698C7.56339 10.9524 7.51371 11.1381 7.59837 11.2824L7.97907 11.9311C8.06209 12.0726 8.24336 12.1211 8.38599 12.0401L8.67049 11.8785C8.78097 11.8157 8.91785 11.8311 9.02166 11.9044C9.13381 11.9835 9.25405 12.0523 9.38108 12.1093C9.49887 12.1621 9.5824 12.2748 9.5824 12.4039V12.7119C9.5824 12.8776 9.71671 13.0119 9.8824 13.0119H10.6518C10.8175 13.0119 10.9518 12.8776 10.9518 12.7119V12.4043C10.9518 12.275 11.0356 12.1622 11.1536 12.1093C11.2803 12.0524 11.4005 11.9836 11.5126 11.9044C11.6164 11.8311 11.7533 11.8157 11.8637 11.8785L12.1482 12.0401C12.2909 12.1211 12.4721 12.0726 12.5552 11.9311L12.9359 11.2824C13.0205 11.1381 12.9708 10.9524 12.8254 10.8698L12.5542 10.7155C12.4411 10.6512 12.3846 10.5215 12.3969 10.392C12.4031 10.327 12.4062 10.261 12.4062 10.1944Z" stroke="#262E30" stroke-width="0.5" stroke-miterlimit="10"/>
<path d="M9.56905 6.10587L10.5676 5.53883C10.7132 5.45618 10.763 5.27041 10.6782 5.12607L9.78954 3.61226C9.70652 3.47084 9.52532 3.42229 9.38271 3.50326L8.55924 3.97078C8.4488 4.03348 8.31157 4.01889 8.21097 3.94139C7.93891 3.7318 7.6364 3.55866 7.31102 3.42913C7.191 3.38136 7.10783 3.2678 7.10783 3.13862V2.21797C7.10783 2.05228 6.97352 1.91797 6.80783 1.91797H5.02369C4.85801 1.91797 4.72369 2.05228 4.72369 2.21797V3.13785C4.72369 3.26702 4.64052 3.38058 4.5205 3.42836C4.19512 3.55789 3.89262 3.73103 3.62056 3.94061C3.51995 4.01812 3.38272 4.03271 3.27228 3.97001L2.44889 3.50253C2.30625 3.42154 2.12501 3.47013 2.04201 3.61161L1.15396 5.12533C1.06929 5.26967 1.11907 5.45538 1.26458 5.53801L2.07419 5.99774C2.18698 6.06178 2.24458 6.19091 2.22645 6.31934C2.2031 6.48472 2.19089 6.65362 2.19089 6.82552C2.19089 6.99742 2.2031 7.16632 2.22645 7.3317C2.24458 7.46013 2.18698 7.58926 2.07419 7.6533L1.26466 8.11299C1.11911 8.19564 1.06935 8.3814 1.15408 8.52574L2.04277 10.0395C2.12579 10.181 2.30699 10.2295 2.4496 10.1486L3.27307 9.68103C3.3835 9.61833 3.52074 9.63292 3.62134 9.71043C3.8934 9.92001 4.1959 10.0932 4.52129 10.2227C4.64131 10.2705 4.72448 10.384 4.72448 10.5132V11.4331C4.72448 11.5988 4.85879 11.7331 5.02448 11.7331H6.43294" stroke="#262E30" stroke-width="0.5" stroke-miterlimit="10"/>
</g>
<defs>
<clipPath id="clip0_1018_9532">
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1,7 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="1.5" x2="13.5" y2="1.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="5.5" x2="11.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="9.5" x2="13.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="4.5" y1="13.5" x2="10.5" y2="13.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill="#009688" d="m 7,14 c 0,0 0,1 1,1 1,0 1,-1 1,-1 V 2 C 9,2 9,1 8,1 7,1 7,2 7,2 Z"/>
<path fill="#808080" d="M 3,3 H 13 V 4 H 3 Z" />
<path fill="#808080" d="m 3.5,9 h 9 v 1 h -9 z" />
<path fill="#808080" d="m 5.5,6 h 5 v 1 h -5 z" />
<path fill="#808080" d="m 4,12 h 8 v 1 H 4 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 389 B

After

Width:  |  Height:  |  Size: 575 B

View File

@@ -1,7 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="1.5" x2="13.5" y2="1.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="5.5" x2="11.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="9.5" x2="12.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="13.5" x2="7.5" y2="13.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill="#009688" d="m 1,14 c 0,0 0,1 1,1 1,0 1,-1 1,-1 V 2 C 3,2 3,1 2,1 1,1 1,2 1,2 Z" />
<path fill="#808080" d="M 2,3 H 12 V 4 H 2 Z" />
<path fill="#808080" d="m 2,9 h 9 v 1 H 2 Z" />
<path fill="#808080" d="M 2,6 H 7 V 7 H 2 Z" />
<path fill="#808080" d="m 2,12 h 8 v 1 H 2 Z" />
</svg>

Before

Width:  |  Height:  |  Size: 383 B

After

Width:  |  Height:  |  Size: 574 B

View File

@@ -1,7 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="1.5" x2="13.5" y2="1.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="5.5" x2="13.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="2.5" y1="9.5" x2="13.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="7.5" y1="13.5" x2="13.5" y2="13.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill="#009688" d="m 15,14 c 0,0 0,1 -1,1 -1,0 -1,-1 -1,-1 V 2 c 0,0 0,-1 1,-1 1,0 1,1 1,1 z" />
<path fill="#808080" d="M 14,3 H 4 v 1 h 10 z" />
<path fill="#808080" d="M 14,9 H 5 v 1 h 9 z" />
<path fill="#808080" d="M 14,6 H 9 v 1 h 5 z" />
<path fill="#808080" d="M 14,12 H 6 v 1 h 8 z" />
</svg>

Before

Width:  |  Height:  |  Size: 395 B

After

Width:  |  Height:  |  Size: 575 B

View File

@@ -1,60 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="5.5" x2="13.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="9.5" x2="11.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="13.5" x2="13.5" y2="13.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<svg
viewBox="0 0 16 16"
width="16px"
height="16px"
version="1.1"
id="svg12"
sodipodi:docname="vertic_bottom.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="41.7193"
inkscape:cx="12.356391"
inkscape:cy="8.5092511"
inkscape:window-width="1920"
inkscape:window-height="1129"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12">
<inkscape:grid
type="xygrid"
id="grid299" />
</sodipodi:namedview>
<path
fill="#009688"
d="M 2,11 C 2,11 1,11 1,12.5 1,14 2,14 2,14 h 12 c 0,0 1,0 1,-1.5 C 15,11 14,11 14,11 Z"
id="path2"
style="stroke-width:1.22474" />
<path
fill="#808080"
d="M 3,3 H 13 V 4 H 3 Z"
id="path4" />
<path
fill="#808080"
d="M 3,6 H 13 V 7 H 3 Z"
id="path301" />
<path
fill="#808080"
d="m 3,9 h 10 v 1 H 3 Z"
id="path303" />
<path
fill="#808080"
d="m 3,12 h 10 v 1 H 3 Z"
id="path305" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 454 B

View File

@@ -1,60 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="3.5" x2="13.5" y2="3.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="7.5" x2="11.5" y2="7.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="11.5" x2="13.5" y2="11.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<svg
viewBox="0 0 16 16"
width="16px"
height="16px"
version="1.1"
id="svg12"
sodipodi:docname="vertic_center.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="41.7193"
inkscape:cx="12.356391"
inkscape:cy="8.5092511"
inkscape:window-width="1920"
inkscape:window-height="1129"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12">
<inkscape:grid
type="xygrid"
id="grid299" />
</sodipodi:namedview>
<path
fill="#009688"
d="m 2,6.5 c 0,0 -1,0 -1,1.5 0,1.5 1,1.5 1,1.5 h 12 c 0,0 1,0 1,-1.5 0,-1.5 -1,-1.5 -1,-1.5 z"
id="path2"
style="stroke-width:1.22474" />
<path
fill="#808080"
d="M 3,3 H 13 V 4 H 3 Z"
id="path4" />
<path
fill="#808080"
d="M 3,6 H 13 V 7 H 3 Z"
id="path301" />
<path
fill="#808080"
d="m 3,9 h 10 v 1 H 3 Z"
id="path303" />
<path
fill="#808080"
d="m 3,12 h 10 v 1 H 3 Z"
id="path305" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 454 B

View File

@@ -1,60 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="1.5" y1="1.5" x2="13.5" y2="1.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="5.5" x2="11.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="9.5" x2="13.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<svg
viewBox="0 0 16 16"
width="16px"
height="16px"
version="1.1"
id="svg12"
sodipodi:docname="vertic_top.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs16" />
<sodipodi:namedview
id="namedview14"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="41.7193"
inkscape:cx="12.356391"
inkscape:cy="8.5092511"
inkscape:window-width="1920"
inkscape:window-height="1129"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12">
<inkscape:grid
type="xygrid"
id="grid299" />
</sodipodi:namedview>
<path
fill="#009688"
d="M 2,2 C 2,2 1,2 1,3.5 1,5 2,5 2,5 H 14 C 14,5 15,5 15,3.5 15,2 14,2 14,2 Z"
id="path2"
style="stroke-width:1.22474" />
<path
fill="#808080"
d="M 3,3 H 13 V 4 H 3 Z"
id="path4" />
<path
fill="#808080"
d="M 3,6 H 13 V 7 H 3 Z"
id="path301" />
<path
fill="#808080"
d="m 3,9 h 10 v 1 H 3 Z"
id="path303" />
<path
fill="#808080"
d="m 3,12 h 10 v 1 H 3 Z"
id="path305" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 452 B

View File

@@ -1,3 +1 @@
<svg width="26" height="11" viewBox="0 0 26 11" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="8" viewBox="0 0 20 8"><line x1="0.5" y1="3.5" x2="19.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="16.5 6.5 19.5 3.5 16.5 0.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M25.0877 5.97153C25.3595 5.69978 25.3595 5.2592 25.0877 4.98746L20.6594 0.55913C20.3877 0.287386 19.9471 0.287386 19.6753 0.55913C19.4036 0.830875 19.4036 1.27146 19.6753 1.5432L23.6116 5.47949L19.6753 9.41578C19.4036 9.68753 19.4036 10.1281 19.6753 10.3999C19.9471 10.6716 20.3877 10.6716 20.6594 10.3999L25.0877 5.97153ZM0.90332 6.17534H24.5957V4.78365H0.90332V6.17534Z" fill="#009688"/>
</svg>

Before

Width:  |  Height:  |  Size: 502 B

After

Width:  |  Height:  |  Size: 330 B

View File

@@ -1,8 +1 @@
<svg width="13" height="15" xmlns="http://www.w3.org/2000/svg" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path d="M1.5,9.5v2h2l8.586-8.586a1.414,1.414,0,0,0-2-2Z" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="14.5" x2="12.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/></svg>
<g>
<title>Layer 1</title>
<path id="svg_1" fill="#323A3D" d="m1.06437,9.28011l0.01103,2.11179l2.13978,0.0108l-2.15081,-2.12259zm0.0114,0.01023l2.12876,2.10086l9.40197,-9.27883l-2.1287,-2.10086l-9.40203,9.27883z" clip-rule="evenodd" fill-rule="evenodd"/>
<line id="svg_2" stroke-linecap="round" stroke-width="2" stroke="#323A3D" y2="13.4785" x2="12" y1="13.4785" x1="2.05957"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -1,4 +1 @@
<svg width="13" height="15" viewBox="0 0 13 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="13" height="15" viewBox="0 0 13 15"><path d="M1.5,9.5v2h2l8.586-8.586a1.414,1.414,0,0,0-2-2Z" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="14.5" x2="12.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.06444 9.28005L1.07547 11.3918L3.21526 11.4027L1.06444 9.28005ZM1.07569 9.28988L3.20445 11.3907L12.6065 2.11192L10.4777 0.011054L1.07569 9.28988Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.05957 13.4785C1.05957 12.9262 1.50729 12.4785 2.05957 12.4785H12C12.5523 12.4785 13 12.9262 13 13.4785C13 14.0308 12.5523 14.4785 12 14.4785H2.05957C1.50729 14.4785 1.05957 14.0308 1.05957 13.4785Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -1,3 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M4.5,14.5h-3a1,1,0,0,1-1-1v-6a1,1,0,0,1,1-1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="3.5" y1="2.5" x2="3.5" y2="6.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="5.5" y1="2.5" x2="5.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="7.5" y1="2.5" x2="7.5" y2="5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="9.5" y1="2.5" x2="9.5" y2="4.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="2.5" x2="11.5" y2="4.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M4.5,6.5h-3v-5a1,1,0,0,1,1-1h10a1,1,0,0,1,1,1v3" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><circle cx="10.5" cy="10.5" r="4" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><polyline points="11.5 8.5 12.5 9.5 8.5 9.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><polyline points="12.5 11.5 8.5 11.5 9.5 12.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.10031 1.86719C2.27188 1.86719 1.60031 2.53877 1.60031 3.36719V9.01149C0.843171 9.08758 0.252106 9.72671 0.252106 10.5039V15.6221C0.252106 16.4506 0.923676 17.1221 1.7521 17.1221H9.05122C10.1743 18.3923 11.8161 19.1931 13.6449 19.1931C17.0303 19.1931 19.7747 16.4487 19.7747 13.0633C19.7747 10.6147 18.339 8.50146 16.2634 7.51942V3.36719C16.2634 2.53877 15.5918 1.86719 14.7634 1.86719H3.10031ZM15.2634 7.14953V3.36719C15.2634 3.09105 15.0395 2.86719 14.7634 2.86719H3.10031C2.82417 2.86719 2.60031 3.09105 2.60031 3.36719V9.00377H3.15292V3.96484H5.79236H6.79239H8.43182H9.43183H11.0713H12.0713H14.7107V7.02592C14.898 7.05876 15.0824 7.1001 15.2634 7.14953ZM13.7107 6.93394V4.96484H12.0713V7.13745C12.5735 7.00446 13.1009 6.93359 13.6449 6.93359C13.6669 6.93359 13.6888 6.93371 13.7107 6.93394ZM11.0713 7.49841V4.96484H9.43182L9.43183 8.61091C9.91152 8.15685 10.4645 7.77947 11.0713 7.49841ZM8.3317 10.0045H5.79236V10.0045H3.15292V10.0039H1.75211C1.47596 10.0039 1.25211 10.2278 1.25211 10.5039V15.6221C1.25211 15.8983 1.47596 16.1221 1.7521 16.1221H8.33162C7.81228 15.2219 7.51514 14.1773 7.51514 13.0633C7.51514 11.9493 7.81231 10.9047 8.3317 10.0045ZM8.43183 4.96484V9.00377H6.79239V4.96484H8.43183ZM5.79236 4.96484H4.15292V9.00377H5.79236V4.96484ZM18.7747 13.0633C18.7747 15.8964 16.478 18.1931 13.6449 18.1931C10.8118 18.1931 8.51514 15.8964 8.51514 13.0633C8.51514 10.2302 10.8118 7.93359 13.6449 7.93359C16.478 7.93359 18.7747 10.2302 18.7747 13.0633ZM14.455 10.2226C14.6503 10.0273 14.9669 10.0273 15.1621 10.2226L16.6376 11.698C16.7806 11.841 16.8234 12.0561 16.746 12.2429C16.6686 12.4298 16.4863 12.5516 16.284 12.5516H11.0631C10.787 12.5516 10.5631 12.3277 10.5631 12.0516C10.5631 11.7754 10.787 11.5516 11.0631 11.5516H15.0769L14.455 10.9297C14.2598 10.7344 14.2598 10.4178 14.455 10.2226ZM12.1276 15.9053C12.3229 16.1005 12.6395 16.1005 12.8347 15.9053C13.03 15.71 13.03 15.3934 12.8347 15.1982L12.2128 14.5762H16.2266C16.5028 14.5762 16.7266 14.3524 16.7266 14.0762C16.7266 13.8001 16.5028 13.5762 16.2266 13.5762H11.0057C10.8035 13.5762 10.6212 13.6981 10.5438 13.8849C10.4664 14.0717 10.5092 14.2868 10.6522 14.4298L12.1276 15.9053Z" fill="#262E30"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -1,11 +1 @@
<svg width="23" height="21" viewBox="0 0 23 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20"><path d="M.5,6.5c0-1.443,2.314-6,3-6s3,4.763,3,6a3,3,0,0,1-3,3A2.883,2.883,0,0,1,.5,6.5Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M2.5,5.5c0,1,0,2,1,2" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M21.5,18.5h-3" style="fill:none;stroke:#ed1c24;stroke-linecap:square;stroke-linejoin:round"/><path d="M21.5,14.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,10.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,6.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,2.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M13.5,9.922V2.5a2,2,0,0,0-2-2h0a2,2,0,0,0-2,2V9.922a5,5,0,1,0,4,0Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><line x1="11.5" y1="3.5" x2="11.5" y2="14.5" style="fill:none;stroke:#ed1c24;stroke-linecap:round;stroke-linejoin:round"/><circle cx="11.5" cy="14.5" r="2.5" style="fill:#ed1c24"/></svg>
<path d="M10.4186 11.4644L10.6331 11.916L10.9186 11.7804V11.4644H10.4186ZM14.2992 11.4643H13.7992V11.7803L14.0846 11.9159L14.2992 11.4643ZM10.9186 2.62061C10.9186 1.82516 11.5634 1.18031 12.3589 1.18031V0.180313C11.0111 0.180313 9.91856 1.27287 9.91856 2.62061H10.9186ZM10.9186 11.4644V2.62061H9.91856V11.4644H10.9186ZM8.33162 15.556C8.33162 13.9502 9.27137 12.563 10.6331 11.916L10.204 11.0128C8.50674 11.8191 7.33162 13.5498 7.33162 15.556H8.33162ZM12.359 19.5834C10.1347 19.5834 8.33162 17.7803 8.33162 15.556H7.33162C7.33162 18.3325 9.58245 20.5834 12.359 20.5834V19.5834ZM16.3864 15.556C16.3864 17.7803 14.5832 19.5834 12.359 19.5834V20.5834C15.1355 20.5834 17.3864 18.3325 17.3864 15.556H16.3864ZM14.0846 11.9159C15.4465 12.5628 16.3864 13.9501 16.3864 15.556H17.3864C17.3864 13.5497 16.2111 11.8189 14.5137 11.0126L14.0846 11.9159ZM13.7992 2.62061V11.4643H14.7992V2.62061H13.7992ZM12.3589 1.18031C13.1543 1.18031 13.7992 1.82516 13.7992 2.62061H14.7992C14.7992 1.27287 13.7066 0.180313 12.3589 0.180313V1.18031Z" fill="#898989"/>
<path d="M0.867188 10.1649C0.867188 8.7096 2.95484 4.06187 3.55999 4.0619C4.16514 4.06194 6.16206 8.91731 6.16206 10.1649C6.16206 11.4124 5.36822 13.1388 3.55999 13.1388C1.75176 13.1388 0.867188 11.6201 0.867188 10.1649Z" stroke="#898989"/>
<path d="M2.5942 9.42411C2.51069 9.88791 2.56102 10.9332 3.43038 11.4042" stroke="#898989" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7103 13.0507L11.7103 3.26757C11.7103 2.91037 11.9999 2.6208 12.3571 2.6208C12.7143 2.6208 13.0038 2.91037 13.0038 3.26757L13.0038 13.0508C14.1196 13.338 14.9439 14.3509 14.9439 15.5563C14.9439 16.9851 13.7857 18.1433 12.3569 18.1433C10.9281 18.1433 9.76981 16.9851 9.76981 15.5563C9.76981 14.3507 10.5944 13.3378 11.7103 13.0507Z" fill="#D01B1B"/>
<path d="M22.2685 18.1429H19.0971" stroke="#D01B1B" stroke-linecap="round"/>
<path d="M22.2685 14.2625H19.6257" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.2685 10.3815L18.5686 10.3815" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.2685 6.50107L18.5686 6.50107" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.2685 2.62067H18.5686" stroke="#C2C2C2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -1,12 +1 @@
<svg width="23" height="21" viewBox="0 0 23 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20"><line x1="11.5" y1="3.5" x2="11.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:round;opacity:0.5"/><path d="M.5,6.5c0-1.443,2.314-6,3-6s3,4.763,3,6a3,3,0,0,1-3,3A2.883,2.883,0,0,1,.5,6.5Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M2.5,5.5c0,1,0,2,1,2" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M21.5,18.5h-3" style="fill:none;stroke:#ff6f00;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,14.5h-3" style="fill:none;stroke:#ff6f00;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,10.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,6.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,2.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M13.5,9.922V2.5a2,2,0,0,0-2-2h0a2,2,0,0,0-2,2V9.922a5,5,0,1,0,4,0Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><line x1="11.5" y1="5.5" x2="11.5" y2="14.5" style="fill:none;stroke:#ff6f00;stroke-linecap:round;stroke-miterlimit:10"/><circle cx="11.5" cy="14.5" r="2.5" style="fill:#ff6f00"/></svg>
<path d="M10.457 11.4008L10.6715 11.8524L10.957 11.7168V11.4008H10.457ZM14.3376 11.4006H13.8376V11.7167L14.123 11.8523L14.3376 11.4006ZM10.957 2.557C10.957 1.76154 11.6018 1.1167 12.3973 1.1167V0.116699C11.0495 0.116699 9.95698 1.20926 9.95698 2.557H10.957ZM10.957 11.4008V2.557H9.95698V11.4008H10.957ZM8.37004 15.4924C8.37004 13.8866 9.30979 12.4993 10.6715 11.8524L10.2424 10.9491C8.54516 11.7555 7.37004 13.4862 7.37004 15.4924H8.37004ZM12.3974 19.5198C10.1732 19.5198 8.37004 17.7166 8.37004 15.4924H7.37004C7.37004 18.2689 9.62087 20.5198 12.3974 20.5198V19.5198ZM16.4248 15.4924C16.4248 17.7166 14.6217 19.5198 12.3974 19.5198V20.5198C15.1739 20.5198 17.4248 18.2689 17.4248 15.4924H16.4248ZM14.123 11.8523C15.4849 12.4992 16.4248 13.8865 16.4248 15.4924H17.4248C17.4248 13.4861 16.2495 11.7553 14.5521 10.949L14.123 11.8523ZM13.8376 2.557V11.4006H14.8376V2.557H13.8376ZM12.3973 1.1167C13.1927 1.1167 13.8376 1.76154 13.8376 2.557H14.8376C14.8376 1.20926 13.745 0.116699 12.3973 0.116699V1.1167Z" fill="#898989"/>
<path d="M0.905604 10.1012C0.905604 8.64598 2.99326 3.99825 3.5984 3.99829C4.20355 3.99833 6.20048 8.8537 6.20048 10.1012C6.20048 11.3488 5.40664 13.0752 3.5984 13.0752C1.79017 13.0752 0.905604 11.5565 0.905604 10.1012Z" stroke="#898989"/>
<path d="M2.63246 9.36085C2.54895 9.82465 2.59928 10.87 3.46864 11.341" stroke="#898989" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7481 12.987L11.7481 3.20396C11.7481 2.84676 12.0377 2.55719 12.3949 2.55719C12.7521 2.55719 13.0417 2.84676 13.0417 3.20396L13.0417 12.9871C14.1574 13.2744 14.9818 14.2873 14.9818 15.4927C14.9818 16.9215 13.8235 18.0797 12.3947 18.0797C10.9659 18.0797 9.80765 16.9215 9.80765 15.4927C9.80765 14.2871 10.6322 13.2742 11.7481 12.987Z" fill="#C2C2C2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7482 12.9868L11.7482 6.65849C11.7482 6.30129 12.0377 6.01172 12.3949 6.01172C12.7521 6.01172 13.0417 6.30129 13.0417 6.65849L13.0417 12.9869C14.1574 13.2741 14.9818 14.287 14.9818 15.4924C14.9818 16.9212 13.8235 18.0795 12.3947 18.0795C10.9659 18.0795 9.80767 16.9212 9.80767 15.4924C9.80767 14.2869 10.6323 13.2739 11.7482 12.9868Z" fill="#FF6F00"/>
<path d="M22.3052 18.0794H19.1338" stroke="#FF6F00" stroke-linecap="round"/>
<path d="M22.3052 14.199H19.6624" stroke="#FF6F00" stroke-linecap="round"/>
<path d="M22.3052 10.318L18.6053 10.318" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.3052 6.43759L18.6053 6.43759" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.3052 2.55719H18.6053" stroke="#C2C2C2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,12 +1 @@
<svg width="23" height="21" viewBox="0 0 23 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20"><line x1="11.5" y1="3.5" x2="11.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:round;opacity:0.5"/><path d="M.5,6.5c0-1.443,2.314-6,3-6s3,4.763,3,6a3,3,0,0,1-3,3A2.883,2.883,0,0,1,.5,6.5Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M2.5,5.5c0,1,0,2,1,2" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M21.5,18.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,14.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,10.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,6.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M21.5,2.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M13.5,9.922V2.5a2,2,0,0,0-2-2h0a2,2,0,0,0-2,2V9.922a5,5,0,1,0,4,0Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><line x1="11.5" y1="7.5" x2="11.5" y2="14.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-miterlimit:10"/><circle cx="11.5" cy="14.5" r="2.5" style="fill:#009688"/></svg>
<path d="M10.4954 11.4008L10.71 11.8524L10.9954 11.7168V11.4008H10.4954ZM14.376 11.4006H13.876V11.7167L14.1615 11.8523L14.376 11.4006ZM10.9954 2.557C10.9954 1.76154 11.6402 1.1167 12.4357 1.1167V0.116699C11.088 0.116699 9.99539 1.20926 9.99539 2.557H10.9954ZM10.9954 11.4008V2.557H9.99539V11.4008H10.9954ZM8.40845 15.4924C8.40845 13.8866 9.34821 12.4993 10.71 11.8524L10.2808 10.9491C8.58358 11.7555 7.40845 13.4862 7.40845 15.4924H8.40845ZM12.4358 19.5198C10.2116 19.5198 8.40845 17.7166 8.40845 15.4924H7.40845C7.40845 18.2689 9.65928 20.5198 12.4358 20.5198V19.5198ZM16.4632 15.4924C16.4632 17.7166 14.6601 19.5198 12.4358 19.5198V20.5198C15.2124 20.5198 17.4632 18.2689 17.4632 15.4924H16.4632ZM14.1615 11.8523C15.5233 12.4992 16.4632 13.8865 16.4632 15.4924H17.4632C17.4632 13.4861 16.2879 11.7553 14.5905 10.949L14.1615 11.8523ZM13.876 2.557V11.4006H14.876V2.557H13.876ZM12.4357 1.1167C13.2311 1.1167 13.876 1.76154 13.876 2.557H14.876C14.876 1.20926 13.7834 0.116699 12.4357 0.116699V1.1167Z" fill="#898989"/>
<path d="M0.944021 10.1012C0.944021 8.64598 3.03167 3.99825 3.63682 3.99829C4.24197 3.99833 6.2389 8.8537 6.2389 10.1012C6.2389 11.3488 5.44505 13.0752 3.63682 13.0752C1.82859 13.0752 0.944021 11.5565 0.944021 10.1012Z" stroke="#898989"/>
<path d="M2.67121 9.36085C2.5877 9.82465 2.63803 10.87 3.50739 11.341" stroke="#898989" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7917 12.987L11.7917 3.20396C11.7917 2.84676 12.0813 2.55719 12.4385 2.55719C12.7957 2.55719 13.0853 2.84676 13.0853 3.20396L13.0853 12.9871C14.201 13.2744 15.0254 14.2873 15.0254 15.4927C15.0254 16.9215 13.8671 18.0797 12.4383 18.0797C11.0095 18.0797 9.85125 16.9215 9.85125 15.4927C9.85125 14.2871 10.6758 13.2742 11.7917 12.987Z" fill="#C2C2C2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7918 12.9866L11.7917 10.4389C11.7917 10.0817 12.0813 9.79208 12.4385 9.79208C12.7957 9.79208 13.0853 10.0817 13.0853 10.4389L13.0853 12.9867C14.201 13.2739 15.0254 14.2868 15.0254 15.4922C15.0254 16.921 13.8671 18.0793 12.4383 18.0793C11.0095 18.0793 9.85125 16.921 9.85125 15.4922C9.85125 14.2867 10.6758 13.2737 11.7918 12.9866Z" fill="#009688"/>
<path d="M22.35 18.0794H19.1786" stroke="#009688" stroke-linecap="round"/>
<path d="M22.35 14.199H19.7071" stroke="#009688" stroke-linecap="round"/>
<path d="M22.35 10.318L18.65 10.318" stroke="#009688" stroke-linecap="round"/>
<path d="M22.35 6.43759L18.65 6.43759" stroke="#C2C2C2" stroke-linecap="round"/>
<path d="M22.35 2.55719H18.65" stroke="#C2C2C2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,12 +1 @@
<svg width="23" height="21" viewBox="0 0 23 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20"><line x1="11.5" y1="3.5" x2="11.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:round;opacity:0.5"/><path d="M.5,6.5c0-1.443,2.314-6,3-6s3,4.763,3,6a3,3,0,0,1-3,3A2.883,2.883,0,0,1,.5,6.5Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M2.5,5.5c0,1,0,2,1,2" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M21.5,18.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,14.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,10.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,6.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,2.5h-3" style="fill:none;stroke:#949494;stroke-linecap:square"/><path d="M13.5,9.922V2.5a2,2,0,0,0-2-2h0a2,2,0,0,0-2,2V9.922a5,5,0,1,0,4,0Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><line x1="11.5" y1="10.5" x2="11.5" y2="14.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-miterlimit:10"/><circle cx="11.5" cy="14.5" r="2.5" style="fill:#009688"/></svg>
<path d="M10.3205 11.4008L10.5351 11.8524L10.8205 11.7168V11.4008H10.3205ZM14.2011 11.4006H13.7011V11.7167L13.9866 11.8523L14.2011 11.4006ZM10.8205 2.557C10.8205 1.76154 11.4653 1.1167 12.2608 1.1167V0.116699C10.9131 0.116699 9.8205 1.20926 9.8205 2.557H10.8205ZM10.8205 11.4008V2.557H9.8205V11.4008H10.8205ZM8.23356 15.4924C8.23356 13.8866 9.17331 12.4993 10.5351 11.8524L10.1059 10.9491C8.40868 11.7555 7.23356 13.4862 7.23356 15.4924H8.23356ZM12.2609 19.5198C10.0367 19.5198 8.23356 17.7166 8.23356 15.4924H7.23356C7.23356 18.2689 9.48439 20.5198 12.2609 20.5198V19.5198ZM16.2883 15.4924C16.2883 17.7166 14.4852 19.5198 12.2609 19.5198V20.5198C15.0375 20.5198 17.2883 18.2689 17.2883 15.4924H16.2883ZM13.9866 11.8523C15.3484 12.4992 16.2883 13.8865 16.2883 15.4924H17.2883C17.2883 13.4861 16.113 11.7553 14.4156 10.949L13.9866 11.8523ZM13.7011 2.557V11.4006H14.7011V2.557H13.7011ZM12.2608 1.1167C13.0563 1.1167 13.7011 1.76154 13.7011 2.557H14.7011C14.7011 1.20926 13.6085 0.116699 12.2608 0.116699V1.1167Z" fill="#898989"/>
<path d="M0.769127 10.1012C0.769127 8.64598 2.85678 3.99825 3.46193 3.99829C4.06708 3.99833 6.064 8.8537 6.064 10.1012C6.064 11.3488 5.27016 13.0752 3.46193 13.0752C1.6537 13.0752 0.769127 11.5565 0.769127 10.1012Z" stroke="#898989"/>
<path d="M2.49622 9.36085C2.41272 9.82465 2.46305 10.87 3.33241 11.341" stroke="#898989" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6122 12.987L11.6122 3.20396C11.6122 2.84676 11.9018 2.55719 12.259 2.55719C12.6162 2.55719 12.9058 2.84676 12.9058 3.20396L12.9058 12.9871C14.0215 13.2744 14.8459 14.2873 14.8459 15.4927C14.8459 16.9215 13.6876 18.0797 12.2588 18.0797C10.83 18.0797 9.67175 16.9215 9.67175 15.4927C9.67175 14.2871 10.4963 13.2742 11.6122 12.987Z" fill="#C2C2C2"/>
<path d="M14.8459 15.4926C14.8459 16.9214 13.6876 18.0797 12.2588 18.0797C10.83 18.0797 9.67175 16.9214 9.67175 15.4926C9.67175 14.0638 10.83 12.9055 12.2588 12.9055C13.6876 12.9055 14.8459 14.0638 14.8459 15.4926Z" fill="#009688"/>
<path d="M22.1734 18.0794H19.002" stroke="#009688" stroke-linecap="round"/>
<path d="M22.1734 14.199H19.5305" stroke="#009688" stroke-linecap="round"/>
<path d="M22.1734 10.318L18.4734 10.318" stroke="#009688" stroke-linecap="round"/>
<path d="M22.1734 6.43759L18.4734 6.43759" stroke="#009688" stroke-linecap="round"/>
<path d="M22.1734 2.55719H18.4734" stroke="#C2C2C2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,12 +1 @@
<svg width="23" height="21" viewBox="0 0 23 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20"><path d="M.5,6.5c0-1.443,2.314-6,3-6s3,4.763,3,6a3,3,0,0,1-3,3A2.883,2.883,0,0,1,.5,6.5Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M2.5,5.5c0,1,0,2,1,2" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M21.5,18.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,14.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,10.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,6.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M21.5,2.5h-3" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10"/><path d="M13.5,9.922V2.5a2,2,0,0,0-2-2h0a2,2,0,0,0-2,2V9.922a5,5,0,1,0,4,0Z" style="fill:none;stroke:#949494;stroke-linecap:round"/><path d="M9,14.5a2.5,2.5,0,0,0,5,0,2.577,2.577,0,0,0-.05-.5H9.05A2.577,2.577,0,0,0,9,14.5Z" style="fill:#009688"/><path d="M12,12.055V3.5a.5.5,0,0,0-1,0v8.555A2.5,2.5,0,0,0,9.05,14h4.9A2.5,2.5,0,0,0,12,12.055Z" style="fill:#949494;opacity:0.5"/></svg>
<path d="M10.2441 11.4008L10.4587 11.8524L10.7441 11.7168V11.4008H10.2441ZM14.1247 11.4006H13.6247V11.7167L13.9102 11.8523L14.1247 11.4006ZM10.7441 2.557C10.7441 1.76154 11.3889 1.1167 12.1844 1.1167V0.116699C10.8367 0.116699 9.7441 1.20926 9.7441 2.557H10.7441ZM10.7441 11.4008V2.557H9.7441V11.4008H10.7441ZM8.15717 15.4924C8.15717 13.8866 9.09692 12.4993 10.4587 11.8524L10.0295 10.9491C8.33229 11.7555 7.15717 13.4862 7.15717 15.4924H8.15717ZM12.1845 19.5198C9.96028 19.5198 8.15717 17.7166 8.15717 15.4924H7.15717C7.15717 18.2689 9.40799 20.5198 12.1845 20.5198V19.5198ZM16.2119 15.4924C16.2119 17.7166 14.4088 19.5198 12.1845 19.5198V20.5198C14.9611 20.5198 17.2119 18.2689 17.2119 15.4924H16.2119ZM13.9102 11.8523C15.272 12.4992 16.2119 13.8865 16.2119 15.4924H17.2119C17.2119 13.4861 16.0366 11.7553 14.3392 10.949L13.9102 11.8523ZM13.6247 2.557V11.4006H14.6247V2.557H13.6247ZM12.1844 1.1167C12.9799 1.1167 13.6247 1.76154 13.6247 2.557H14.6247C14.6247 1.20926 13.5321 0.116699 12.1844 0.116699V1.1167Z" fill="#898989"/>
<path d="M0.693306 10.1012C0.693306 8.64598 2.78096 3.99825 3.38611 3.99829C3.99126 3.99833 5.98818 8.8537 5.98818 10.1012C5.98818 11.3488 5.19434 13.0752 3.38611 13.0752C1.57788 13.0752 0.693306 11.5565 0.693306 10.1012Z" stroke="#898989"/>
<path d="M2.42027 9.36085C2.33676 9.82465 2.38709 10.87 3.25645 11.341" stroke="#898989" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5364 12.987L11.5364 3.20396C11.5364 2.84676 11.826 2.55719 12.1832 2.55719C12.5404 2.55719 12.8299 2.84676 12.8299 3.20396L12.8299 12.9871C13.9457 13.2744 14.7701 14.2873 14.7701 15.4927C14.7701 16.9215 13.6118 18.0797 12.183 18.0797C10.7542 18.0797 9.59592 16.9215 9.59592 15.4927C9.59592 14.2871 10.4205 13.2742 11.5364 12.987Z" fill="#C2C2C2"/>
<path d="M14.7701 15.4922C14.7701 16.921 13.6118 18.0793 12.183 18.0793C10.7542 18.0793 9.59592 16.921 9.59592 15.4922C9.59592 14.9864 10.3621 15.8152 11.7909 15.8152C13.2197 15.8152 14.7701 14.0635 14.7701 15.4922Z" fill="#009688"/>
<path d="M22.0947 18.0794H18.9233" stroke="#009688" stroke-linecap="round"/>
<path d="M22.0947 14.199H19.4518" stroke="#009688" stroke-linecap="round"/>
<path d="M22.0947 10.318L18.3947 10.318" stroke="#009688" stroke-linecap="round"/>
<path d="M22.0947 6.43759L18.3947 6.43759" stroke="#009688" stroke-linecap="round"/>
<path d="M22.0947 2.55719H18.3947" stroke="#009688" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,16 +1 @@
<svg width="128" height="149" viewBox="0 0 128 149" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="74" viewBox="0 0 64 74"><line x1="23" y1="39" x2="23" y2="63" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-width:2px;opacity:0.5"/><path d="M1,47c0-2.886,4.629-12,6-12s6,9.526,6,12a6,6,0,0,1-6,6A5.767,5.767,0,0,1,1,47Z" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-width:2px"/><path d="M5,45c0,2,0,4,2,4" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-width:2px"/><path d="M45,69H39" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10;stroke-width:2px"/><path d="M45,61H39" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10;stroke-width:2px"/><path d="M45,53H39" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10;stroke-width:2px"/><path d="M45,45H39" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-miterlimit:10;stroke-width:2px"/><path d="M45,37H39" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-width:2px"/><path d="M27,53.844V37a4,4,0,0,0-4-4h0a4,4,0,0,0-4,4V53.844a10,10,0,1,0,8,0Z" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-width:2px"/><line x1="23" y1="55" x2="23" y2="63" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-miterlimit:10;stroke-width:2px"/><circle cx="23" cy="63" r="5" style="fill:#009688"/><polyline points="1.5 27.5 1.5 23.5 33.5 23.5 33.5 27.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><polyline points="36.5 27.5 36.5 23.5 47.5 23.5 47.5 27.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><polyline points="61.5 7.5 17.5 7.5 17.5 19.5" style="fill:none;stroke:#949494;stroke-linecap:round"/><polyline points="61.5 49.5 55.5 49.5 55.5 17.5 41.5 17.5 41.5 19.5" style="fill:none;stroke:#949494;stroke-linecap:round"/></svg>
<path d="M82.7793 43.5141L79.8925 40.6274L82.7793 37.7406L85.666 40.6274L82.7793 43.5141ZM127.994 92.228L125.107 95.1148L122.221 92.228L125.107 89.3413L127.994 92.228ZM82.2793 40.6274V36.1917H83.2793V40.6274H82.2793ZM85.7793 32.6917H112.531V33.6917H85.7793V32.6917ZM116.031 36.1917V89.228H115.031V36.1917H116.031ZM118.531 91.728H125.107V92.728H118.531V91.728ZM116.031 89.228C116.031 90.6087 117.15 91.728 118.531 91.728V92.728C116.598 92.728 115.031 91.161 115.031 89.228H116.031ZM112.531 32.6917C114.464 32.6917 116.031 34.2587 116.031 36.1917H115.031C115.031 34.811 113.912 33.6917 112.531 33.6917V32.6917ZM82.2793 36.1917C82.2793 34.2587 83.8463 32.6917 85.7793 32.6917V33.6917C84.3986 33.6917 83.2793 34.811 83.2793 36.1917H82.2793Z" fill="#828280"/>
<path d="M41.979 43.0337L39.0923 40.147L41.979 37.2602L44.8658 40.147L41.979 43.0337ZM127.994 3.65353L125.108 6.54028L122.221 3.65353L125.108 0.766776L127.994 3.65353ZM41.479 40.147V6.65353H42.479V40.147H41.479ZM44.979 3.15353H125.108V4.15353H44.979V3.15353ZM41.479 6.65353C41.479 4.72053 43.046 3.15353 44.979 3.15353V4.15353C43.5983 4.15353 42.479 5.27282 42.479 6.65353H41.479Z" fill="#828280"/>
<path d="M0.76416 54.0911L0.76416 45.126C0.76416 44.5737 1.21188 44.126 1.76416 44.126L69.2315 44.126C69.7838 44.126 70.2315 44.5737 70.2315 45.126L70.2315 55.3035" stroke="#009688" stroke-width="1.5" stroke-linecap="round"/>
<path d="M73.7192 55.3035L73.7192 45.126C73.7192 44.5737 74.167 44.126 74.7192 44.126L96.1852 44.126C96.7374 44.126 97.1852 44.5737 97.1852 45.126L97.1852 55.3035" stroke="#009688" stroke-width="1.5" stroke-linecap="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.8234 68.1978C50.7459 68.1978 48.2511 70.6926 48.2511 73.7701V111.82L46.8593 112.481C41.3628 115.092 37.571 120.691 37.571 127.17C37.571 136.146 44.8474 143.423 53.8234 143.423C62.7993 143.423 70.0757 136.146 70.0757 127.17C70.0757 120.691 66.2839 115.092 60.7874 112.481L59.3956 111.82V73.7701C59.3956 70.6926 56.9008 68.1978 53.8234 68.1978ZM43.3755 73.7701C43.3755 67.9999 48.0532 63.3223 53.8234 63.3223C59.5935 63.3223 64.2712 67.9999 64.2712 73.7701V108.803C70.6464 112.437 74.9513 119.299 74.9513 127.17C74.9513 138.839 65.492 148.298 53.8234 148.298C42.1547 148.298 32.6954 138.839 32.6954 127.17C32.6954 119.299 37.0003 112.437 43.3755 108.803V73.7701Z" fill="#898989"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.546 77.9488C15.9131 77.6886 16.5964 77.283 17.4922 77.283C18.4249 77.2831 19.1237 77.7247 19.4862 77.9963C19.8951 78.3027 20.2496 78.6782 20.5447 79.0328C21.1408 79.7491 21.7489 80.6916 22.339 81.7202C23.5319 83.7997 24.8404 86.5665 26.0477 89.4434C27.2588 92.3291 28.3955 95.3907 29.2342 98.0802C30.04 100.664 30.6719 103.211 30.6719 104.915C30.6719 107.942 29.7247 111.525 27.6384 114.413C25.4972 117.377 22.1188 119.63 17.4921 119.63C12.995 119.63 9.522 117.707 7.22741 114.825C4.98372 112.008 3.93772 108.377 3.93772 104.915C3.93772 103.001 4.58779 100.359 5.43962 97.7004C6.31841 94.9576 7.50745 91.9128 8.76947 89.0746C10.028 86.2443 11.3881 83.5543 12.6224 81.5392C13.2332 80.5421 13.8603 79.6319 14.4717 78.9412C14.7748 78.5987 15.1352 78.2399 15.546 77.9488ZM10.0827 99.188C9.2405 101.817 8.81327 103.826 8.81327 104.915C8.81327 107.461 9.59314 109.969 11.0415 111.788C12.439 113.543 14.5243 114.755 17.4921 114.755C20.3302 114.755 22.3227 113.445 23.6864 111.558C25.1049 109.594 25.7963 107.039 25.7963 104.915C25.7963 104.045 25.3977 102.155 24.5797 99.5317C23.7947 97.0144 22.7142 94.0994 21.5521 91.3302C20.3862 88.5523 19.1653 85.9861 18.1099 84.1463C17.8706 83.7291 17.6489 83.3655 17.4473 83.0554C17.2441 83.3491 17.021 83.6924 16.78 84.0859C15.6957 85.8561 14.4327 88.3383 13.2244 91.0556C12.0196 93.7652 10.8979 96.6436 10.0827 99.188Z" fill="#898989"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9403 99.4588C15.2653 99.6973 16.146 100.965 15.9075 102.29C15.7929 102.926 15.7611 104.097 16.0986 105.249C16.4227 106.355 17.0363 107.301 18.1215 107.889C19.3053 108.53 19.745 110.01 19.1037 111.194C18.4624 112.377 16.9829 112.817 15.7991 112.176C13.2953 110.819 12.0105 108.636 11.4197 106.62C10.8423 104.649 10.8789 102.704 11.1091 101.426C11.3477 100.101 12.6152 99.2202 13.9403 99.4588Z" fill="#898989"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.4827 116.827C61.0891 118.012 64.4927 122.194 64.4927 127.17C64.4927 133.069 59.7111 137.851 53.8127 137.851C47.9142 137.851 43.1326 133.069 43.1326 127.17C43.1326 122.194 46.5362 118.012 51.1426 116.827L51.1426 76.4401C51.1426 74.9655 52.338 73.7701 53.8127 73.7701C55.2873 73.7701 56.4827 74.9655 56.4827 76.4401L56.4827 116.827Z" fill="#C2C2C2"/>
<path d="M64.4927 127.17C64.4927 133.069 59.7111 137.85 53.8127 137.85C47.9142 137.85 43.1326 133.069 43.1326 127.17C43.1326 121.272 47.9142 116.49 53.8127 116.49C59.7111 116.49 64.4927 121.272 64.4927 127.17Z" fill="#009688"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.1825 137.851C97.1825 136.504 96.0911 135.413 94.7447 135.413H81.6524C80.306 135.413 79.2146 136.504 79.2146 137.851C79.2146 139.197 80.306 140.289 81.6524 140.289H94.7447C96.0911 140.289 97.1825 139.197 97.1825 137.851Z" fill="#009688"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.1825 121.831C97.1825 120.485 96.0911 119.393 94.7447 119.393H83.8344C82.4881 119.393 81.3967 120.485 81.3967 121.831C81.3967 123.177 82.4881 124.269 83.8344 124.269H94.7447C96.0911 124.269 97.1825 123.177 97.1825 121.831Z" fill="#009688"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.1825 105.81C97.1825 107.157 96.0911 108.248 94.7447 108.248L79.4703 108.248C78.124 108.248 77.0326 107.157 77.0326 105.81C77.0326 104.464 78.124 103.373 79.4703 103.373L94.7447 103.373C96.0911 103.373 97.1825 104.464 97.1825 105.81Z" fill="#009688"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.1825 89.7905C97.1825 91.1368 96.0911 92.2283 94.7447 92.2283L79.4703 92.2283C78.124 92.2283 77.0326 91.1368 77.0326 89.7905C77.0326 88.4442 78.124 87.3527 79.4703 87.3527L94.7447 87.3527C96.0911 87.3527 97.1825 88.4442 97.1825 89.7905Z" fill="#009688"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.1825 73.7704C97.1825 72.424 96.0911 71.3326 94.7447 71.3326H79.4703C78.124 71.3326 77.0326 72.424 77.0326 73.7704C77.0326 75.1167 78.124 76.2081 79.4703 76.2081H94.7447C96.0911 76.2081 97.1825 75.1167 97.1825 73.7704Z" fill="#C2C2C2"/>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 951 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 951 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 951 B

View File

@@ -1,3 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><line x1="4.5" y1="9.5" x2="0.5" y2="13.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/><line x1="4.5" y1="17.5" x2="0.5" y2="13.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/><path d="M14,13.5a5.5,5.5,0,0,0,0-11" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="0.5" y1="13.5" x2="14" y2="13.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/><line x1="14" y1="2.5" x2="8.5" y2="2.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M1.64645 5.64645C1.45118 5.84171 1.45118 6.15829 1.64645 6.35355L4.82843 9.53553C5.02369 9.7308 5.34027 9.7308 5.53553 9.53553C5.7308 9.34027 5.7308 9.02369 5.53553 8.82843L2.70711 6L5.53553 3.17157C5.7308 2.97631 5.7308 2.65973 5.53553 2.46447C5.34027 2.2692 5.02369 2.2692 4.82843 2.46447L1.64645 5.64645ZM10 16.5769C9.72386 16.5769 9.5 16.8008 9.5 17.0769C9.5 17.3531 9.72386 17.5769 10 17.5769V16.5769ZM2 6.5H12.4615V5.5H2V6.5ZM12.4615 16.5769H10V17.5769H12.4615V16.5769ZM17.5 11.5385C17.5 14.3211 15.2442 16.5769 12.4615 16.5769V17.5769C15.7965 17.5769 18.5 14.8734 18.5 11.5385H17.5ZM12.4615 6.5C15.2442 6.5 17.5 8.7558 17.5 11.5385H18.5C18.5 8.20351 15.7965 5.5 12.4615 5.5V6.5Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 814 B

After

Width:  |  Height:  |  Size: 669 B

View File

@@ -1,5 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><polyline points="0.5 1.5 0.5 4.5 3.5 4.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><polyline points="14.5 13.5 14.5 10.5 11.5 10.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M14.5,7.5a7,7,0,0,0-13.326-3" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M.5,7.5a7,7,0,0,0,13.326,3" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="5.5" y1="5.5" x2="5.5" y2="9.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="9.5" x2="9.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="6.5" y1="7.5" x2="8.5" y2="7.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="6.5" y1="4.5" x2="8.5" y2="4.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path d="M3.01408 12.9725C2.51708 12.4755 2.10241 11.9146 1.77795 11.3056C1.54229 10.8633 1.83193 10.3344 2.31189 10.277L2.3985 10.2719L3.88612 10.2719C4.27445 10.2719 4.58925 10.5867 4.58925 10.975C4.58925 11.1406 4.532 11.2928 4.43621 11.413L4.06445 11.9376L4.62695 12.5001C6.83366 14.2175 9.93507 14.0064 11.9634 11.9781C12.8323 11.1091 13.3576 10.0266 13.5391 8.89953L13.5491 8.83172L13.5676 8.67485C13.6064 8.29176 13.929 8.00026 14.3141 8.00026C14.6821 8.00026 14.9805 8.29862 14.9805 8.66667L14.9779 8.72492L14.964 8.86406C14.9615 8.88538 14.959 8.90576 14.9565 8.9252C14.7612 10.4053 14.095 11.8352 12.9578 12.9725C10.2119 15.7183 5.75996 15.7183 3.01408 12.9725Z" fill="#009688"/>
<path d="M12.9928 3.02786C13.4898 3.52487 13.9045 4.08571 14.2289 4.69469C14.4646 5.13702 14.175 5.66592 13.695 5.72332L13.6084 5.72844L11.927 5.76616C11.5387 5.76616 11.2239 5.45136 11.2239 5.06303C11.2239 4.89744 11.2812 4.74521 11.377 4.62506L11.9395 4.06256L11.4705 3.55584C9.26381 1.83844 6.07183 1.9939 4.0435 4.02223C3.17082 4.89491 2.64483 5.983 2.46553 7.11534L2.44469 7.27231C2.44144 7.30131 2.4383 7.33173 2.43527 7.36357C2.4009 7.72445 2.09782 8.00006 1.73531 8.00006L1.69285 8.00006C1.32492 8.00006 1.02665 7.70179 1.02665 7.33386L1.02917 7.27584L1.05203 7.06323C1.24928 5.58734 1.91493 4.16206 3.04913 3.02786C5.79501 0.28199 10.2469 0.28199 12.9928 3.02786Z" fill="#009688"/>
<path d="M8.49859 4.5L11 10.5H9.69859L9.15775 9.13115H6.7493L6.22535 10.5H5L7.42535 4.5H8.49859ZM8.76056 8.11475L7.93239 6.0082L7.12958 8.11475H8.76056Z" fill="#009688"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -1,7 +1 @@
<svg width="55" height="48" xmlns="http://www.w3.org/2000/svg" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="45" height="40" viewBox="0 0 45 40"><rect x="2" width="43" height="20" rx="5" style="fill:#009688"/></svg>
<g>
<title>Layer 1</title>
<path id="svg_1" fill="#009688" d="m0.6875,0.18359l49.3126,0c2.7615,0 5,2.23858 5,5l0,42.71011l-54.3126,-47.71011z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 153 B

View File

@@ -1,9 +1 @@
<svg width="29" height="29" xmlns="http://www.w3.org/2000/svg" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="9.5" cy="9.5" r="8.5" style="fill:#54545a"/><path d="M9.5,1.5a8,8,0,1,1-8,8,8.009,8.009,0,0,1,8-8m0-1a9,9,0,1,0,9,9,9,9,0,0,0-9-9Z" style="fill:#54545a"/><line x1="4.5" y1="4.5" x2="14.5" y2="14.5" style="fill:none;stroke:#cecece;stroke-linecap:round;stroke-linejoin:round"/><line x1="14.5" y1="4.5" x2="4.5" y2="14.5" style="fill:none;stroke:#cecece;stroke-linecap:round;stroke-linejoin:round"/></svg>
<g>
<title>Layer 1</title>
<circle id="svg_1" fill-opacity="0.3" fill="black" r="14.043" cy="14.0664" cx="14.6973"/>
<path id="svg_2" stroke-linejoin="round" stroke-linecap="round" stroke="#CECECE" d="m8.4082,7.77734l12.5781,12.57816"/>
<path id="svg_3" stroke-linejoin="round" stroke-linecap="round" stroke="#CECECE" d="m20.9863,7.77734l-12.5781,12.57816"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 457 B

After

Width:  |  Height:  |  Size: 497 B

View File

@@ -1,3 +1 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><path d="M12.5,7.5v4a1,1,0,0,1-1,1H1.5a1,1,0,0,1-1-1v-4" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/><line x1="6.5" y1="9.5" x2="6.5" y2="1.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/><polyline points="9.5 4.5 6.5 1.5 3.5 4.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.7212 3.81468L7.23212 1.3256C7.10398 1.19746 6.89622 1.19746 6.76808 1.3256L4.27899 3.81468C4.21746 3.87622 4.18289 3.95968 4.18289 4.0467C4.18289 4.22792 4.32979 4.37483 4.51101 4.37483L6.34377 4.37424L6.34385 8.96858L6.34826 9.04511C6.38617 9.37149 6.66355 9.62483 7.0001 9.62483C7.36253 9.62483 7.65635 9.33102 7.65635 8.96858L7.65627 4.37424L9.48918 4.37483C9.57621 4.37483 9.65967 4.34026 9.7212 4.27872C9.84934 4.15058 9.84934 3.94283 9.7212 3.81468ZM12.869 7.61875C12.869 7.27693 12.5919 6.99983 12.2501 6.99983C11.8924 6.99983 11.5914 7.26785 11.5501 7.62317L11.5306 7.76392C11.1667 9.9373 9.27683 11.5936 7.0001 11.5936C4.75084 11.5936 2.87915 9.97704 2.48345 7.84238L2.47787 7.81098L2.45226 7.62633C2.41148 7.26938 2.10937 6.99983 1.7501 6.99983L1.69071 7.00269C1.35085 7.03549 1.10193 7.33758 1.13474 7.67744L1.15 7.81514L1.18603 8.04498C1.67947 10.8084 4.09481 12.9061 7.0001 12.9061C9.97945 12.9061 12.4436 10.7001 12.8481 7.83235L12.8661 7.67925L12.869 7.61875Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 453 B

View File

@@ -0,0 +1,3 @@
<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.346 0.361999H5.068V3.078H7.77V4.786H5.068V7.502H3.346V4.786H0.63V3.078H3.346V0.361999Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 214 B

View File

@@ -1,8 +1 @@
<svg width="34" height="14" xmlns="http://www.w3.org/2000/svg" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="34" height="14" viewBox="0 0 34 14"><path d="M14.5,12.5h-8a6,6,0,0,1-6-6h0a6,6,0,0,1,6-6h8" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M19.5.5h8a6,6,0,0,1,6,6h0a6,6,0,0,1-6,6h-8" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="7.5" y1="6.5" x2="26.5" y2="6.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<g>
<title>Layer 1</title>
<path id="svg_1" fill="#009688" d="m14.4493,12l-7.44846,0c-2.76142,0 -5,-2.23858 -5,-5c0,-2.76142 2.23858,-5 5,-5l7.44846,0l0,-2l-7.44846,0c-3.86599,0 -7,3.13401 -7,7c0,3.866 3.13401,7 7,7l7.44846,0l0,-2zm5.0253,0l0,2l7.4473,0c3.866,0 7,-3.134 7,-7c0,-3.86599 -3.134,-7 -7,-7l-7.4473,0l0,2l7.4473,0c2.7614,0 5,2.23858 5,5c0,2.76142 -2.2386,5 -5,5l-7.4473,0z" clip-rule="evenodd" fill-rule="evenodd"/>
<line id="svg_2" stroke-linecap="round" stroke-width="2" stroke="#009688" y2="7.125" x2="7.2832" y1="7.125" x1="28.5254"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 647 B

After

Width:  |  Height:  |  Size: 472 B

View File

@@ -1,4 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="0.5" y1="2.5" x2="10.5" y2="12.5" style="fill:none;stroke:#e9e9e9;stroke-linecap:round;stroke-linejoin:round"/><line x1="0.5" y1="12.5" x2="10.5" y2="2.5" style="fill:none;stroke:#e9e9e9;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="3.19971" y="11.7114" width="12.1774" height="1.4" rx="0.7" transform="rotate(-45 3.19971 11.7114)" fill="white"/>
<rect x="4.18848" y="3.09937" width="12.1802" height="1.4" rx="0.7" transform="rotate(45 4.18848 3.09937)" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 348 B

After

Width:  |  Height:  |  Size: 331 B

View File

@@ -1,4 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="0.5" y1="2.5" x2="10.5" y2="12.5" style="fill:none;stroke:#e9e9e9;stroke-linecap:round;stroke-linejoin:round"/><line x1="0.5" y1="12.5" x2="10.5" y2="2.5" style="fill:none;stroke:#e9e9e9;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="3.19971" y="11.7114" width="12.1774" height="1.4" rx="0.7" transform="rotate(-45 3.19971 11.7114)" fill="white" fill-opacity="0.64"/>
<rect x="4.18848" y="3.09912" width="12.1802" height="1.4" rx="0.7" transform="rotate(45 4.18848 3.09912)" fill="white" fill-opacity="0.64"/>
</svg>

Before

Width:  |  Height:  |  Size: 388 B

After

Width:  |  Height:  |  Size: 331 B

View File

@@ -1,3 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12.5,25A12.5,12.5,0,1,0,0,12.5,12.5,12.5,0,0,0,12.5,25Zm0-5A1.5,1.5,0,1,1,14,18.5,1.5,1.5,0,0,1,12.5,20ZM14,14.5a1.5,1.5,0,0,1-3,0v-8a1.5,1.5,0,0,1,3,0Z" style="fill:#d9d9d9"/><path d="M19.774,28a6.585,6.585,0,0,1,3.753,1.086,5.72,5.72,0,0,0,5.955.134c-.008-.127-.01-.254-.028-.38h0a4.84,4.84,0,0,0-3.771-3.958A5.8,5.8,0,0,0,22.7,22.51a.153.153,0,0,0-.188.223,3.165,3.165,0,0,1,.518,1.29,3.076,3.076,0,0,1,0,.944,5.022,5.022,0,0,0-2.934,2.3h0A4.611,4.611,0,0,0,19.774,28Z"/><path d="M26.361,28.441c.546.13,1.052.039,1.129-.2s-.3-.546-.851-.677-1.052-.039-1.129.2S25.814,28.31,26.361,28.441Z" style="fill:#d9d9d9;stroke:#d9d9d9;stroke-miterlimit:10"/><path d="M1.5,30.5l1.5-1a6.2,6.2,0,0,1,6.75,0h0a6.2,6.2,0,0,0,6.75,0h0a6.2,6.2,0,0,1,6.75,0h0a6.2,6.2,0,0,0,6.75,0l1.5-1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0002 0.833252C15.0628 0.833252 19.1668 4.93731 19.1668 9.99992C19.1668 15.0625 15.0628 19.1666 10.0002 19.1666C4.93755 19.1666 0.833496 15.0625 0.833496 9.99992C0.833496 4.93731 4.93755 0.833252 10.0002 0.833252ZM10.0002 12.7083C9.42487 12.7083 8.9585 13.1746 8.9585 13.7499C8.9585 14.3252 9.42487 14.7916 10.0002 14.7916C10.5755 14.7916 11.0418 14.3252 11.0418 13.7499C11.0418 13.1746 10.5755 12.7083 10.0002 12.7083ZM9.17244 5.73607C9.22057 5.32162 9.5728 4.99992 10.0002 4.99992C10.4275 4.99992 10.7798 5.32162 10.8279 5.73607L10.8335 5.83325V10.8333L10.8279 10.9304C10.7798 11.3449 10.4275 11.6666 10.0002 11.6666C9.5728 11.6666 9.22057 11.3449 9.17244 10.9304L9.16683 10.8333V5.83325L9.17244 5.73607Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 948 B

View File

@@ -1,11 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="6.5" cy="6.5" r="5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M3.5,6.5a3,3,0,0,1,3-3" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="12.5" y1="12.5" x2="10.5" y2="10.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
<g id="browse">
<path fill="#ED6B21" d="M8.49,2.43c-1.71-1.71-4.49-1.71-6.2,0s-1.71,4.49,0,6.2c1.59,1.59,4.1,1.7,5.82,0.34l1.48,1.48
c0,0-0.36,0.36,0,0.73s3.65,3.65,3.65,3.65s0.36,0.36,0.73,0c0.36-0.36,0.73-0.73,0.73-0.73s0.36-0.36,0-0.73s-3.65-3.65-3.65-3.65
c-0.36-0.36-0.73,0-0.73,0L8.83,8.25C10.19,6.52,10.08,4.02,8.49,2.43z M8.1,8.25c-1.5,1.5-3.93,1.5-5.43,0s-1.5-3.93,0-5.43
s3.93-1.5,5.43,0S9.6,6.75,8.1,8.25z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 777 B

After

Width:  |  Height:  |  Size: 431 B

View File

@@ -1,4 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16px" height="16px"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M6.5,14.5c-3,0-5-1-5-4,0-5,6-5,4-10,7,2,9,6,9,9,0,4-3,5-6,5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M6.5,12.5a2.151,2.151,0,0,1-2-2c0-2,1-2,2-3,0,1,0,2,1,2s3-2,1-5c3,2,3,3,3,5a2.652,2.652,0,0,1-3,3" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path fill="#808080" d="M 10.324265,12.637091 C 9.7126185,11.801826 9.4455652,11.319769 9.3860031,10.943437 9.3387131,10.644653 9.2775165,10.67725 9.032793,11.131535 8.8565876,11.45863 8.806364,11.904627 8.9008009,12.303679 8.330577,11.894019 7.6015175,10.031363 7.7096999,9.1284851 5.381808,10.598103 4.7271155,13.939753 5,16 2.9751051,14.608227 1.2851951,13.046842 1.3078808,10.57598 1.3305665,8.1051179 3.8432395,6.4490194 3.8697024,4.1713523 3.8727624,3.3745518 3.8421277,3.3793755 4.5118024,4.0701844 5.3014406,5.073513 5.8791344,5.964439 5.6521467,7.0731381 6.1486239,6.623741 6.3341015,5.940722 6.5401623,5.4070849 6.8689362,3.4222537 6.7021829,1.5642078 6,0 c 2.5998224,0.67409817 4.550997,3.5888298 4.623306,5.6887828 l 9.3e-4,0.4921817 C 11.260843,5.1624272 11.966175,4.3725405 13,4 12.774748,6.4272659 14.752236,8.539235 14.683585,10.819702 14.614934,13.100169 13.178608,15.41894 11,16 11.750123,14.792953 10.874074,13.393198 10.324265,12.637091 Z" />
<path fill="#009688" d="M 9.032793,11.131535 C 8.8565876,11.45863 8.806364,11.904627 8.9008009,12.303679 8.2684185,12.02479 7.7175594,10.368983 7.6751289,9.4545414 7.7066738,9.2878597 7.7222018,9.1411316 7.7097002,9.1284851 8.5239771,6.6708553 5.893441,7.0819045 6.5401623,5.4070849 6.8689362,3.4222537 6.7021829,1.5642078 6,0 c 2.5998224,0.67409817 4.550997,3.5888298 4.623306,5.6887828 l 9.3e-4,0.4921817 c -0.04706,1.5271028 -0.04706,2.5643146 -1.591443,4.9505705 z" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 421 B

View File

@@ -1,4 +1 @@
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="4" y="4" width="15" height="15" rx="7" style="fill:#009688"/><rect x="11" y="16" width="1" height="1" style="fill:#e6e6e6"/><path d="M8.5,9.5a3,3,0,0,1,6,0c0,3-3,2-3,4v1" style="fill:none;stroke:#e6e6e6;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect width="48" height="48" rx="24" fill="#D9D9D9"/>
<path d="M18.96 19.68C19.2933 18.7067 19.86 17.9533 20.66 17.42C21.4733 16.8733 22.4067 16.6 23.46 16.6C24.2467 16.6 24.94 16.7533 25.54 17.06C26.14 17.3533 26.6067 17.7667 26.94 18.3C27.2733 18.82 27.44 19.4067 27.44 20.06C27.44 20.7267 27.28 21.2867 26.96 21.74C26.6533 22.18 26.1867 22.6733 25.56 23.22C25.12 23.6333 24.7667 23.9867 24.5 24.28C24.2333 24.5733 24.0067 24.9267 23.82 25.34C23.6467 25.74 23.56 26.2067 23.56 26.74C23.56 27.1133 23.6067 27.4933 23.7 27.88H22.32C22.1467 27.28 22.06 26.7267 22.06 26.22C22.06 25.6733 22.1467 25.1933 22.32 24.78C22.5067 24.3533 22.7267 24 22.98 23.72C23.2333 23.4267 23.5733 23.08 24 22.68C24.52 22.2133 24.9067 21.8067 25.16 21.46C25.4133 21.1 25.54 20.68 25.54 20.2C25.54 19.6 25.3333 19.12 24.92 18.76C24.5067 18.4 23.9667 18.22 23.3 18.22C21.94 18.22 20.9533 18.9733 20.34 20.48L18.96 19.68ZM23.18 32.22C22.8733 32.22 22.6067 32.1067 22.38 31.88C22.1667 31.6533 22.06 31.3867 22.06 31.08C22.06 30.76 22.1667 30.4867 22.38 30.26C22.6067 30.0333 22.8733 29.92 23.18 29.92C23.5 29.92 23.7667 30.0333 23.98 30.26C24.2067 30.4867 24.32 30.76 24.32 31.08C24.32 31.3867 24.2067 31.6533 23.98 31.88C23.7667 32.1067 23.5 32.22 23.18 32.22Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -1,4 +1 @@
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="4" y="4" width="15" height="15" rx="7" style="fill:#009688"/><rect x="11" y="16" width="1" height="1" style="fill:#e6e6e6"/><path d="M8.5,9.5a3,3,0,0,1,6,0c0,3-3,2-3,4v1" style="fill:none;stroke:#e6e6e6;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect width="48" height="48" rx="24" fill="#D9D9D9"/>
<path d="M18.96 19.68C19.2933 18.7067 19.86 17.9533 20.66 17.42C21.4733 16.8733 22.4067 16.6 23.46 16.6C24.2467 16.6 24.94 16.7533 25.54 17.06C26.14 17.3533 26.6067 17.7667 26.94 18.3C27.2733 18.82 27.44 19.4067 27.44 20.06C27.44 20.7267 27.28 21.2867 26.96 21.74C26.6533 22.18 26.1867 22.6733 25.56 23.22C25.12 23.6333 24.7667 23.9867 24.5 24.28C24.2333 24.5733 24.0067 24.9267 23.82 25.34C23.6467 25.74 23.56 26.2067 23.56 26.74C23.56 27.1133 23.6067 27.4933 23.7 27.88H22.32C22.1467 27.28 22.06 26.7267 22.06 26.22C22.06 25.6733 22.1467 25.1933 22.32 24.78C22.5067 24.3533 22.7267 24 22.98 23.72C23.2333 23.4267 23.5733 23.08 24 22.68C24.52 22.2133 24.9067 21.8067 25.16 21.46C25.4133 21.1 25.54 20.68 25.54 20.2C25.54 19.6 25.3333 19.12 24.92 18.76C24.5067 18.4 23.9667 18.22 23.3 18.22C21.94 18.22 20.9533 18.9733 20.34 20.48L18.96 19.68ZM23.18 32.22C22.8733 32.22 22.6067 32.1067 22.38 31.88C22.1667 31.6533 22.06 31.3867 22.06 31.08C22.06 30.76 22.1667 30.4867 22.38 30.26C22.6067 30.0333 22.8733 29.92 23.18 29.92C23.5 29.92 23.7667 30.0333 23.98 30.26C24.2067 30.4867 24.32 30.76 24.32 31.08C24.32 31.3867 24.2067 31.6533 23.98 31.88C23.7667 32.1067 23.5 32.22 23.18 32.22Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -1,15 +1 @@
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M7.5,15.5h-3a1,1,0,0,1-1-1v-3" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><path d="M15.5,11.5v3a1,1,0,0,1-1,1h-3" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><path d="M11.5,3.5h3a1,1,0,0,1,1,1v3" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><path d="M3.5,7.5v-3a1,1,0,0,1,1-1h3" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="3.5" x2="9.5" y2="5.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="8.5" x2="9.5" y2="10.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="13.5" x2="9.5" y2="15.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="15.5" y1="9.5" x2="13.5" y2="9.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="5.5" y1="9.5" x2="3.5" y2="9.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/><line x1="10.5" y1="9.5" x2="8.5" y2="9.5" style="fill:none;stroke:#fff;stroke-linecap:square;stroke-linejoin:round"/></svg>
<g clip-path="url(#clip0_8074_35820)">
<path d="M2.1084 3.09195C2.1084 2.81581 2.33226 2.59195 2.6084 2.59195H11.3915C11.6677 2.59195 11.8915 2.81581 11.8915 3.09195V11.8751C11.8915 12.1512 11.6677 12.3751 11.3915 12.3751H2.6084C2.33226 12.3751 2.1084 12.1512 2.1084 11.8751V3.09195Z" fill="#505050"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.1084 3.59195V11.3751H10.8915V3.59195H3.1084ZM2.6084 2.59195C2.33226 2.59195 2.1084 2.81581 2.1084 3.09195V11.8751C2.1084 12.1512 2.33226 12.3751 2.6084 12.3751H11.3915C11.6677 12.3751 11.8915 12.1512 11.8915 11.8751V3.09195C11.8915 2.81581 11.6677 2.59195 11.3915 2.59195H2.6084Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 5.48537L6.6709 0.48352L7.6709 0.483521L7.6709 5.48537L6.6709 5.48537Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 14.4835L6.6709 9.48166L7.6709 9.48166L7.6709 14.4835L6.6709 14.4835Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.99815 6.93469L14 6.93469L14 7.93469L8.99815 7.93469L8.99815 6.93469Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.000104992 6.93469L5.00195 6.93469L5.00195 7.93469L0.000104904 7.93469L0.000104992 6.93469Z" fill="#F7F7F7"/>
</g>
<defs>
<clipPath id="clip0_8074_35820">
<rect width="14" height="14" fill="white" transform="translate(0 14.4835) rotate(-90)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,17 +1 @@
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M7.5,15.5h-3a1,1,0,0,1-1-1v-3" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><path d="M15.5,11.5v3a1,1,0,0,1-1,1h-3" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><path d="M11.5,3.5h3a1,1,0,0,1,1,1v3" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><path d="M3.5,7.5v-3a1,1,0,0,1,1-1h3" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="3.5" x2="9.5" y2="5.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="8.5" x2="9.5" y2="10.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="13.5" x2="9.5" y2="15.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="15.5" y1="9.5" x2="13.5" y2="9.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="5.5" y1="9.5" x2="3.5" y2="9.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/><line x1="10.5" y1="9.5" x2="8.5" y2="9.5" style="fill:none;stroke:#999;stroke-linecap:square;stroke-linejoin:round"/></svg>
<g opacity="0.5">
<g clip-path="url(#clip0_8074_35820)">
<path d="M2.1084 3.09195C2.1084 2.81581 2.33226 2.59195 2.6084 2.59195H11.3915C11.6677 2.59195 11.8915 2.81581 11.8915 3.09195V11.8751C11.8915 12.1512 11.6677 12.3751 11.3915 12.3751H2.6084C2.33226 12.3751 2.1084 12.1512 2.1084 11.8751V3.09195Z" fill="#505050"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.1084 3.59195V11.3751H10.8915V3.59195H3.1084ZM2.6084 2.59195C2.33226 2.59195 2.1084 2.81581 2.1084 3.09195V11.8751C2.1084 12.1512 2.33226 12.3751 2.6084 12.3751H11.3915C11.6677 12.3751 11.8915 12.1512 11.8915 11.8751V3.09195C11.8915 2.81581 11.6677 2.59195 11.3915 2.59195H2.6084Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 5.48537L6.6709 0.48352L7.6709 0.483521L7.6709 5.48537L6.6709 5.48537Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 14.4835L6.6709 9.48166L7.6709 9.48166L7.6709 14.4835L6.6709 14.4835Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.99815 6.93469L14 6.93469L14 7.93469L8.99815 7.93469L8.99815 6.93469Z" fill="#F7F7F7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.000104992 6.93469L5.00195 6.93469L5.00195 7.93469L0.000104904 7.93469L0.000104992 6.93469Z" fill="#F7F7F7"/>
</g>
<defs>
<clipPath id="clip0_8074_35820">
<rect width="14" height="14" fill="white" transform="translate(0 14.4835) rotate(-90)"/>
</clipPath>
</defs>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,4 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><line x1="17.5" y1="14.5" x2="15.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="12.5" y1="14.5" x2="1.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="12.5" y="11.5" width="3" height="6" rx="1" transform="translate(28 29) rotate(-180)" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="1.5" y1="4.5" x2="3.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="6.5" y1="4.5" x2="17.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="3.5" y="1.5" width="3" height="6" rx="1" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/></svg>
<path d="M14.3694 1.92413L18.9283 9.82031L14.3694 17.7165L5.25168 17.7165L0.692819 9.82031L5.25168 1.92413L14.3694 1.92413Z" fill="#009688" fill-opacity="0.15" stroke="#009688" stroke-width="1.2"/>
<circle cx="9.80791" cy="9.82119" r="2.92782" stroke="#009688" stroke-width="1.2"/>
</svg>

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 877 B

View File

@@ -1,4 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><line x1="17.5" y1="14.5" x2="15.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="12.5" y1="14.5" x2="1.5" y2="14.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="12.5" y="11.5" width="3" height="6" rx="1" transform="translate(28 29) rotate(-180)" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="1.5" y1="4.5" x2="3.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="6.5" y1="4.5" x2="17.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="3.5" y="1.5" width="3" height="6" rx="1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M14.2828 2.06436L18.7551 9.81055L14.2828 17.5567L5.33829 17.5567L0.866025 9.81055L5.33829 2.06436L14.2828 2.06436Z" fill="#009688" fill-opacity="0.15" stroke="#009688" stroke-width="1.5"/>
<circle cx="9.80791" cy="9.81143" r="2.77782" stroke="#009688" stroke-width="1.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 875 B

View File

@@ -1,76 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="38" height="22" viewBox="0 0 38 22"><rect x="7.5" y="7.5" width="11" height="11" rx="1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="18.5 12.5 22.5 9.5 22.5 16.5 18.5 13.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="26.5 8.5 30.5 11.5 30.5 4.5 26.5 7.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="9.5" y1="10.5" x2="12.5" y2="10.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><circle cx="11" cy="15" r="1.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M15.5,5.5v-2a1,1,0,0,1,1-1h9a1,1,0,0,1,1,1v9a1,1,0,0,1-1,1h-1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round;fill-rule:evenodd"/><line x1="8.5" y1="4.5" x2="8.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="12.5" y1="3.5" x2="8.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="2.5" x2="12.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="4.5" x2="12.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="29.5" y1="16.5" x2="29.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="25.5" y1="17.5" x2="29.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="26.5" y1="18.5" x2="25.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="26.5" y1="16.5" x2="25.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<svg
width="39"
height="22"
viewBox="0 0 39 22"
fill="none"
version="1.1"
id="svg5"
sodipodi:docname="camera_switch.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<clipPath
id="clip0_7112_29362">
<rect
id="svg_1"
fill="#ffffff"
height="30"
width="30"
x="0"
y="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="6.84375"
inkscape:cy="11.21875"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg5"
showguides="false" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 21.066182,15.123836 h 1.463398 1.463399 1.463398 1.463399 m 0,0 h 1.463398 c 1.167463,0 2.113821,-0.946358 2.113821,-2.113821 V 2.600884 c 0,-1.1674317 -0.946358,-2.11382107 -2.113821,-2.11382107 H 16.675987 c -1.167411,0 -2.1138,0.94637877 -2.1138,2.11381047 v 1.3011427 1.3011428 1.3011427 1.3011427 h 1.268271 V 6.5043016 5.2031589 3.9020161 2.6008734 c 0,-0.4669642 0.378586,-0.8455179 0.845529,-0.8455179 h 11.707187 c 0.467048,0 0.845528,0.3785537 0.845528,0.8455285 v 10.409131 c 0,0.467049 -0.37848,0.845529 -0.845528,0.845529 h -1.463398 m 0,0 H 25.456377 23.992979 22.52958 21.066182 m 0,0 v 1.268292"
fill="#b3b3b5"
id="path1"
style="fill:#262e30;fill-opacity:1;stroke:none;stroke-width:0;stroke-dasharray:none"
sodipodi:nodetypes="ccccccssssssccccccccsssssscccccccc" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 31.074174,7.804414 4.093731,3.449544 V 4.3548482 Z M 30.065035,6.9961839 c -0.501081,0.4222886 -0.501081,1.1942138 0,1.6164496 l 4.633179,3.9041215 c 0.687309,0.579187 1.737984,0.09058 1.737984,-0.80822 V 3.9003132 c 0,-0.8987967 -1.050675,-1.3873959 -1.737984,-0.80823 z"
fill="#b3b3b5"
id="path4"
style="fill:#262e30;fill-opacity:1;stroke-width:1.05691" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M 19.153511,8.3696736 H 7.4463245 c -0.4669431,0 -0.8455285,0.3785536 -0.8455285,0.8455179 V 19.624333 c 0,0.467049 0.3785854,0.845528 0.8455285,0.845528 H 19.153511 c 0.467048,0 0.845528,-0.378479 0.845528,-0.845528 V 9.215202 c 0,-0.4669748 -0.37848,-0.8455284 -0.845528,-0.8455284 z M 7.4463245,7.1013809 c -1.1674106,0 -2.1138,0.9463789 -2.1138,2.1138106 V 19.624333 c 0,1.167463 0.9463894,2.113821 2.1138,2.113821 H 19.153511 c 1.167463,0 2.113821,-0.946358 2.113821,-2.113821 V 9.215202 c 0,-1.1674317 -0.946358,-2.1138211 -2.113821,-2.1138211 z"
fill="#b3b3b5"
id="path1-5"
style="stroke:none;stroke-width:0;stroke-dasharray:none;fill:#262e30;fill-opacity:1" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 21.844511,14.418731 4.093731,3.449545 v -6.89911 z m -1.009139,-0.80823 c -0.501081,0.422289 -0.501081,1.194214 0,1.61645 l 4.633179,3.904122 c 0.687309,0.579187 1.737984,0.09058 1.737984,-0.80822 v -7.808222 c 0,-0.8987971 -1.050675,-1.3873956 -1.737984,-0.8082304 z"
fill="#b3b3b5"
id="path4-1"
style="stroke-width:1.05691;fill:#262e30;fill-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1,76 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="38" height="22" viewBox="0 0 38 22"><rect x="7.5" y="7.5" width="11" height="11" rx="1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="18.5 13.5 22.5 16.5 22.5 9.5 18.5 12.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="26.5 8.5 30.5 11.5 30.5 4.5 26.5 7.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="9.5" y1="10.5" x2="12.5" y2="10.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><circle cx="11" cy="15" r="1.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><path d="M15.5,5.5v-2a1,1,0,0,1,1-1h9a1,1,0,0,1,1,1v9a1,1,0,0,1-1,1h-1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round;fill-rule:evenodd"/><line x1="8.5" y1="4.5" x2="8.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="12.5" y1="3.5" x2="8.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="2.5" x2="12.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="4.5" x2="12.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="29.5" y1="16.5" x2="29.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="25.5" y1="17.5" x2="29.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="26.5" y1="18.5" x2="25.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="26.5" y1="16.5" x2="25.5" y2="17.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<svg
width="39"
height="22"
viewBox="0 0 39 22"
fill="none"
version="1.1"
id="svg5"
sodipodi:docname="camera_switch_dark.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5">
<clipPath
id="clip0_7112_29362">
<rect
id="svg_1"
fill="#ffffff"
height="30"
width="30"
x="0"
y="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="16"
inkscape:cx="6.84375"
inkscape:cy="16.21875"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg5"
showguides="false" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 21.066182,15.123836 h 1.463398 1.463399 1.463398 1.463399 m 0,0 h 1.463398 c 1.167463,0 2.113821,-0.946358 2.113821,-2.113821 V 2.600884 c 0,-1.1674317 -0.946358,-2.11382107 -2.113821,-2.11382107 H 16.675987 c -1.167411,0 -2.1138,0.94637877 -2.1138,2.11381047 v 1.3011427 1.3011428 1.3011427 1.3011427 h 1.268271 V 6.5043016 5.2031589 3.9020161 2.6008734 c 0,-0.4669642 0.378586,-0.8455179 0.845529,-0.8455179 h 11.707187 c 0.467048,0 0.845528,0.3785537 0.845528,0.8455285 v 10.409131 c 0,0.467049 -0.37848,0.845529 -0.845528,0.845529 h -1.463398 m 0,0 H 25.456377 23.992979 22.52958 21.066182 m 0,0 v 1.268292"
fill="#b3b3b5"
id="path1"
style="fill:#b3b3b5;fill-opacity:1;stroke:none;stroke-width:0;stroke-dasharray:none"
sodipodi:nodetypes="ccccccssssssccccccccsssssscccccccc" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 31.074174,7.804414 4.093731,3.449544 V 4.3548482 Z M 30.065035,6.9961839 c -0.501081,0.4222886 -0.501081,1.1942138 0,1.6164496 l 4.633179,3.9041215 c 0.687309,0.579187 1.737984,0.09058 1.737984,-0.80822 V 3.9003132 c 0,-0.8987967 -1.050675,-1.3873959 -1.737984,-0.80823 z"
fill="#b3b3b5"
id="path4"
style="fill:#b3b3b5;fill-opacity:1;stroke-width:1.05691" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M 19.153511,8.3696736 H 7.4463245 c -0.4669431,0 -0.8455285,0.3785536 -0.8455285,0.8455179 V 19.624333 c 0,0.467049 0.3785854,0.845528 0.8455285,0.845528 H 19.153511 c 0.467048,0 0.845528,-0.378479 0.845528,-0.845528 V 9.215202 c 0,-0.4669748 -0.37848,-0.8455284 -0.845528,-0.8455284 z M 7.4463245,7.1013809 c -1.1674106,0 -2.1138,0.9463789 -2.1138,2.1138106 V 19.624333 c 0,1.167463 0.9463894,2.113821 2.1138,2.113821 H 19.153511 c 1.167463,0 2.113821,-0.946358 2.113821,-2.113821 V 9.215202 c 0,-1.1674317 -0.946358,-2.1138211 -2.113821,-2.1138211 z"
fill="#b3b3b5"
id="path1-5"
style="stroke:none;stroke-width:0;stroke-dasharray:none;fill:#b3b3b5;fill-opacity:1" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 21.844511,14.418731 4.093731,3.449545 v -6.89911 z m -1.009139,-0.80823 c -0.501081,0.422289 -0.501081,1.194214 0,1.61645 l 4.633179,3.904122 c 0.687309,0.579187 1.737984,0.09058 1.737984,-0.80822 v -7.808222 c 0,-0.8987971 -1.050675,-1.3873956 -1.737984,-0.8082304 z"
fill="#b3b3b5"
id="path4-1"
style="stroke-width:1.05691;fill:#b3b3b5;fill-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#009688"/><line x1="3.5" y1="8.5" x2="13.5" y2="8.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#009688"/>
<path d="M4 9L14 9" stroke="white" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 228 B

After

Width:  |  Height:  |  Size: 278 B

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#b3b3b3;opacity:0.3"/><line x1="3.5" y1="8.5" x2="13.5" y2="8.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;opacity:0.5"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#CECECE"/>
<line x1="4.37881" y1="8.93516" x2="13.6213" y2="8.93515" stroke="white" stroke-width="1.2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 302 B

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#4db6ac"/><line x1="3.5" y1="8.5" x2="13.5" y2="8.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#4db6ac"/>
<path d="M4 9L14 9" stroke="white" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 232 B

After

Width:  |  Height:  |  Size: 278 B

View File

@@ -1,3 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1.5" y="1.5" width="14" height="14" rx="1" style="fill:none;stroke:#949494;stroke-miterlimit:10;opacity:0.3"/></svg>
<rect x="1.5" y="1.5" width="15" height="15" rx="0.5" stroke="#ACACAC"/>
</svg>

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 208 B

View File

@@ -1,3 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#b3b3b3;opacity:0.3"/></svg>
<rect x="1.5" y="1.5" width="15" height="15" rx="0.5" fill="#CECECE" stroke="#ACACAC"/>
</svg>

Before

Width:  |  Height:  |  Size: 191 B

After

Width:  |  Height:  |  Size: 173 B

View File

@@ -1,3 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1.5" y="1.5" width="14" height="14" rx="1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round;opacity:0.5"/></svg>
<rect x="1.5" y="1.5" width="15" height="15" rx="0.5" stroke="#009688"/>
</svg>

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 230 B

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#009688"/><polyline points="13.5 6.5 6.5 11.5 3.5 7.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#009688"/>
<path d="M4.35537 8.5374L8.30284 11.9361C8.71855 12.294 9.34501 12.2502 9.70687 11.838L14.8175 6.01521" stroke="white" stroke-width="1.2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 280 B

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#b3b3b3;opacity:0.3"/><polyline points="13.5 6.5 6.5 11.5 3.5 7.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;opacity:0.5"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#CECECE"/>
<path d="M4.35537 8.5374L8.30284 11.9361C8.71855 12.294 9.34501 12.2502 9.70687 11.838L14.8175 6.01521" stroke="white" stroke-width="1.2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 304 B

View File

@@ -1,4 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x="1" y="1" width="15" height="15" rx="1.5" style="fill:#4db6ac"/><polyline points="13.5 6.5 6.5 11.5 3.5 7.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<rect x="1" y="1" width="16" height="16" rx="1" fill="#4db6ac"/>
<path d="M4.35537 8.5374L8.30284 11.9361C8.71855 12.294 9.34501 12.2502 9.70687 11.838L14.8175 6.01521" stroke="white" stroke-width="1.2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 280 B

View File

@@ -1,4 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><polyline points="13.5 6.5 6.5 11.5 3.5 7.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M3 8.9375L6.45062 11.6772C6.67263 11.8535 6.99663 11.8101 7.16447 11.5817L12 5" stroke="white" stroke-linecap="round"/>
<path d="M3 8.9375L6.45062 11.6772C6.67263 11.8535 6.99663 11.8101 7.16447 11.5817L12 5" stroke="white" stroke-opacity="0.2" stroke-linecap="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 382 B

After

Width:  |  Height:  |  Size: 208 B

View File

@@ -1 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1644663190618" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3587" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M511.996587 1020.586667C231.103147 1020.586667 3.413333 792.84224 3.413333 512 3.413333 231.154347 231.103147 3.413333 511.996587 3.413333 792.89344 3.413333 1020.586667 231.10656 1020.586667 512s-227.7376 508.586667-508.59008 508.586667z m0-940.885334C273.24416 79.691093 79.68768 273.24416 79.68768 512c0 238.752427 193.55648 432.295253 432.308907 432.295253 238.75584 0 432.295253-193.55648 432.295253-432.295253 0-238.742187-193.55648-432.308907-432.295253-432.308907v0.01024z" p-id="3588"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="7.5" style="fill:none;stroke:#54545a;stroke-linecap:round;stroke-linejoin:round"/></svg>

Before

Width:  |  Height:  |  Size: 884 B

After

Width:  |  Height:  |  Size: 196 B

View File

@@ -1,3 +1 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="7.5" style="fill:none;stroke:#cfcfcf;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 17.3707C14.0707 17.3707 17.3707 14.0707 17.3707 10C17.3707 5.92935 14.0707 2.62939 10 2.62939C5.92935 2.62939 2.62939 5.92935 2.62939 10C2.62939 14.0707 5.92935 17.3707 10 17.3707ZM10 18.3707C14.623 18.3707 18.3707 14.623 18.3707 10C18.3707 5.37706 14.623 1.62939 10 1.62939C5.37706 1.62939 1.62939 5.37706 1.62939 10C1.62939 14.623 5.37706 18.3707 10 18.3707Z" fill="#B6B6B6"/>
</svg>

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 196 B

View File

@@ -1,12 +1 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="14.5" y1="11.5" x2="12.5" y2="11.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="9.5" y1="11.5" x2="0.5" y2="11.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="9.5" y="8.5" width="3" height="6" rx="1" transform="translate(22 23) rotate(-180)" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="0.5" y1="3.5" x2="2.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><line x1="5.5" y1="3.5" x2="14.5" y2="3.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/><rect x="2.5" y="0.5" width="3" height="6" rx="1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<g clip-path="url(#clip0_1159_10366)">
<path d="M11.547 7C11.547 6.77376 11.5301 6.55123 11.4969 6.3345C11.4773 6.20605 11.5349 6.07647 11.6478 6.01213L12.7362 5.392C12.8814 5.30928 12.931 5.12389 12.8465 4.97971L11.6951 3.01396C11.6121 2.87226 11.4306 2.82363 11.2879 2.90486L10.1866 3.5316C10.0761 3.59454 9.93839 3.58009 9.83849 3.50128C9.48476 3.22225 9.08805 2.99452 8.65871 2.82827C8.53838 2.78168 8.45548 2.66801 8.45548 2.53897V1.3C8.45548 1.13431 8.32117 1 8.15548 1H5.84452C5.67883 1 5.54452 1.13431 5.54452 1.3V2.53858C5.54452 2.66781 5.46138 2.78159 5.34084 2.82817C4.91254 2.99369 4.51525 3.22217 4.1615 3.50127C4.06161 3.58009 3.92394 3.59454 3.81335 3.5316L2.71215 2.90486C2.56942 2.82363 2.3879 2.87226 2.3049 3.01396L1.15346 4.97971C1.069 5.12389 1.11862 5.30928 1.26381 5.392L2.35358 6.0129C2.46584 6.07686 2.52355 6.20538 2.50411 6.33312C2.47097 6.55074 2.45297 6.77304 2.45297 7C2.45297 7.22624 2.46991 7.44877 2.50308 7.6655C2.52274 7.79396 2.46515 7.92353 2.35223 7.98787L1.26381 8.608C1.11862 8.69072 1.069 8.87611 1.15346 9.02029L2.3049 10.986C2.3879 11.1277 2.56942 11.1764 2.71215 11.0951L3.81335 10.4684C3.92394 10.4055 4.06161 10.4199 4.16151 10.4987C4.51524 10.7777 4.91194 11.0055 5.34129 11.1717C5.46162 11.2183 5.54452 11.332 5.54452 11.461V12.7C5.54452 12.8657 5.67883 13 5.84452 13H8.15548C8.32117 13 8.45548 12.8657 8.45548 12.7V11.4614C8.45548 11.3322 8.53862 11.2184 8.65916 11.1718C9.08746 11.0063 9.48475 10.7778 9.83849 10.4987C9.93839 10.4199 10.0761 10.4055 10.1866 10.4684L11.2879 11.0951C11.4306 11.1764 11.6121 11.1277 11.6951 10.986L12.8465 9.02029C12.931 8.87611 12.8814 8.69072 12.7362 8.608L11.6478 7.98787C11.5349 7.92353 11.4773 7.79396 11.4969 7.6655C11.5301 7.44877 11.547 7.22624 11.547 7Z" stroke="#262E30" stroke-width="0.5" stroke-miterlimit="10"/>
<path d="M5.89738 9.46237L5.89736 9.4624L5.90053 9.46423C6.26562 9.67608 6.67351 9.78 7.118 9.78C7.48526 9.78 7.82382 9.71208 8.12898 9.57089C8.3862 9.45188 8.59949 9.29976 8.75615 9.1083C8.83775 9.00858 8.868 8.88955 8.868 8.78357V7.466C8.868 7.16224 8.62176 6.916 8.318 6.916H7.394C7.12338 6.916 6.904 7.13538 6.904 7.406C6.904 7.67662 7.12338 7.896 7.394 7.896H7.784C7.81161 7.896 7.834 7.91839 7.834 7.946V8.58254C7.834 8.58806 7.83331 8.59207 7.83269 8.59454C7.68373 8.71446 7.46664 8.788 7.154 8.788C6.87859 8.788 6.64715 8.72403 6.45122 8.60321C6.25385 8.4815 6.09908 8.31031 5.98659 8.08219C5.87381 7.84951 5.814 7.57608 5.814 7.256C5.814 6.93808 5.87051 6.6698 5.97594 6.44501C6.08631 6.21422 6.23336 6.04337 6.41497 5.92314C6.59921 5.80378 6.81094 5.742 7.058 5.742C7.27655 5.742 7.45575 5.78945 7.60403 5.87594L7.60402 5.87597L7.60743 5.87789C7.69471 5.92699 7.76652 5.98341 7.82503 6.04631C7.9761 6.20871 8.2601 6.3242 8.51769 6.17394C8.73178 6.04905 8.85894 5.74575 8.68079 5.4935C8.53735 5.2904 8.34863 5.12721 8.12019 5.00278C7.81096 4.83218 7.46268 4.75 7.082 4.75C6.65073 4.75 6.25211 4.85728 5.89178 5.07339C5.53443 5.28608 5.25359 5.58664 5.04955 5.96809L5.04955 5.96809L5.04905 5.96903C4.84739 6.34995 4.75 6.78113 4.75 7.256C4.75 7.73459 4.84726 8.17087 5.04795 8.55886L5.04792 8.55887L5.04955 8.56191C5.25387 8.94389 5.53681 9.24604 5.89738 9.46237Z" fill="#ACACAC" stroke="#262E30" stroke-width="0.5"/>
</g>
<defs>
<clipPath id="clip0_1159_10366">
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 872 B

View File

@@ -1,16 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><line x1="6.5" y1="1.5" x2="2.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="6.5" y1="9.5" x2="2.5" y2="5.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="10.5" y1="15.5" x2="14.5" y2="11.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="10.5" y1="7.5" x2="14.5" y2="11.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
<g id="cross">
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="12" y1="1" x2="15" y2="4"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="12" y1="7" x2="15" y2="4"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="8" y1="1" x2="11" y2="4"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="8" y1="7" x2="11" y2="4"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="4" y1="9" x2="1" y2="12"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="4" y1="15" x2="1" y2="12"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="8" y1="9" x2="5" y2="12"/></g>
<g><line fill="none" stroke="#009688" stroke-width="1" stroke-linecap="round" stroke-miterlimit="10" x1="8" y1="15" x2="5" y2="12"/></g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 572 B

View File

@@ -1,6 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M7.5,12.5h-3a2,2,0,0,1-2-2v-1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><path d="M7.5,2.5h3a2,2,0,0,1,2,2v1" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><polyline points="9.5 4.5 7.5 2.5 9.5 0.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><polyline points="5.5 14.5 7.5 12.5 5.5 10.5" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><rect y="1" width="1" height="6" style="fill:#949494"/><rect x="10" y="8" width="1" height="7" style="fill:#949494"/><rect x="14" y="9" width="1" height="2" style="fill:#949494"/><rect x="14" y="12" width="1" height="2" style="fill:#949494"/><rect x="1" y="4" width="3" height="1" style="fill:#949494"/><rect x="11" y="11" width="3" height="1" style="fill:#949494"/><rect x="11" y="14" width="3" height="1" style="fill:#949494"/><rect x="11" y="8" width="3" height="1" style="fill:#949494"/><rect x="1" width="3" height="1" style="fill:#949494"/><rect x="4" y="1" width="1" height="6" style="fill:#949494"/></svg>
<path d="M7.87009 2.23001C6.33009 0.690012 3.83009 0.690012 2.28009 2.23001C0.730091 3.77001 0.740091 6.27001 2.28009 7.82001C3.71009 9.25001 5.97009 9.35001 7.52009 8.13001L8.85009 9.46001C8.85009 9.46001 8.52009 9.79001 8.85009 10.12C9.18009 10.45 12.1401 13.41 12.1401 13.41C12.1401 13.41 12.4701 13.74 12.8001 13.41C13.1301 13.08 13.4601 12.75 13.4601 12.75C13.4601 12.75 13.7901 12.42 13.4601 12.09C13.1301 11.76 10.1701 8.80001 10.1701 8.80001C9.84009 8.47001 9.51009 8.80001 9.51009 8.80001L8.18009 7.47001C9.41009 5.92001 9.30009 3.67001 7.87009 2.23001ZM7.52009 7.47001C6.17009 8.82001 3.98009 8.82001 2.63009 7.47001C1.28009 6.12001 1.28009 3.93001 2.63009 2.58001C3.98009 1.23001 6.17009 1.23001 7.52009 2.58001C8.87009 3.93001 8.87009 6.12001 7.52009 7.47001Z" fill="#4DB6AC"/>
<path d="M7.49016 4.34999C7.43016 4.15999 7.36016 3.96999 7.26016 3.79999L7.44016 3.25999L6.85016 2.66999L6.31016 2.84999C6.14016 2.74999 5.95016 2.67999 5.75016 2.61999L5.50016 2.10999H4.66016L4.41016 2.61999C4.21016 2.66999 4.03016 2.74999 3.85016 2.84999L3.31016 2.66999L2.72016 3.25999L2.90016 3.79999C2.80016 3.96999 2.72016 4.15999 2.67016 4.34999L2.16016 4.60999V5.43999L2.67016 5.69999C2.72016 5.89999 2.80016 6.07999 2.90016 6.25999L2.72016 6.79999L3.31016 7.38999L3.85016 7.20999C4.02016 7.30999 4.21016 7.37999 4.41016 7.43999L4.67016 7.94999H5.50016L5.76016 7.43999C5.96016 7.38999 6.14016 7.30999 6.32016 7.20999L6.86016 7.38999L7.44016 6.79999L7.26016 6.25999C7.36016 6.07999 7.43016 5.89999 7.49016 5.69999L8.00016 5.44999V4.60999L7.49016 4.34999ZM5.08016 6.32999C4.36016 6.32999 3.78016 5.74999 3.78016 5.02999C3.78016 4.30999 4.36016 3.72999 5.08016 3.72999C5.80016 3.72999 6.38016 4.30999 6.38016 5.02999C6.38016 5.74999 5.80016 6.32999 5.08016 6.32999Z" fill="#4DB6AC"/>
<path d="M14.56 4.45001C14.51 4.28001 14.45 4.12001 14.36 3.97001L14.51 3.51001L14 3.00001L13.54 3.15001C13.39 3.07001 13.23 3.00001 13.06 2.95001L12.84 2.51001H12.13L11.91 2.95001C11.74 3.00001 11.58 3.06001 11.43 3.15001L10.97 3.00001L10.46 3.51001L10.61 3.97001C10.53 4.12001 10.46 4.28001 10.41 4.45001L10 4.67001V5.38001L10.44 5.60001C10.49 5.77001 10.55 5.93001 10.64 6.08001L10.49 6.54001L11 7.05001L11.46 6.90001C11.61 6.98001 11.77 7.05001 11.94 7.10001L12.16 7.54001H12.87L13.09 7.10001C13.26 7.05001 13.42 6.99001 13.57 6.90001L14.03 7.05001L14.54 6.54001L14.39 6.08001C14.47 5.93001 14.54 5.77001 14.59 5.60001L15 5.39001V4.67001L14.56 4.45001ZM12.5 6.14001C11.88 6.14001 11.39 5.64001 11.39 5.03001C11.39 4.41001 11.89 3.92001 12.5 3.92001C13.11 3.92001 13.61 4.42001 13.61 5.03001C13.61 5.64001 13.11 6.14001 12.5 6.14001Z" fill="#4DB6AC"/>
<path d="M7.14006 11.91C7.09006 11.74 7.03006 11.58 6.94006 11.43L7.09006 10.97L6.58006 10.46L6.12006 10.61C5.97006 10.53 5.81006 10.46 5.64006 10.41L5.44006 9.98999H4.72006L4.50006 10.43C4.33006 10.48 4.17006 10.54 4.02006 10.63L3.56006 10.48L3.05006 10.99L3.20006 11.45C3.12006 11.6 3.05006 11.76 3.00006 11.93L2.56006 12.15V12.86L3.00006 13.08C3.05006 13.25 3.11006 13.41 3.20006 13.56L3.06006 14L3.57006 14.51L4.03006 14.36C4.18006 14.44 4.34006 14.51 4.51006 14.56L4.73006 15H5.44006L5.66006 14.56C5.83006 14.51 5.99006 14.45 6.14006 14.36L6.60006 14.51L7.10006 14L6.95006 13.54C7.03006 13.39 7.10006 13.23 7.15006 13.06L7.59006 12.84V12.13L7.14006 11.91ZM5.08006 13.6C4.46006 13.6 3.97006 13.1 3.97006 12.49C3.97006 11.87 4.47006 11.38 5.08006 11.38C5.69006 11.38 6.19006 11.88 6.19006 12.49C6.19006 13.11 5.69006 13.6 5.08006 13.6Z" fill="#4DB6AC"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -1,8 +1 @@
<svg width="25" height="25" xmlns="http://www.w3.org/2000/svg" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0Zm6.356,10.192L10.45,16.661a1.46,1.46,0,0,1-.264.148,1.414,1.414,0,0,1-.156.088A1.494,1.494,0,0,1,9.5,17h0a1.481,1.481,0,0,1-.517-.1c-.022-.008-.044-.013-.066-.022a1.492,1.492,0,0,1-.436-.289c-.012-.012-.028-.015-.041-.027l-3-3a1.5,1.5,0,0,1,2.122-2.122l2.04,2.04L16.457,7.87a1.5,1.5,0,0,1,1.9,2.322Z" style="fill:#009688"/></svg>
<g>
<title>Layer 1</title>
<circle id="svg_1" fill="#009688" r="12.5" cy="12.5" cx="12.5"/>
<path id="svg_2" stroke-linecap="round" stroke-width="2" stroke="white" d="m6,12.0189l3.57518,3.57c0.78082,0.7796 2.04552,0.7796 2.82642,0l6.5984,-6.5889"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 462 B

View File

@@ -1,3 +1 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><polyline points="6.5 2.5 11.5 7.5 6.5 12.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="7.5" x2="0.5" y2="7.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M15.0882 3.21873C15.3736 3.51248 15.3736 3.98748 15.0882 4.2781L7.07395 12.5312C6.78859 12.825 6.32717 12.825 6.04484 12.5312L1.91324 8.28123C1.62788 7.98748 1.62788 7.51248 1.91324 7.22185C2.19859 6.93123 2.66002 6.9281 2.94234 7.22185L6.55484 10.9406L14.0561 3.21873C14.3415 2.92498 14.8029 2.92498 15.0852 3.21873H15.0882Z" fill="#009688"/>
</svg>

Before

Width:  |  Height:  |  Size: 456 B

After

Width:  |  Height:  |  Size: 331 B

View File

@@ -1,3 +1 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><polyline points="6.5 2.5 11.5 7.5 6.5 12.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><line x1="11.5" y1="7.5" x2="0.5" y2="7.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
<path d="M15.0882 3.21873C15.3736 3.51248 15.3736 3.98748 15.0882 4.2781L7.07395 12.5312C6.78859 12.825 6.32717 12.825 6.04484 12.5312L1.91324 8.28123C1.62788 7.98748 1.62788 7.51248 1.91324 7.22185C2.19859 6.93123 2.66002 6.9281 2.94234 7.22185L6.55484 10.9406L14.0561 3.21873C14.3415 2.92498 14.8029 2.92498 15.0852 3.21873H15.0882Z" fill="#009688"/>
</svg>

Before

Width:  |  Height:  |  Size: 456 B

After

Width:  |  Height:  |  Size: 331 B

View File

@@ -1,37 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="3.5" y1="8.5" x2="9.5" y2="8.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="10.5" x2="9.5" y2="10.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="12.5" x2="9.5" y2="12.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><rect x="1.5" y="4.5" width="10" height="10" rx="1" style="fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round"/><path d="M4.5,2.5a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1" style="fill:none;stroke:#545454;stroke-linecap:square;stroke-linejoin:round"/><rect x="4.5" y="4.5" width="4" height="2" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
<g id="copy">
<g>
<path fill="#009688" d="M115.76,51.2l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
c0,4.2,3.42,7.62,7.62,7.62h66.04c4.2,0,7.62-3.42,7.62-7.62v-50.8C120.09,58.17,118.23,53.67,115.76,51.2z M111.42,54.04h-6.57
v-6.57L111.42,54.04z M115.01,112.47c0,1.4-1.14,2.54-2.54,2.54H46.43c-1.4,0-2.54-1.14-2.54-2.54V46.42
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46v12.24c0,1.4,1.14,2.54,2.54,2.54h12.24c0.28,0.91,0.46,1.8,0.46,2.54
V112.47z"/>
<path fill="#009688" d="M53.97,59.13h35.72c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H53.97c-1.4,0-2.54,1.14-2.54,2.54
S52.56,59.13,53.97,59.13z"/>
<path fill="#009688" d="M104.93,69.29H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,69.29,104.93,69.29z"/>
<path fill="#009688" d="M104.93,84.53H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,84.53,104.93,84.53z"/>
<path fill="#009688" d="M104.93,99.77H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,99.77,104.93,99.77z"/>
</g>
<g>
<path fill="#262E30" d="M85.27,20.71l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
c0,4.2,3.42,7.62,7.62,7.62h17.78c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H15.94c-1.4,0-2.54-1.14-2.54-2.54V15.94
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46V26.1c0,1.4,1.14,2.54,2.54,2.54h12.45c0.16,0.49,0.25,0.93,0.25,1.27
v3.81c0,1.4,1.14,2.54,2.54,2.54c1.4,0,2.54-1.14,2.54-2.54v-3.81C89.61,27.14,87.75,23.19,85.27,20.71z M74.37,16.99l6.57,6.57
h-6.57V16.99z"/>
<path fill="#262E30" d="M59.21,23.56H23.48c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h35.72c1.4,0,2.54-1.14,2.54-2.54
S60.61,23.56,59.21,23.56z"/>
<path fill="#262E30" d="M28.73,38.8h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,38.8,28.73,38.8z"/>
<path fill="#262E30" d="M28.73,54.04h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,54.04,28.73,54.04z"/>
<path fill="#262E30" d="M28.73,69.29h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,69.29,28.73,69.29z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 845 B

View File

@@ -1,37 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="3.5" y1="8.5" x2="9.5" y2="8.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="10.5" x2="9.5" y2="10.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><line x1="3.5" y1="12.5" x2="9.5" y2="12.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><rect x="1.5" y="4.5" width="10" height="10" rx="1" style="fill:none;stroke:#b3b3b3;stroke-linecap:square;stroke-linejoin:round"/><path d="M4.5,2.5a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1" style="fill:none;stroke:#b3b3b3;stroke-linecap:square;stroke-linejoin:round"/><rect x="4.5" y="4.5" width="4" height="2" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
<g id="copy">
<g>
<path fill="#009688" d="M115.76,51.2l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
c0,4.2,3.42,7.62,7.62,7.62h66.04c4.2,0,7.62-3.42,7.62-7.62v-50.8C120.09,58.17,118.23,53.67,115.76,51.2z M111.42,54.04h-6.57
v-6.57L111.42,54.04z M115.01,112.47c0,1.4-1.14,2.54-2.54,2.54H46.43c-1.4,0-2.54-1.14-2.54-2.54V46.42
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46v12.24c0,1.4,1.14,2.54,2.54,2.54h12.24c0.28,0.91,0.46,1.8,0.46,2.54
V112.47z"/>
<path fill="#009688" d="M53.97,59.13h35.72c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H53.97c-1.4,0-2.54,1.14-2.54,2.54
S52.56,59.13,53.97,59.13z"/>
<path fill="#009688" d="M104.93,69.29H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,69.29,104.93,69.29z"/>
<path fill="#009688" d="M104.93,84.53H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,84.53,104.93,84.53z"/>
<path fill="#009688" d="M104.93,99.77H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
S106.33,99.77,104.93,99.77z"/>
</g>
<g>
<path fill="#B6B6B6" d="M85.27,20.71l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
c0,4.2,3.42,7.62,7.62,7.62h17.78c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H15.94c-1.4,0-2.54-1.14-2.54-2.54V15.94
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46V26.1c0,1.4,1.14,2.54,2.54,2.54h12.45c0.16,0.49,0.25,0.93,0.25,1.27
v3.81c0,1.4,1.14,2.54,2.54,2.54c1.4,0,2.54-1.14,2.54-2.54v-3.81C89.61,27.14,87.75,23.19,85.27,20.71z M74.37,16.99l6.57,6.57
h-6.57V16.99z"/>
<path fill="#B6B6B6" d="M59.21,23.56H23.48c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h35.72c1.4,0,2.54-1.14,2.54-2.54
S60.61,23.56,59.21,23.56z"/>
<path fill="#B6B6B6" d="M28.73,38.8h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,38.8,28.73,38.8z"/>
<path fill="#B6B6B6" d="M28.73,54.04h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,54.04,28.73,54.04z"/>
<path fill="#B6B6B6" d="M28.73,69.29h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
S30.13,69.29,28.73,69.29z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 846 B

View File

@@ -1,10 +1 @@
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0Zm6.356,10.192L10.45,16.661a1.46,1.46,0,0,1-.264.148,1.414,1.414,0,0,1-.156.088A1.494,1.494,0,0,1,9.5,17h0a1.481,1.481,0,0,1-.517-.1c-.022-.008-.044-.013-.066-.022a1.492,1.492,0,0,1-.436-.289c-.012-.012-.028-.015-.041-.027l-3-3a1.5,1.5,0,0,1,2.122-2.122l2.04,2.04L16.457,7.87a1.5,1.5,0,0,1,1.9,2.322Z" style="fill:#009688"/></svg>
<g clip-path="url(#clip0_13578_18912)">
<path d="M12 1.86133C14.7848 1.86133 17.4555 2.96757 19.4246 4.93671C21.3938 6.90584 22.5 9.57656 22.5 12.3613C22.5 15.1461 21.3938 17.8168 19.4246 19.7859C17.4555 21.7551 14.7848 22.8613 12 22.8613C9.21523 22.8613 6.54451 21.7551 4.57538 19.7859C2.60625 17.8168 1.5 15.1461 1.5 12.3613C1.5 9.57656 2.60625 6.90584 4.57538 4.93671C6.54451 2.96757 9.21523 1.86133 12 1.86133ZM12 24.3613C15.1826 24.3613 18.2348 23.097 20.4853 20.8466C22.7357 18.5962 24 15.5439 24 12.3613C24 9.17873 22.7357 6.12648 20.4853 3.87605C18.2348 1.62561 15.1826 0.361328 12 0.361328C8.8174 0.361328 5.76516 1.62561 3.51472 3.87605C1.26428 6.12648 0 9.17873 0 12.3613C0 15.5439 1.26428 18.5962 3.51472 20.8466C5.76516 23.097 8.8174 24.3613 12 24.3613ZM17.0297 9.89102C17.3203 9.60039 17.3203 9.12227 17.0297 8.83164C16.7391 8.54102 16.2609 8.54102 15.9703 8.83164L10.5 14.302L8.02969 11.8316C7.73906 11.541 7.26094 11.541 6.97031 11.8316C6.67969 12.1223 6.67969 12.6004 6.97031 12.891L9.97031 15.891C10.2609 16.1816 10.7391 16.1816 11.0297 15.891L17.0297 9.89102Z" fill="#009688"/>
</g>
<defs>
<clipPath id="clip0_13578_18912">
<rect width="24" height="24" fill="white" transform="translate(0 0.361328)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 462 B

View File

@@ -1,8 +1 @@
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M.5,13.5V1.5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v12a1,1,0,0,1-1,1H1.5A1,1,0,0,1,.5,13.5Zm3-6h8" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round;opacity:0.6000000000000001"/></svg>
<defs>
<style>.cls-1,.cls-2,.cls-3{fill:none;}.cls-2,.cls-3{stroke:#2b3436;stroke-linecap:round;}</style>
</defs>
<title>Slice 41</title>
<rect fill="none" x="-202.7" y="-112" width="1440" height="909"/>
<path fill="none" stroke="#262E30" stroke-linecap="round" d="M3.62,3.25l9,9.29"/>
<line fill="none" stroke="#262E30" stroke-linecap="round" x1="12.37" y1="3.47" x2="3.35" y2="12.75"/></svg>

Before

Width:  |  Height:  |  Size: 521 B

After

Width:  |  Height:  |  Size: 294 B

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