diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2011-07-13 22:21:37 +0000 |
|---|---|---|
| committer | Krzysztof KosiΕ„ski <tweenk.pl@gmail.com> | 2011-07-13 22:21:37 +0000 |
| commit | 0d6be77f2af241e47d0df3f19619db85ca8127e7 (patch) | |
| tree | 510d535eb41530772c79218ece39023d85d42c93 | |
| parent | Fix crashes during offscreen rendering, part 1 (diff) | |
| parent | Fix crashes in print preview (diff) | |
| download | inkscape-0d6be77f2af241e47d0df3f19619db85ca8127e7.tar.gz inkscape-0d6be77f2af241e47d0df3f19619db85ca8127e7.zip | |
Merge from trunk to pull in fix for LP #806105
(bzr r10347.1.13)
98 files changed, 13167 insertions, 8113 deletions
diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake index 96ff53ff9..40c759741 100644 --- a/CMakeScripts/DefineDependsandFlags.cmake +++ b/CMakeScripts/DefineDependsandFlags.cmake @@ -40,13 +40,24 @@ list(APPEND INKSCAPE_INCS_SYS ${POPT_INCLUDE_DIR}) list(APPEND INKSCAPE_LIBS ${POPT_LIBRARIES}) add_definitions(${POPT_DEFINITIONS}) +if(WITH_DBUS) + find_package(DBus REQUIRED) + if(DBUS_FOUND) + list(APPEND INKSCAPE_INCS_SYS ${DBUS_INCLUDE_DIR}) + list(APPEND INKSCAPE_INCS_SYS ${DBUS_ARCH_INCLUDE_DIR}) + list(APPEND INKSCAPE_LIBS ${DBUS_LIBRARIES}) + else() + set(WITH_DBUS OFF) + endif() +endif() + # ---------------------------------------------------------------------------- # CMake's builtin # ---------------------------------------------------------------------------- # Include dependencies: # use patched version until GTK2_CAIROMMCONFIG_INCLUDE_DIR is added -find_package(GTK2_patched COMPONENTS gtk gtkmm REQUIRED) +find_package(GTK2 COMPONENTS gtk gtkmm REQUIRED) list(APPEND INKSCAPE_INCS_SYS ${GTK2_GDK_INCLUDE_DIR} ${GTK2_GDKMM_INCLUDE_DIR} diff --git a/CMakeScripts/Modules/FindDBus.cmake b/CMakeScripts/Modules/FindDBus.cmake new file mode 100644 index 000000000..f227cc297 --- /dev/null +++ b/CMakeScripts/Modules/FindDBus.cmake @@ -0,0 +1,72 @@ +# - Try to find the low-level D-Bus library +# Once done this will define +# +# DBUS_FOUND - system has D-Bus +# DBUS_INCLUDE_DIR - the D-Bus include directory +# DBUS_ARCH_INCLUDE_DIR - the D-Bus architecture-specific include directory +# DBUS_LIBRARIES - the libraries needed to use D-Bus + +# Copyright (c) 2008, Kevin Kofler, <kevin.kofler@chello.at> +# modeled after FindLibArt.cmake: +# Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org> +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) + + # in cache already + SET(DBUS_FOUND TRUE) + +else (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) + + IF (NOT WIN32) + FIND_PACKAGE(PkgConfig) + IF (PKG_CONFIG_FOUND) + # use pkg-config to get the directories and then use these values + # in the FIND_PATH() and FIND_LIBRARY() calls + pkg_check_modules(_DBUS_PC QUIET dbus-1) + ENDIF (PKG_CONFIG_FOUND) + ENDIF (NOT WIN32) + + FIND_PATH(DBUS_INCLUDE_DIR dbus/dbus.h + ${_DBUS_PC_INCLUDE_DIRS} + /usr/include + /usr/include/dbus-1.0 + /usr/local/include + ) + + FIND_PATH(DBUS_ARCH_INCLUDE_DIR dbus/dbus-arch-deps.h + ${_DBUS_PC_INCLUDE_DIRS} + /usr/lib${LIB_SUFFIX}/include + /usr/lib${LIB_SUFFIX}/dbus-1.0/include + /usr/lib64/include + /usr/lib64/dbus-1.0/include + /usr/lib/include + /usr/lib/dbus-1.0/include + ) + + FIND_LIBRARY(DBUS_LIBRARIES NAMES dbus-1 dbus + PATHS + ${_DBUS_PC_LIBDIR} + ) + + + if (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) + set(DBUS_FOUND TRUE) + endif (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) + + + if (DBUS_FOUND) + if (NOT DBus_FIND_QUIETLY) + message(STATUS "Found D-Bus: ${DBUS_LIBRARIES}") + endif (NOT DBus_FIND_QUIETLY) + else (DBUS_FOUND) + if (DBus_FIND_REQUIRED) + message(FATAL_ERROR "Could NOT find D-Bus") + endif (DBus_FIND_REQUIRED) + endif (DBUS_FOUND) + + MARK_AS_ADVANCED(DBUS_INCLUDE_DIR DBUS_ARCH_INCLUDE_DIR DBUS_LIBRARIES) + +endif (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) diff --git a/CMakeScripts/Modules/FindGTK2_patched.cmake b/CMakeScripts/Modules/FindGTK2.cmake index 91249b787..91249b787 100644 --- a/CMakeScripts/Modules/FindGTK2_patched.cmake +++ b/CMakeScripts/Modules/FindGTK2.cmake diff --git a/CMakeScripts/cmake_consistency_check.py b/CMakeScripts/cmake_consistency_check.py index d70a6a7e9..cf0889b74 100755 --- a/CMakeScripts/cmake_consistency_check.py +++ b/CMakeScripts/cmake_consistency_check.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# $Id: cmake_consistency_check.py 36708 2011-05-16 06:11:14Z gsrb3d $ +# $Id: cmake_consistency_check.py 38013 2011-07-01 12:33:34Z campbellbarton $ # ***** BEGIN GPL LICENSE BLOCK ***** # # This program is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ from cmake_consistency_check_config import IGNORE, UTF8_CHECK, SOURCE_DIR import os -from os.path import join, dirname, normpath, abspath, splitext +from os.path import join, dirname, normpath, splitext print("Scanning:", SOURCE_DIR) @@ -183,7 +183,6 @@ def is_ignore(f): # First do stupid check, do these files exist? print("\nChecking for missing references:") -import sys is_err = False errs = [] for f in (global_h | global_c): @@ -353,21 +353,6 @@ <exclude name="xml/test-xml.cpp"/> <!--<exclude name="xml/test-xml-main.cpp"/>--> <exclude name="io/streamtest.cpp"/> - <!--JABBER--> - <exclude name="pedro/pedrogui.cpp"/> - <exclude name="pedro/pedrogui.h"/> - <exclude name="pedro/work/.*"/> - <!--WHITEBOARD--> - <exclude name="ui/dialog/session-player.cpp"/> - <exclude name="ui/dialog/whiteboard-connect.cpp"/> - <exclude name="ui/dialog/whiteboard-sharewithchat.cpp"/> - <exclude name="ui/dialog/whiteboard-sharewithuser.cpp"/> - <exclude name="dialogs/whiteboard-connect-dialog.cpp"/> - <exclude name="dialogs/whiteboard-common-dialog.cpp"/> - <exclude name="dialogs/whiteboard-sharewithchat-dialog.cpp"/> - <exclude name="dialogs/whiteboard-sharewithuser-dialog.cpp"/> - <exclude name="jabber_whiteboard/node-tracker.cpp"/> - <exclude name="jabber_whiteboard/node-utilities.cpp"/> <!--OVERLAP--> <exclude name="removeoverlap/placement_SolveVPSC.cpp"/> <exclude name="removeoverlap/placement_SolveVPSC.h"/> diff --git a/configure.ac b/configure.ac index ee65676cc..3ecfd9870 100644 --- a/configure.ac +++ b/configure.ac @@ -325,7 +325,6 @@ else platform_osx=no fi AC_MSG_RESULT([$platform_osx]) -AM_CONDITIONAL(EXPORT_DYNAMIC_DIRECT, test "$platform_osx" = "yes") AC_MSG_CHECKING([for Solaris platform]) case "$host" in diff --git a/packaging/win32/inkscape.nsi b/packaging/win32/inkscape.nsi index fd9bbd424..3518a65bf 100755 --- a/packaging/win32/inkscape.nsi +++ b/packaging/win32/inkscape.nsi @@ -124,6 +124,7 @@ ShowUninstDetails hide !insertmacro INKLANGFILE French !insertmacro INKLANGFILE Galician !insertmacro INKLANGFILE German +!insertmacro INKLANGFILE Greek !insertmacro INKLANGFILE Indonesian !insertmacro INKLANGFILE Italian !insertmacro INKLANGFILE Japanese @@ -657,6 +658,7 @@ Function .onInit ; initialise the installer {{{2 !insertmacro LanguageAutoSelect French 1036 !insertmacro LanguageAutoSelect Galician 1110 !insertmacro LanguageAutoSelect German 1031 + !insertmacro LanguageAutoSelect Greek 1032 !insertmacro LanguageAutoSelect Indonesian 1057 !insertmacro LanguageAutoSelect Italian 1040 !insertmacro LanguageAutoSelect Japanese 1041 diff --git a/packaging/win32/languages/Greek.nsh b/packaging/win32/languages/Greek.nsh new file mode 100644 index 000000000..74902dd83 --- /dev/null +++ b/packaging/win32/languages/Greek.nsh @@ -0,0 +1,113 @@ +;Language: Ελληνικά (1032, CP1253) +;By Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com> +${LangFileString} CaptionDescription "Επεξεργαστής γραφικών κλιμακώσιμων διανυσμάτων ανοικτού κώδικα" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) εκδίδεται με τη γενική άδεια χρήσης (GPL). Η άδεια παρέχεται εδώ μόνο για λόγους πληροφόρησης. $_CLICK" +${LangFileString} DIFFERENT_USER "Το Inkscape εγκαταστάθηκε από το χρήστη $0.$\r$\nΕάν συνεχίσετε ίσως δεν ολοκληρώσετε με επιτυχία!$\r$\nΠαρακαλώ συνδεθείτε ως $0 και ξαναπροσπαθήστε." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 έχει ήδη εγκατασταθεί. $\nΘέλετε να απεγκαταστήσετε την προηγούμενη έκδοση πριν την εγκατάσταση $(^Name);" +${LangFileString} OK_CANCEL_DESC "$\n$\nΠατήστε ΕΝΤΑΞΕΙ για συνέχιση ή πατήστε ΑΚΥΡΩΣΗ για εγκατάλειψη." +${LangFileString} NO_ADMIN "Δεν έχετε δικαιώματα διαχειριστή.$\r$\nΗ εγκατάσταση του Inkscape για όλους τους χρήστες ίσως να μην ολοκληρωθεί με επιτυχία.$\r$\nΑποεπιλέξτε το 'Εγκατάσταση για όλους τους χρήστες'." +${LangFileString} NOT_SUPPORTED "Το Inkscape δεν τρέχει σε Windows 95/98/ME!$\r$\nΠαρακαλώ ελέγξτε τον επίσημο ιστότοπο για λεπτομερείς πληροφορίες." +${LangFileString} Full "Πλήρης" +${LangFileString} Optimal "Βέλτιστη" +${LangFileString} Minimal "Ελάχιστη" +${LangFileString} Core "Επεξεργαστής Inkscape SVG (απαιτείται)" +${LangFileString} CoreDesc "Αρχεία πυρήνα Inkscape και dlls" +${LangFileString} GTKFiles "GTK+ Runtime Environment (απαιτείται)" +${LangFileString} GTKFilesDesc "Μια εργαλειοθήκη GUI πολλαπλού λογισμικού, χρησιμοποιείται από το Inkscape" +${LangFileString} Shortcuts "Συντομεύσεις" +${LangFileString} ShortcutsDesc "Συντομεύσεις για εκκίνηση του Inkscape" +${LangFileString} Alluser "Εγκατάσταση για όλους τους χρήστες" +${LangFileString} AlluserDesc "Εγκατάσταση αυτής της εφαρμογής για οποιονδήποτε χρησιμοποιεί αυτόν τον υπολογιστή (όλοι οι χρήστες)" +${LangFileString} Desktop "Επιφάνεια εργασίας" +${LangFileString} DesktopDesc "Δημιουργία μιας συντόμευσης του Inkscape στην επιφάνεια εργασίας" +${LangFileString} Startmenu "Μενού έναρξης" +${LangFileString} StartmenuDesc "Δημιουργία εισόδου μενού έναρξης για το Inkscape" +${LangFileString} Quicklaunch "Γρήγορη εκκίνηση" +${LangFileString} QuicklaunchDesc "Δημιουργία μιας συντόμευσης του Inkscape στη γραμμή εργαλείων γρήγορης εκκίνησης" +${LangFileString} SVGWriter "Άνοιγμα αρχείων SVG με το Inkscape" +${LangFileString} SVGWriterDesc "Επιλογή του Inkscape ως προεπιλεγμένου επεξεργαστή για αρχεία SVG" +${LangFileString} ContextMenu "Θεματικό μενού" +${LangFileString} ContextMenuDesc "Προσθήκη του Inkscape στο θεματικό μενού για αρχεία SVG" +${LangFileString} DeletePrefs "Διαγραφή προσωπικών προτιμήσεων" +${LangFileString} DeletePrefsDesc "Διαγραφή προσωπικών προτιμήσεων που απέμειναν από προηγούμενες εγκαταστάσεις" +${LangFileString} Addfiles "Πρόσθετα αρχεία" +${LangFileString} AddfilesDesc "Πρόσθετα αρχεία" +${LangFileString} Examples "Παραδείγματα" +${LangFileString} ExamplesDesc "Παραδείγματα χρήσης του Inkscape" +${LangFileString} Tutorials "Μαθήματα" +${LangFileString} TutorialsDesc "Μαθήματα χρήσης του Inkscape" +${LangFileString} Languages "Μεταφράσεις" +${LangFileString} LanguagesDesc "Εγκατάσταση ποικίλων μεταφράσεων για το Inkscape" +${LangFileString} lng_am "Αμχαρικά" +${LangFileString} lng_ar "Αραβικά" +${LangFileString} lng_az "Αζέρικα" +${LangFileString} lng_be "Λευκορώσικα" +${LangFileString} lng_bg "Βουλγαρικά" +${LangFileString} lng_bn "Μπενγκάλι" +${LangFileString} lng_br "Βρετονικά" +${LangFileString} lng_ca "Καταλανικά" +${LangFileString} lng_ca@valencia "Καταλανικά Βαλένθιας" +${LangFileString} lng_cs "Τσέχικα" +${LangFileString} lng_da "Δανέζικα" +${LangFileString} lng_de "Γερμανικά" +${LangFileString} lng_dz "Ντζόνγκα" +${LangFileString} lng_el "Ελληνικά" +${LangFileString} lng_en "Αγγλικά" +${LangFileString} lng_en_AU "Αγγλικά Αυστραλίας" +${LangFileString} lng_en_CA "Αγγλικά Καναδά" +${LangFileString} lng_en_GB "Αγγλικά Βρετανίας" +${LangFileString} lng_en_US@piglatin "Pig Λατινικά" +${LangFileString} lng_eo "Εσπεράντο" +${LangFileString} lng_es "Ισπανικά" +${LangFileString} lng_es_MX "Ισπανικά Μεξικού" +${LangFileString} lng_et "Εσθονικά" +${LangFileString} lng_eu "Βασκικά" +${LangFileString} lng_fa "Φαρσί" +${LangFileString} lng_fi "Φινλανδικά" +${LangFileString} lng_fr "Γαλλικά" +${LangFileString} lng_ga "Ιρλανδικά" +${LangFileString} lng_gl "Γαλικιανικά" +${LangFileString} lng_he "Εβραϊκά" +${LangFileString} lng_hr "Κροατικά" +${LangFileString} lng_hu "Ουγγρικά" +${LangFileString} lng_id "Ινδονησιακά" +${LangFileString} lng_it "Ιταλικά" +${LangFileString} lng_ja "Γιαπωνέζικα" +${LangFileString} lng_km "Χμερ" +${LangFileString} lng_ko "Κορεατικά" +${LangFileString} lng_lt "Λιθουανικά" +${LangFileString} lng_mk "Μακεδονικά" +${LangFileString} lng_mn "Μογγολικά" +${LangFileString} lng_ne "Νεπαλικά" +${LangFileString} lng_nb "Νορβηγικά Bokmεl" +${LangFileString} lng_nl "Ολλανδικά" +${LangFileString} lng_nn "Νορβηγικά Nynorsk" +${LangFileString} lng_pa "Παντζάμπικα" +${LangFileString} lng_pl "Πολωνικά" +${LangFileString} lng_pt "Πορτογαλικά" +${LangFileString} lng_pt_BR "Πορτογαλικά Βραζιλίας" +${LangFileString} lng_ro "Ρουμάνικα" +${LangFileString} lng_ru "Ρώσικα" +${LangFileString} lng_rw "Κίνιαρουάντα" +${LangFileString} lng_sk "Σλοβάκικα" +${LangFileString} lng_sl "Σλοβένικα" +${LangFileString} lng_sq "Αλβανικά" +${LangFileString} lng_sr "Σέρβικα" +${LangFileString} lng_sr@latin "Σέρβικα σε λατινική γραφή" +${LangFileString} lng_sv "Σουηδικά" +${LangFileString} lng_te_IN "Τελούγκου" +${LangFileString} lng_th "Τάι" +${LangFileString} lng_tr "Τούρκικα" +${LangFileString} lng_uk "Ουκρανικά" +${LangFileString} lng_vi "Βιετναμέζικα" +${LangFileString} lng_zh_CN "Απλοποιημένα κινέζικα" +${LangFileString} lng_zh_TW "Παραδοσιακά κινέζικα" +${LangFileString} UInstOpt "Επιλογές απεγκατάστασης" +${LangFileString} UInstOpt1 "Παρακαλώ διαλέξτε για πρόσθετες επιλογές" +${LangFileString} PurgePrefs "Διατήρηση προσωπικών προτιμήσεων" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log δεν βρέθηκε!$\r$\nΠαρακαλώ απεγκαταστήστε καθαρίζοντας τον κατάλογο $INSTDIR μόνοι σας!" +${LangFileString} FileChanged "Το αρχείο $filename άλλαξε μετά την εγκατάσταση.$\r$\nΘέλετε ακόμα να διαγράψετε αυτό το αρχείο;" +${LangFileString} Yes "Ναι" +${LangFileString} AlwaysYes "απαντήστε πάντα Ναι" +${LangFileString} No "Όχι" +${LangFileString} AlwaysNo "απαντήστε πάντα Όχι" diff --git a/po/POTFILES.in b/po/POTFILES.in index aa742f218..59b13dfa5 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -385,14 +385,16 @@ share/extensions/web-transmit-att.py [type: gettext/xml] share/extensions/fractalize.inx [type: gettext/xml] share/extensions/funcplot.inx [type: gettext/xml] share/extensions/gears.inx -[type: gettext/xml] share/extensions/gcodetools_all_in_one.inx +[type: gettext/xml] share/extensions/gcodetools_about.inx [type: gettext/xml] share/extensions/gcodetools_area.inx [type: gettext/xml] share/extensions/gcodetools_check_for_updates.inx [type: gettext/xml] share/extensions/gcodetools_dxf_points.inx [type: gettext/xml] share/extensions/gcodetools_engraving.inx +[type: gettext/xml] share/extensions/gcodetools_graffiti.inx [type: gettext/xml] share/extensions/gcodetools_lathe.inx [type: gettext/xml] share/extensions/gcodetools_orientation_points.inx [type: gettext/xml] share/extensions/gcodetools_path_to_gcode.inx +[type: gettext/xml] share/extensions/gcodetools_prepare_path_for_plasma.inx [type: gettext/xml] share/extensions/gcodetools_tools_library.inx [type: gettext/xml] share/extensions/generate_voronoi.inx [type: gettext/xml] share/extensions/gimp_xcf.inx @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: inkscape\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-29 21:07+0200\n" -"PO-Revision-Date: 2011-06-29 21:21+0100\n" +"POT-Creation-Date: 2011-07-10 19:44+0200\n" +"PO-Revision-Date: 2011-07-10 20:04+0100\n" "Last-Translator: Nicolas Dufour <nicoduf@yahoo.fr>\n" "Language-Team: <fr@li.org>\n" "Language: \n" @@ -122,11 +122,23 @@ msgstr "Image extraite dans le dossierΒ : %s" msgid "Unable to find image data." msgstr "Les donnΓ©es de l’image sont introuvables." -#: ../share/extensions/gcodetools.py:3087 +#: ../share/extensions/gcodetools.py:3317 +#: ../share/extensions/gcodetools.py:4522 +#: ../share/extensions/gcodetools.py:4695 +#: ../share/extensions/gcodetools.py:6228 +#: ../share/extensions/gcodetools.py:6423 +msgid "No paths are selected! Trying to work on all available paths." +msgstr "Aucun chemin n'est sΓ©lectionné ! Tentative d'utilisation de tous les chemins disponibles." + +#: ../share/extensions/gcodetools.py:3320 +msgid "Noting is selected. Please select something." +msgstr "Rien n'est sΓ©lectionnΓ©. Merci de sΓ©lectionner quelque chose." + +#: ../share/extensions/gcodetools.py:3860 msgid "Directory does not exist! Please specify existing directory at Preferences tab!" msgstr "Le dossier n’existe pasΒ ! Veuillez spΓ©cifier un dossier existant dans l'onglet PrΓ©fΓ©rences." -#: ../share/extensions/gcodetools.py:3112 +#: ../share/extensions/gcodetools.py:3890 #, python-format msgid "" "Can not write to specified file!\n" @@ -135,28 +147,33 @@ msgstr "" "Γ‰chec de l'Γ©criture dans le fichier spΓ©cifiΓ©.\n" "%s" -#: ../share/extensions/gcodetools.py:3240 +#: ../share/extensions/gcodetools.py:4036 #, python-format msgid "Orientation points for '%s' layer have not been found! Please add orientation points using Orientation tab!" msgstr "Les points d'orientation n'ont pas Γ©tΓ© dΓ©finis pour le calque '%s'. Veuillez ajouter des points d'orientation avec l'onglet Orientation." -#: ../share/extensions/gcodetools.py:3246 +#: ../share/extensions/gcodetools.py:4043 #, python-format msgid "There are more than one orientation point groups in '%s' layer" msgstr "Le calque '%s' contient plus d'un groupe de points d'orientation" -#: ../share/extensions/gcodetools.py:3277 -#: ../share/extensions/gcodetools.py:3279 -msgid "Orientation points are wrong! (if there are two orientation points they sould not be the same. If there are three orientation points they should not be in a straight line.)" +#: ../share/extensions/gcodetools.py:4074 +#: ../share/extensions/gcodetools.py:4076 +msgid "Orientation points are wrong! (if there are two orientation points they should not be the same. If there are three orientation points they should not be in a straight line.)" msgstr "" -#: ../share/extensions/gcodetools.py:3398 +#: ../share/extensions/gcodetools.py:4246 #, python-format msgid "Warning! Found bad orientation points in '%s' layer. Resulting Gcode could be corrupt!" msgstr "AttentionΒ ! Des mauvais points d'orientation ont Γ©tΓ© trouvΓ©s dans le calque '%s'. Le Gcode gΓ©nΓ©rΓ© pourrait Γtre corrompuΒ !" +#: ../share/extensions/gcodetools.py:4259 +#, python-format +msgid "Warning! Found bad graffiti reference point in '%s' layer. Resulting Gcode could be corrupt!" +msgstr "AttentionΒ ! Un mauvais point de rΓ©fΓ©rence graffiti a Γ©tΓ© trouvΓ© dans le calque '%s'. Le Gcode gΓ©nΓ©rΓ© pourrait Γtre corrompuΒ !" + #. xgettext:no-pango-format -#: ../share/extensions/gcodetools.py:3412 +#: ../share/extensions/gcodetools.py:4280 msgid "" "This extension works with Paths and Dynamic Offsets and groups of them only! All other objects will be ignored!\n" "Solution 1: press Path->Object to path or Shift+Ctrl+C.\n" @@ -164,76 +181,95 @@ msgid "" "Solution 3: export all contours to PostScript level 2 (File->Save As->.ps) and File->Import this file." msgstr "" -#: ../share/extensions/gcodetools.py:3469 +#: ../share/extensions/gcodetools.py:4286 +msgid "Document has no layers! Add at least one layer using layers panel (Ctrl+Shift+L)" +msgstr "" + +#: ../share/extensions/gcodetools.py:4290 +msgid "Warning! There are some paths in the root of the document, but not in any layer! Using bottom-most layer for them." +msgstr "" + +#: ../share/extensions/gcodetools.py:4367 #, python-format msgid "Warning! Tool's and default tool's parameter's (%s) types are not the same ( type('%s') != type('%s') )." msgstr "" -#: ../share/extensions/gcodetools.py:3472 +#: ../share/extensions/gcodetools.py:4370 #, python-format msgid "Warning! Tool has parameter that default tool has not ( '%s': '%s' )." msgstr "" -#: ../share/extensions/gcodetools.py:3486 +#: ../share/extensions/gcodetools.py:4384 #, python-format msgid "Layer '%s' contains more than one tool!" msgstr "Le calque '%s' contient plus d'un outilΒ !" -#: ../share/extensions/gcodetools.py:3489 +#: ../share/extensions/gcodetools.py:4387 #, python-format msgid "Can not find tool for '%s' layer! Please add one with Tools library tab!" msgstr "" -#: ../share/extensions/gcodetools.py:3592 -#: ../share/extensions/gcodetools.py:3673 -msgid "No paths are selected! Trying to work on all available paths." -msgstr "Aucun chemin n'est sΓ©lectionné ! Tentative d'utilisation de tous les chemins disponibles." - -#: ../share/extensions/gcodetools.py:3611 -#: ../share/extensions/gcodetools.py:3682 -msgid "Warning: One or more paths dont have 'd' parameter, try to Ungroup (Ctrl+Shift+G) and Object to Path (Ctrl+Shift+C)!" +#: ../share/extensions/gcodetools.py:4549 +#: ../share/extensions/gcodetools.py:4704 +msgid "Warning: One or more paths do not have 'd' parameter, try to Ungroup (Ctrl+Shift+G) and Object to Path (Ctrl+Shift+C)!" msgstr "AttentionΒ : au moins un chemin n'a pas de paramΓ¨tre 'd'. Veuillez dΓ©grouper (Maj+Ctrl+G) et transformer l'objet en chemin (Maj+Ctrl+C)." -#: ../share/extensions/gcodetools.py:3641 -msgid "Nothing is selected. Please select something to convert to drill point (dxfpoint) or clear point sign." +#: ../share/extensions/gcodetools.py:4663 +msgid "Noting is selected. Please select something to convert to drill point (dxfpoint) or clear point sign." msgstr "" -#: ../share/extensions/gcodetools.py:3714 -#: ../share/extensions/gcodetools.py:3808 +#: ../share/extensions/gcodetools.py:4746 +#: ../share/extensions/gcodetools.py:4992 msgid "This extension requires at least one selected path." msgstr "Cette extension nΓ©cessite la sΓ©lection d’un chemin." -#: ../share/extensions/gcodetools.py:3720 +#: ../share/extensions/gcodetools.py:4752 +#: ../share/extensions/gcodetools.py:4998 #, python-format msgid "Tool diameter must be > 0 but tool's diameter on '%s' layer is not!" msgstr "Le diamΓ¨tre d'outil doit Γtre supΓ©rieur Γ 0, ce qui n'est pas le cas pour l'outil du calque '%s'Β !" -#: ../share/extensions/gcodetools.py:3731 +#: ../share/extensions/gcodetools.py:4763 +#: ../share/extensions/gcodetools.py:4952 +#: ../share/extensions/gcodetools.py:5007 msgid "Warning: omitting non-path" msgstr "AttentionΒ : tout ce qui n'est pas chemin n'est pas pris en compte" -#: ../share/extensions/gcodetools.py:4063 +#: ../share/extensions/gcodetools.py:5507 +msgid "Please select at least one path to engrave and run again." +msgstr "Veuillez sΓ©lectionner au moins un chemin Γ graver et recommencer." + +#: ../share/extensions/gcodetools.py:5515 +msgid "Unknown unit selected. mm assumed" +msgstr "Aucune unitΓ© n'a Γ©tΓ© sΓ©lectionnΓ©e. mm utilisΓ©s par dΓ©faut." + +#: ../share/extensions/gcodetools.py:5536 #, python-format -msgid "Tool '%s' has no shape!" -msgstr "L'outil '%s' n'a pas de formeΒ !" +msgid "Tool '%s' has no shape. 45 degree cone assumed!" +msgstr "L'outil '%s' n'a pas de forme. Un cΓ΄ne de 45 degrΓ©s sera utilisé !" + +#: ../share/extensions/gcodetools.py:5607 +#: ../share/extensions/gcodetools.py:5612 +msgid "csp_normalised_normal error. See log." +msgstr "" -#: ../share/extensions/gcodetools.py:4073 +#: ../share/extensions/gcodetools.py:5800 msgid "No need to engrave sharp angles." msgstr "Il n'est pas nΓ©cessaire de graver les angles aigus." -#: ../share/extensions/gcodetools.py:4086 +#: ../share/extensions/gcodetools.py:5844 msgid "Active layer already has orientation points! Remove them or select another layer!" msgstr "Le calque actif possΓ¨de dΓ©jΓ des points d'orientation. Veuillez les supprimer ou sΓ©lectionner un autre calque." -#: ../share/extensions/gcodetools.py:4134 +#: ../share/extensions/gcodetools.py:5889 msgid "Active layer already has a tool! Remove it or select another layer!" msgstr "Le calque actif possΓ¨de dΓ©jΓ un outil. Veuillez le supprimer ou sΓ©lectionner un autre calque." -#: ../share/extensions/gcodetools.py:4258 +#: ../share/extensions/gcodetools.py:6004 msgid "Selection is empty! Will compute whole drawing." msgstr "La sΓ©lection est vide. Le dessin complet sera pris en compte." -#: ../share/extensions/gcodetools.py:4318 +#: ../share/extensions/gcodetools.py:6058 msgid "" "Tutorials, manuals and support can be found at\n" "English support forum:\n" @@ -247,23 +283,26 @@ msgstr "" "Forum en russeΒ :\n" "\thttp://www.cnc-club.ru/gcodetoolsru" -#: ../share/extensions/gcodetools.py:4363 +#: ../share/extensions/gcodetools.py:6103 msgid "Lathe X and Z axis remap should be 'X', 'Y' or 'Z'. Exiting..." msgstr "" -#: ../share/extensions/gcodetools.py:4366 +#: ../share/extensions/gcodetools.py:6106 msgid "Lathe X and Z axis remap should be the same. Exiting..." msgstr "" -#: ../share/extensions/gcodetools.py:4527 -msgid "Select one of the active tabs - Path to Gcode, Area, Engraving, DXF points, Orientation, Offset, Lathe or Tools library." +#: ../share/extensions/gcodetools.py:6658 +#, python-format +msgid "" +"Select one of the action tabs - Path to Gcode, Area, Engraving, DXF points, Orientation, Offset, Lathe or Tools library.\n" +" Current active tab id is %s" msgstr "" -#: ../share/extensions/gcodetools.py:4533 +#: ../share/extensions/gcodetools.py:6664 msgid "Orientation points have not been defined! A default set of orientation points has been automatically added." msgstr "" -#: ../share/extensions/gcodetools.py:4537 +#: ../share/extensions/gcodetools.py:6668 msgid "Cutting tool has not been defined! A default tool has been automatically added." msgstr "" @@ -328,13 +367,13 @@ msgstr "" "Le premier objet sΓ©lectionnΓ© est de type '%s'.\n" "Essayez la commande Chemin>Objet en chemin." -#: ../share/extensions/perspective.py:74 -#: ../share/extensions/summersnight.py:50 +#: ../share/extensions/perspective.py:75 +#: ../share/extensions/summersnight.py:51 msgid "This extension requires that the second selected path be four nodes long." msgstr "Cette extension exige que le second chemin sΓ©lectionnΓ© contienne quatre nΕ“uds." -#: ../share/extensions/perspective.py:99 -#: ../share/extensions/summersnight.py:82 +#: ../share/extensions/perspective.py:101 +#: ../share/extensions/summersnight.py:84 msgid "" "The second selected object is a group, not a path.\n" "Try using the procedure Object->Ungroup." @@ -342,8 +381,8 @@ msgstr "" "Le second objet sΓ©lectionnΓ© n’est pas un chemin mais un groupe.\n" "Essayez la commande Objet>DΓ©grouper." -#: ../share/extensions/perspective.py:101 -#: ../share/extensions/summersnight.py:84 +#: ../share/extensions/perspective.py:103 +#: ../share/extensions/summersnight.py:86 msgid "" "The second selected object is not a path.\n" "Try using the procedure Path->Object to Path." @@ -351,8 +390,8 @@ msgstr "" "Le second objet sΓ©lectionnΓ© n’est pas un chemin.\n" "Essayez la commande Chemin>Objet en chemin." -#: ../share/extensions/perspective.py:104 -#: ../share/extensions/summersnight.py:87 +#: ../share/extensions/perspective.py:106 +#: ../share/extensions/summersnight.py:89 msgid "" "The first selected object is not a path.\n" "Try using the procedure Path->Object to Path." @@ -689,7 +728,7 @@ msgstr "DΓ©tecte les bords de couleur verticaux dans les objets" #. Pencil #: ../share/filters/filters.svg.h:1 -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 #: ../src/verbs.cpp:2520 msgid "Pencil" msgstr "Crayon" @@ -712,8 +751,8 @@ msgid "Desaturate" msgstr "DΓ©saturer" #: ../share/filters/filters.svg.h:1 -#: ../src/dialogs/clonetiler.cpp:2509 -#: ../src/dialogs/clonetiler.cpp:2648 +#: ../src/dialogs/clonetiler.cpp:2517 +#: ../src/dialogs/clonetiler.cpp:2656 #: ../src/extension/internal/bitmap/colorize.cpp:51 #: ../src/extension/internal/filter/abc.h:477 #: ../src/extension/internal/filter/abc.h:580 @@ -3739,12 +3778,12 @@ msgid "Select <b>at least one non-connector object</b>." msgstr "SΓ©lectionner <b>au moins un objet non connecteur</b>." #: ../src/connector-context.cpp:1968 -#: ../src/widgets/toolbox.cpp:8280 +#: ../src/widgets/toolbox.cpp:8298 msgid "Make connectors avoid selected objects" msgstr "Faire que les connecteurs Γ©vitent les objets sΓ©lectionnΓ©s" #: ../src/connector-context.cpp:1969 -#: ../src/widgets/toolbox.cpp:8290 +#: ../src/widgets/toolbox.cpp:8308 msgid "Make connectors ignore selected objects" msgstr "Faire que les connecteurs ignorent les objets sΓ©lectionnΓ©s" @@ -3851,617 +3890,612 @@ msgstr "<small>HasardΒ :</small>" msgid "_Symmetry" msgstr "_SymΓ©trie" -# See: -# http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples) -# http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary) -# http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary) -#. TRANSLATORS: For the following 17 symmetry groups, see -#. * http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples); -#. * http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary); or -#. * http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary). -#. -#: ../src/dialogs/clonetiler.cpp:1821 -msgid "Select one of the 17 symmetry groups for the tiling" -msgstr "SΓ©lectionner l’un de ces 17 groupes de symΓ©trie pour le pavage" - #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/dialogs/clonetiler.cpp:1832 +#: ../src/dialogs/clonetiler.cpp:1825 msgid "<b>P1</b>: simple translation" msgstr "<b>P1</b>Β : translation" -#: ../src/dialogs/clonetiler.cpp:1833 +#: ../src/dialogs/clonetiler.cpp:1826 msgid "<b>P2</b>: 180° rotation" msgstr "<b>P2</b>Β : rotation de 180°" -#: ../src/dialogs/clonetiler.cpp:1834 +#: ../src/dialogs/clonetiler.cpp:1827 msgid "<b>PM</b>: reflection" msgstr "<b>PM</b>Β : rΓ©flexion" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/dialogs/clonetiler.cpp:1837 +#: ../src/dialogs/clonetiler.cpp:1830 msgid "<b>PG</b>: glide reflection" msgstr "<b>PG</b>Β : rΓ©flexion glissΓ©e" -#: ../src/dialogs/clonetiler.cpp:1838 +#: ../src/dialogs/clonetiler.cpp:1831 msgid "<b>CM</b>: reflection + glide reflection" msgstr "<b>CM</b>Β : rΓ©flexion + rΓ©flexion glissΓ©e" -#: ../src/dialogs/clonetiler.cpp:1839 +#: ../src/dialogs/clonetiler.cpp:1832 msgid "<b>PMM</b>: reflection + reflection" msgstr "<b>PMM</b>Β : rΓ©flexion + rΓ©flexion" -#: ../src/dialogs/clonetiler.cpp:1840 +#: ../src/dialogs/clonetiler.cpp:1833 msgid "<b>PMG</b>: reflection + 180° rotation" msgstr "<b>PMG</b>Β : rΓ©flexion + rotation de 180°" -#: ../src/dialogs/clonetiler.cpp:1841 +#: ../src/dialogs/clonetiler.cpp:1834 msgid "<b>PGG</b>: glide reflection + 180° rotation" msgstr "<b>PGG</b>Β : rΓ©flexion glissΓ©e + rotation de 180°" -#: ../src/dialogs/clonetiler.cpp:1842 +#: ../src/dialogs/clonetiler.cpp:1835 msgid "<b>CMM</b>: reflection + reflection + 180° rotation" msgstr "<b>CMM</b>Β : rΓ©flexion + rΓ©flexion + rotation de 180°" -#: ../src/dialogs/clonetiler.cpp:1843 +#: ../src/dialogs/clonetiler.cpp:1836 msgid "<b>P4</b>: 90° rotation" msgstr "<b>P4</b>Β : rotation de 90°" -#: ../src/dialogs/clonetiler.cpp:1844 +#: ../src/dialogs/clonetiler.cpp:1837 msgid "<b>P4M</b>: 90° rotation + 45° reflection" msgstr "<b>P4M</b>Β : rotation de 90° + rΓ©flexion Γ 45°" -#: ../src/dialogs/clonetiler.cpp:1845 +#: ../src/dialogs/clonetiler.cpp:1838 msgid "<b>P4G</b>: 90° rotation + 90° reflection" msgstr "<b>P4G</b>Β : rotation de 90° + rΓ©flexion Γ 90°" -#: ../src/dialogs/clonetiler.cpp:1846 +#: ../src/dialogs/clonetiler.cpp:1839 msgid "<b>P3</b>: 120° rotation" msgstr "<b>P3</b>Β : rotation de 120°" -#: ../src/dialogs/clonetiler.cpp:1847 +#: ../src/dialogs/clonetiler.cpp:1840 msgid "<b>P31M</b>: reflection + 120° rotation, dense" msgstr "<b>P31M</b>Β : rΓ©flexion + rotation de 120°, dense" -#: ../src/dialogs/clonetiler.cpp:1848 +#: ../src/dialogs/clonetiler.cpp:1841 msgid "<b>P3M1</b>: reflection + 120° rotation, sparse" msgstr "<b>P3M1</b>Β : rΓ©flexion + rotation de 120°, clairsemΓ©" -#: ../src/dialogs/clonetiler.cpp:1849 +#: ../src/dialogs/clonetiler.cpp:1842 msgid "<b>P6</b>: 60° rotation" msgstr "<b>P6</b>Β : rotation de 60°" -#: ../src/dialogs/clonetiler.cpp:1850 +#: ../src/dialogs/clonetiler.cpp:1843 msgid "<b>P6M</b>: reflection + 60° rotation" msgstr "<b>P6M</b>Β : rΓ©flexion + rotation de 60°" -#: ../src/dialogs/clonetiler.cpp:1878 +# See: +# http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples) +# http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary) +# http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary) +#: ../src/dialogs/clonetiler.cpp:1865 +msgid "Select one of the 17 symmetry groups for the tiling" +msgstr "SΓ©lectionner l’un de ces 17 groupes de symΓ©trie pour le pavage" + +#: ../src/dialogs/clonetiler.cpp:1886 msgid "S_hift" msgstr "_Translation" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/dialogs/clonetiler.cpp:1888 +#: ../src/dialogs/clonetiler.cpp:1896 #, no-c-format msgid "<b>Shift X:</b>" msgstr "<b>Translation XΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:1896 +#: ../src/dialogs/clonetiler.cpp:1904 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" msgstr "Translation horizontale Γ chaque ligne (en % de la largeur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:1904 +#: ../src/dialogs/clonetiler.cpp:1912 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" msgstr "Translation horizontale Γ chaque colonne (en % de la largeur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:1910 +#: ../src/dialogs/clonetiler.cpp:1918 msgid "Randomize the horizontal shift by this percentage" msgstr "Introduire ce pourcentage de hasard dans la translation horizontale" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/dialogs/clonetiler.cpp:1920 +#: ../src/dialogs/clonetiler.cpp:1928 #, no-c-format msgid "<b>Shift Y:</b>" msgstr "<b>Translation YΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:1928 +#: ../src/dialogs/clonetiler.cpp:1936 #, no-c-format msgid "Vertical shift per row (in % of tile height)" msgstr "Translation verticale Γ chaque ligne (en % de la hauteur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:1936 +#: ../src/dialogs/clonetiler.cpp:1944 #, no-c-format msgid "Vertical shift per column (in % of tile height)" msgstr "Translation verticale Γ chaque colonne (en % de la hauteur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:1943 +#: ../src/dialogs/clonetiler.cpp:1951 msgid "Randomize the vertical shift by this percentage" msgstr "Introduire ce pourcentage de hasard dans la translation verticale" -#: ../src/dialogs/clonetiler.cpp:1951 -#: ../src/dialogs/clonetiler.cpp:2097 +#: ../src/dialogs/clonetiler.cpp:1959 +#: ../src/dialogs/clonetiler.cpp:2105 msgid "<b>Exponent:</b>" msgstr "<b>ExposantΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:1958 +#: ../src/dialogs/clonetiler.cpp:1966 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Selon la valeur, l’inter ligne reste constant (1), converge (<1) ou diverge (>1) " -#: ../src/dialogs/clonetiler.cpp:1965 +#: ../src/dialogs/clonetiler.cpp:1973 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Selon la valeur, l’inter colonne reste constant (1), converge (<1) ou diverge (>1) " #. TRANSLATORS: "Alternate" is a verb here -#: ../src/dialogs/clonetiler.cpp:1973 -#: ../src/dialogs/clonetiler.cpp:2137 -#: ../src/dialogs/clonetiler.cpp:2213 -#: ../src/dialogs/clonetiler.cpp:2286 -#: ../src/dialogs/clonetiler.cpp:2332 -#: ../src/dialogs/clonetiler.cpp:2454 +#: ../src/dialogs/clonetiler.cpp:1981 +#: ../src/dialogs/clonetiler.cpp:2145 +#: ../src/dialogs/clonetiler.cpp:2221 +#: ../src/dialogs/clonetiler.cpp:2294 +#: ../src/dialogs/clonetiler.cpp:2340 +#: ../src/dialogs/clonetiler.cpp:2462 msgid "<small>Alternate:</small>" msgstr "<small>AlternerΒ :</small>" -#: ../src/dialogs/clonetiler.cpp:1979 +#: ../src/dialogs/clonetiler.cpp:1987 msgid "Alternate the sign of shifts for each row" msgstr "Alterner le signe de la translation Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:1984 +#: ../src/dialogs/clonetiler.cpp:1992 msgid "Alternate the sign of shifts for each column" msgstr "Alterner le signe de la translation Γ chaque colonne" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:1991 -#: ../src/dialogs/clonetiler.cpp:2155 -#: ../src/dialogs/clonetiler.cpp:2231 +#: ../src/dialogs/clonetiler.cpp:1999 +#: ../src/dialogs/clonetiler.cpp:2163 +#: ../src/dialogs/clonetiler.cpp:2239 msgid "<small>Cumulate:</small>" msgstr "<small>CumulatifΒ :</small>" -#: ../src/dialogs/clonetiler.cpp:1997 +#: ../src/dialogs/clonetiler.cpp:2005 msgid "Cumulate the shifts for each row" msgstr "DΓ©calage cumulatif des lignes" -#: ../src/dialogs/clonetiler.cpp:2002 +#: ../src/dialogs/clonetiler.cpp:2010 msgid "Cumulate the shifts for each column" msgstr "DΓ©calage cumulatif des colonnes" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:2009 +#: ../src/dialogs/clonetiler.cpp:2017 msgid "<small>Exclude tile:</small>" msgstr "<small>Exclure la taille du pavé :</small>" -#: ../src/dialogs/clonetiler.cpp:2015 +#: ../src/dialogs/clonetiler.cpp:2023 msgid "Exclude tile height in shift" msgstr "Ne pas ajouter la hauteur du pavΓ© au dΓ©calage" -#: ../src/dialogs/clonetiler.cpp:2020 +#: ../src/dialogs/clonetiler.cpp:2028 msgid "Exclude tile width in shift" msgstr "Ne pas ajouter la largeur du pavΓ© au dΓ©calage" -#: ../src/dialogs/clonetiler.cpp:2029 +#: ../src/dialogs/clonetiler.cpp:2037 msgid "Sc_ale" msgstr "_Dimensions" -#: ../src/dialogs/clonetiler.cpp:2037 +#: ../src/dialogs/clonetiler.cpp:2045 msgid "<b>Scale X:</b>" msgstr "<b>Γ‰chelle XΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2045 +#: ../src/dialogs/clonetiler.cpp:2053 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" msgstr "Redimensionnement horizontal Γ chaque ligne (en % de la largeur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:2053 +#: ../src/dialogs/clonetiler.cpp:2061 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" msgstr "Redimensionnement horizontal Γ chaque colonne (en % de la largeur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:2059 +#: ../src/dialogs/clonetiler.cpp:2067 msgid "Randomize the horizontal scale by this percentage" msgstr "Introduire ce pourcentage de hasard dans le redimensionnement horizontal" -#: ../src/dialogs/clonetiler.cpp:2067 +#: ../src/dialogs/clonetiler.cpp:2075 msgid "<b>Scale Y:</b>" msgstr "<b>Γ‰chelle YΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2075 +#: ../src/dialogs/clonetiler.cpp:2083 #, no-c-format msgid "Vertical scale per row (in % of tile height)" msgstr "Redimensionnement vertical Γ chaque ligne (en % de la hauteur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:2083 +#: ../src/dialogs/clonetiler.cpp:2091 #, no-c-format msgid "Vertical scale per column (in % of tile height)" msgstr "Redimensionnement vertical Γ chaque colonne (en % de la largeur du pavΓ© de base)" -#: ../src/dialogs/clonetiler.cpp:2089 +#: ../src/dialogs/clonetiler.cpp:2097 msgid "Randomize the vertical scale by this percentage" msgstr "Introduire ce pourcentage de hasard dans le redimensionnement vertical" -#: ../src/dialogs/clonetiler.cpp:2103 +#: ../src/dialogs/clonetiler.cpp:2111 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Selon la valeur, le redimensionnement des lignes est uniforme (1), converge (<1) ou diverge (>1) " -#: ../src/dialogs/clonetiler.cpp:2109 +#: ../src/dialogs/clonetiler.cpp:2117 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Selon la valeur, le redimensionnement des colonnes est uniforme (1), converge (<1) ou diverge (>1) " -#: ../src/dialogs/clonetiler.cpp:2117 +#: ../src/dialogs/clonetiler.cpp:2125 msgid "<b>Base:</b>" msgstr "<b>BaseΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2123 -#: ../src/dialogs/clonetiler.cpp:2129 +#: ../src/dialogs/clonetiler.cpp:2131 +#: ../src/dialogs/clonetiler.cpp:2137 msgid "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" msgstr "Base pour une spirale logarithmiqueΒ : inutilisΓ©e (0), converge (<1), ou diverge (>1)" -#: ../src/dialogs/clonetiler.cpp:2143 +#: ../src/dialogs/clonetiler.cpp:2151 msgid "Alternate the sign of scales for each row" msgstr "Alterner le signe du redimensionnement Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2148 +#: ../src/dialogs/clonetiler.cpp:2156 msgid "Alternate the sign of scales for each column" msgstr "Alterner le signe du redimensionnement Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2161 +#: ../src/dialogs/clonetiler.cpp:2169 msgid "Cumulate the scales for each row" msgstr "Cumuler le redimensionnement Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2166 +#: ../src/dialogs/clonetiler.cpp:2174 msgid "Cumulate the scales for each column" msgstr "Cumuler le redimensionnement Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2175 +#: ../src/dialogs/clonetiler.cpp:2183 msgid "_Rotation" msgstr "_Rotation" -#: ../src/dialogs/clonetiler.cpp:2183 +#: ../src/dialogs/clonetiler.cpp:2191 msgid "<b>Angle:</b>" msgstr "<b>AngleΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2191 +#: ../src/dialogs/clonetiler.cpp:2199 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "Faire tourner les pavΓ©s de cet angle Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2199 +#: ../src/dialogs/clonetiler.cpp:2207 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "Faire tourner les pavΓ©s de cet angle Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2205 +#: ../src/dialogs/clonetiler.cpp:2213 msgid "Randomize the rotation angle by this percentage" msgstr "Introduire ce pourcentage de hasard dans l’angle de rotation" -#: ../src/dialogs/clonetiler.cpp:2219 +#: ../src/dialogs/clonetiler.cpp:2227 msgid "Alternate the rotation direction for each row" msgstr "Alterner le sens de la rotation Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2224 +#: ../src/dialogs/clonetiler.cpp:2232 msgid "Alternate the rotation direction for each column" msgstr "Alterner le sens de la rotation Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2237 +#: ../src/dialogs/clonetiler.cpp:2245 msgid "Cumulate the rotation for each row" msgstr "Cumuler l’angle de rotation Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2242 +#: ../src/dialogs/clonetiler.cpp:2250 msgid "Cumulate the rotation for each column" msgstr "Cumuler l’angle de rotation Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2251 +#: ../src/dialogs/clonetiler.cpp:2259 msgid "_Blur & opacity" msgstr "_Flou & opacitΓ©" -#: ../src/dialogs/clonetiler.cpp:2260 +#: ../src/dialogs/clonetiler.cpp:2268 msgid "<b>Blur:</b>" msgstr "<b>FlouΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2266 +#: ../src/dialogs/clonetiler.cpp:2274 msgid "Blur tiles by this percentage for each row" msgstr "Rendre les pavΓ©s flous de ce pourcentage Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2272 +#: ../src/dialogs/clonetiler.cpp:2280 msgid "Blur tiles by this percentage for each column" msgstr "Rendre les pavΓ©s flous de ce pourcentage Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2278 +#: ../src/dialogs/clonetiler.cpp:2286 msgid "Randomize the tile blur by this percentage" msgstr "Introduire ce pourcentage de hasard dans le flou" -#: ../src/dialogs/clonetiler.cpp:2292 +#: ../src/dialogs/clonetiler.cpp:2300 msgid "Alternate the sign of blur change for each row" msgstr "Alterner le signe de la modification de flou Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2297 +#: ../src/dialogs/clonetiler.cpp:2305 msgid "Alternate the sign of blur change for each column" msgstr "Alterner le signe de la modification de flou Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2306 +#: ../src/dialogs/clonetiler.cpp:2314 msgid "<b>Opacity:</b>" msgstr "<b>Opacité :</b>" -#: ../src/dialogs/clonetiler.cpp:2312 +#: ../src/dialogs/clonetiler.cpp:2320 msgid "Decrease tile opacity by this percentage for each row" msgstr "Diminuer l’opacitΓ© des pavΓ©s de ce pourcentage Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2318 +#: ../src/dialogs/clonetiler.cpp:2326 msgid "Decrease tile opacity by this percentage for each column" msgstr "Diminuer l’opacitΓ© des pavΓ©s de ce pourcentage Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2324 +#: ../src/dialogs/clonetiler.cpp:2332 msgid "Randomize the tile opacity by this percentage" msgstr "Introduire ce pourcentage de hasard dans l’opacitΓ©" -#: ../src/dialogs/clonetiler.cpp:2338 +#: ../src/dialogs/clonetiler.cpp:2346 msgid "Alternate the sign of opacity change for each row" msgstr "Alterner le signe de la modification d’opacitΓ© Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2343 +#: ../src/dialogs/clonetiler.cpp:2351 msgid "Alternate the sign of opacity change for each column" msgstr "Alterner le signe de la modification d’opacitΓ© Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2351 +#: ../src/dialogs/clonetiler.cpp:2359 msgid "Co_lor" msgstr "Cou_leur" -#: ../src/dialogs/clonetiler.cpp:2356 +#: ../src/dialogs/clonetiler.cpp:2364 msgid "Initial color: " msgstr "Couleur initialeΒ :" -#: ../src/dialogs/clonetiler.cpp:2360 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "Initial color of tiled clones" msgstr "Couleur initiale des clones de pavage" -#: ../src/dialogs/clonetiler.cpp:2360 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "Initial color for clones (works only if the original has unset fill or stroke)" msgstr "Couleur initiale pour les clones (ne fonctionne que si l’original a un remplissage ou un contour indΓ©fini)" -#: ../src/dialogs/clonetiler.cpp:2375 +#: ../src/dialogs/clonetiler.cpp:2383 msgid "<b>H:</b>" msgstr "<b>TΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2381 +#: ../src/dialogs/clonetiler.cpp:2389 msgid "Change the tile hue by this percentage for each row" msgstr "Modifier la teinte des pavΓ©s de ce pourcentage Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2387 +#: ../src/dialogs/clonetiler.cpp:2395 msgid "Change the tile hue by this percentage for each column" msgstr "Modifier la teinte des pavΓ©s de ce pourcentage Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2393 +#: ../src/dialogs/clonetiler.cpp:2401 msgid "Randomize the tile hue by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de teinte" -#: ../src/dialogs/clonetiler.cpp:2402 +#: ../src/dialogs/clonetiler.cpp:2410 msgid "<b>S:</b>" msgstr "<b>SΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2408 +#: ../src/dialogs/clonetiler.cpp:2416 msgid "Change the color saturation by this percentage for each row" msgstr "Modifier la saturation des pavΓ©s de ce pourcentage Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2414 +#: ../src/dialogs/clonetiler.cpp:2422 msgid "Change the color saturation by this percentage for each column" msgstr "Modifier la saturation des pavΓ©s de ce pourcentage Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2420 +#: ../src/dialogs/clonetiler.cpp:2428 msgid "Randomize the color saturation by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de saturation" -#: ../src/dialogs/clonetiler.cpp:2428 +#: ../src/dialogs/clonetiler.cpp:2436 msgid "<b>L:</b>" msgstr "<b>LΒ :</b>" -#: ../src/dialogs/clonetiler.cpp:2434 +#: ../src/dialogs/clonetiler.cpp:2442 msgid "Change the color lightness by this percentage for each row" msgstr "Modifier la luminositΓ© des pavΓ©s de ce pourcentage Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2440 +#: ../src/dialogs/clonetiler.cpp:2448 msgid "Change the color lightness by this percentage for each column" msgstr "Modifier la luminositΓ© des pavΓ©s de ce pourcentage Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2446 +#: ../src/dialogs/clonetiler.cpp:2454 msgid "Randomize the color lightness by this percentage" msgstr "Introduire ce pourcentage de hasard dans la modification de luminositΓ©" -#: ../src/dialogs/clonetiler.cpp:2460 +#: ../src/dialogs/clonetiler.cpp:2468 msgid "Alternate the sign of color changes for each row" msgstr "Alterner le signe de la modification de couleur Γ chaque ligne" -#: ../src/dialogs/clonetiler.cpp:2465 +#: ../src/dialogs/clonetiler.cpp:2473 msgid "Alternate the sign of color changes for each column" msgstr "Alterner le signe de la modification de couleur Γ chaque colonne" -#: ../src/dialogs/clonetiler.cpp:2473 +#: ../src/dialogs/clonetiler.cpp:2481 msgid "_Trace" msgstr "_Calquer" -#: ../src/dialogs/clonetiler.cpp:2480 +#: ../src/dialogs/clonetiler.cpp:2488 msgid "Trace the drawing under the tiles" msgstr "Calquer depuis le dessin sous les pavΓ©s" -#: ../src/dialogs/clonetiler.cpp:2484 +#: ../src/dialogs/clonetiler.cpp:2492 msgid "For each clone, pick a value from the drawing in that clone's location and apply it to the clone" msgstr "Pour chaque clone, capturer une valeur du dessin Γ l’emplacement du clone et l’appliquer au clone" -#: ../src/dialogs/clonetiler.cpp:2498 +#: ../src/dialogs/clonetiler.cpp:2506 msgid "1. Pick from the drawing:" msgstr "1. Capturer depuis le dessinΒ :" -#: ../src/dialogs/clonetiler.cpp:2510 +#: ../src/dialogs/clonetiler.cpp:2518 msgid "Pick the visible color and opacity" msgstr "Capturer la couleur et l’opacitΓ© visibles" -#: ../src/dialogs/clonetiler.cpp:2517 -#: ../src/dialogs/clonetiler.cpp:2658 +#: ../src/dialogs/clonetiler.cpp:2525 +#: ../src/dialogs/clonetiler.cpp:2666 #: ../src/extension/internal/bitmap/opacity.cpp:37 -#: ../src/widgets/toolbox.cpp:4583 +#: ../src/widgets/toolbox.cpp:4601 #: ../share/extensions/interp_att_g.inx.h:14 msgid "Opacity" msgstr "OpacitΓ©" -#: ../src/dialogs/clonetiler.cpp:2518 +#: ../src/dialogs/clonetiler.cpp:2526 msgid "Pick the total accumulated opacity" msgstr "Capturer l’opacitΓ© cumulΓ©e" # Red (in RGB) -#: ../src/dialogs/clonetiler.cpp:2525 +#: ../src/dialogs/clonetiler.cpp:2533 msgid "R" msgstr "R" -#: ../src/dialogs/clonetiler.cpp:2526 +#: ../src/dialogs/clonetiler.cpp:2534 msgid "Pick the Red component of the color" msgstr "Capturer la composante Rouge de la couleur" # Green (in RGB) -#: ../src/dialogs/clonetiler.cpp:2533 +#: ../src/dialogs/clonetiler.cpp:2541 msgid "G" msgstr "V" -#: ../src/dialogs/clonetiler.cpp:2534 +#: ../src/dialogs/clonetiler.cpp:2542 msgid "Pick the Green component of the color" msgstr "Capturer la composante Verte de la couleur" # Blue (in RGB) -#: ../src/dialogs/clonetiler.cpp:2541 +#: ../src/dialogs/clonetiler.cpp:2549 msgid "B" msgstr "B" -#: ../src/dialogs/clonetiler.cpp:2542 +#: ../src/dialogs/clonetiler.cpp:2550 msgid "Pick the Blue component of the color" msgstr "Capturer la composante Bleue de la couleur" -#: ../src/dialogs/clonetiler.cpp:2549 +#: ../src/dialogs/clonetiler.cpp:2557 msgctxt "Clonetiler color hue" msgid "H" msgstr "T" -#: ../src/dialogs/clonetiler.cpp:2550 +#: ../src/dialogs/clonetiler.cpp:2558 msgid "Pick the hue of the color" msgstr "Capturer la teinte de la couleur" # Saturation (in HSL) -#: ../src/dialogs/clonetiler.cpp:2557 +#: ../src/dialogs/clonetiler.cpp:2565 msgctxt "Clonetiler color saturation" msgid "S" msgstr "S" -#: ../src/dialogs/clonetiler.cpp:2558 +#: ../src/dialogs/clonetiler.cpp:2566 msgid "Pick the saturation of the color" msgstr "Capturer la saturation de la couleur" # Luminosity (in HSL) -#: ../src/dialogs/clonetiler.cpp:2565 +#: ../src/dialogs/clonetiler.cpp:2573 msgctxt "Clonetiler color lightness" msgid "L" msgstr "L" -#: ../src/dialogs/clonetiler.cpp:2566 +#: ../src/dialogs/clonetiler.cpp:2574 msgid "Pick the lightness of the color" msgstr "Capturer la luminositΓ© de la couleur" -#: ../src/dialogs/clonetiler.cpp:2576 +#: ../src/dialogs/clonetiler.cpp:2584 msgid "2. Tweak the picked value:" msgstr "2. Modifier la valeur capturΓ©e" -#: ../src/dialogs/clonetiler.cpp:2586 +#: ../src/dialogs/clonetiler.cpp:2594 msgid "Gamma-correct:" msgstr "Corriger le Gamma" -#: ../src/dialogs/clonetiler.cpp:2590 +#: ../src/dialogs/clonetiler.cpp:2598 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" msgstr "DΓ©caler le milieu de la valeur capturΓ©e vers le haut (>0) ou vers le bas (<0)" -#: ../src/dialogs/clonetiler.cpp:2597 +#: ../src/dialogs/clonetiler.cpp:2605 msgid "Randomize:" msgstr "HasardΒ :" -#: ../src/dialogs/clonetiler.cpp:2601 +#: ../src/dialogs/clonetiler.cpp:2609 msgid "Randomize the picked value by this percentage" msgstr "Introduire ce pourcentage de hasard dans la capture de la valeur" -#: ../src/dialogs/clonetiler.cpp:2608 +#: ../src/dialogs/clonetiler.cpp:2616 msgid "Invert:" msgstr "InverserΒ :" -#: ../src/dialogs/clonetiler.cpp:2612 +#: ../src/dialogs/clonetiler.cpp:2620 msgid "Invert the picked value" msgstr "Inverser la valeur capturΓ©e" -#: ../src/dialogs/clonetiler.cpp:2618 +#: ../src/dialogs/clonetiler.cpp:2626 msgid "3. Apply the value to the clones':" msgstr "3. Appliquer la valeur aux clonesΒ :" -#: ../src/dialogs/clonetiler.cpp:2628 +#: ../src/dialogs/clonetiler.cpp:2636 msgid "Presence" msgstr "PrΓ©sence" -#: ../src/dialogs/clonetiler.cpp:2631 +#: ../src/dialogs/clonetiler.cpp:2639 msgid "Each clone is created with the probability determined by the picked value in that point" msgstr "Chaque clone est créé selon une probabilitΓ© dΓ©terminΓ©e par la valeur capturΓ©e en ce point" -#: ../src/dialogs/clonetiler.cpp:2638 +#: ../src/dialogs/clonetiler.cpp:2646 msgid "Size" msgstr "Dimensions" -#: ../src/dialogs/clonetiler.cpp:2641 +#: ../src/dialogs/clonetiler.cpp:2649 msgid "Each clone's size is determined by the picked value in that point" msgstr "Les dimensions de chaque clone sont dΓ©terminΓ©es selon la valeur capturΓ©e en ce point " -#: ../src/dialogs/clonetiler.cpp:2651 +#: ../src/dialogs/clonetiler.cpp:2659 msgid "Each clone is painted by the picked color (the original must have unset fill or stroke)" msgstr "Chaque clone est peint selon la couleur capturΓ©e (l’original doit avoir un remplissage ou un contour indΓ©fini)" -#: ../src/dialogs/clonetiler.cpp:2661 +#: ../src/dialogs/clonetiler.cpp:2669 msgid "Each clone's opacity is determined by the picked value in that point" msgstr "L’opacitΓ© de chaque clone est dΓ©terminΓ©e par la valeur capturΓ©e en ce point" -#: ../src/dialogs/clonetiler.cpp:2688 +#: ../src/dialogs/clonetiler.cpp:2696 msgid "How many rows in the tiling" msgstr "Nombre de lignes du pavage" -#: ../src/dialogs/clonetiler.cpp:2708 +#: ../src/dialogs/clonetiler.cpp:2716 msgid "How many columns in the tiling" msgstr "Nombre de colonnes du pavage" -#: ../src/dialogs/clonetiler.cpp:2738 +#: ../src/dialogs/clonetiler.cpp:2746 msgid "Width of the rectangle to be filled" msgstr "Largeur du rectangle Γ remplir" -#: ../src/dialogs/clonetiler.cpp:2763 +#: ../src/dialogs/clonetiler.cpp:2771 msgid "Height of the rectangle to be filled" msgstr "Hauteur du rectangle Γ remplir" -#: ../src/dialogs/clonetiler.cpp:2778 +#: ../src/dialogs/clonetiler.cpp:2786 msgid "Rows, columns: " msgstr "Lignes, colonnesΒ :" -#: ../src/dialogs/clonetiler.cpp:2779 +#: ../src/dialogs/clonetiler.cpp:2787 msgid "Create the specified number of rows and columns" msgstr "CrΓ©er le nombre spΓ©cifiΓ© de lignes et de colonnes" -#: ../src/dialogs/clonetiler.cpp:2788 +#: ../src/dialogs/clonetiler.cpp:2796 msgid "Width, height: " msgstr "Largeur, hauteurΒ :" -#: ../src/dialogs/clonetiler.cpp:2789 +#: ../src/dialogs/clonetiler.cpp:2797 msgid "Fill the specified width and height with the tiling" msgstr "Remplir avec le pavage selon la hauteur et la largeur spΓ©cifiΓ©es" -#: ../src/dialogs/clonetiler.cpp:2805 +#: ../src/dialogs/clonetiler.cpp:2813 msgid "Use saved size and position of the tile" msgstr "Utiliser les dimensions et position enregistrΓ©es du pavage" -#: ../src/dialogs/clonetiler.cpp:2808 +#: ../src/dialogs/clonetiler.cpp:2816 msgid "Pretend that the size and position of the tile are the same as the last time you tiled it (if any), instead of using the current size" msgstr "Utiliser les mΓmes dimensions et position de pavΓ©s que lors du pavage prΓ©cΓ©dent (si possible), au lieu d’utiliser les paramΓ¨tres courants" -#: ../src/dialogs/clonetiler.cpp:2832 +#: ../src/dialogs/clonetiler.cpp:2840 msgid " <b>_Create</b> " msgstr " <b>_CrΓ©er</b> " -#: ../src/dialogs/clonetiler.cpp:2834 +#: ../src/dialogs/clonetiler.cpp:2842 msgid "Create and tile the clones of the selection" msgstr "CrΓ©er des clones et paver la sΓ©lection avec" @@ -4470,28 +4504,28 @@ msgstr "CrΓ©er des clones et paver la sΓ©lection avec" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/dialogs/clonetiler.cpp:2849 +#: ../src/dialogs/clonetiler.cpp:2857 msgid " _Unclump " msgstr "Γ‰_parpiller" -#: ../src/dialogs/clonetiler.cpp:2850 +#: ../src/dialogs/clonetiler.cpp:2858 msgid "Spread out clones to reduce clumping; can be applied repeatedly" msgstr "Disperser les clones de faΓ§on Γ reduire le rassemblement; peut Γtre appliquΓ© plusieurs fois" -#: ../src/dialogs/clonetiler.cpp:2856 +#: ../src/dialogs/clonetiler.cpp:2864 msgid " Re_move " msgstr "_Supprimer" -#: ../src/dialogs/clonetiler.cpp:2857 +#: ../src/dialogs/clonetiler.cpp:2865 msgid "Remove existing tiled clones of the selected object (siblings only)" msgstr "Retirer les clones de pavage de l’objet sΓ©lectionnΓ© (seulement les « enfants de mΓmes parentsΒ Β»)" -#: ../src/dialogs/clonetiler.cpp:2873 +#: ../src/dialogs/clonetiler.cpp:2881 msgid " R_eset " msgstr " R-Γ -_z" #. TRANSLATORS: "change" is a noun here -#: ../src/dialogs/clonetiler.cpp:2875 +#: ../src/dialogs/clonetiler.cpp:2883 msgid "Reset all shifts, scales, rotates, opacity and color changes in the dialog to zero" msgstr "Remise Γ zΓ©ro de tous les dΓ©calages, redimensionnements, rotation et opacitΓ©s dans la boΓ®te de dialogue" @@ -4577,8 +4611,8 @@ msgid "_Height:" msgstr "_HauteurΒ :" #: ../src/dialogs/export.cpp:512 -#: ../src/ui/dialog/inkscape-preferences.cpp:836 -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "dpi" msgstr "ppp" @@ -4758,7 +4792,7 @@ msgstr "Rechercher les chemins, lignes, polylignes" #: ../src/dialogs/find.cpp:604 #: ../src/ui/dialog/find.cpp:78 -#: ../src/widgets/toolbox.cpp:2335 +#: ../src/widgets/toolbox.cpp:2340 msgid "Paths" msgstr "Chemins" @@ -5107,10 +5141,10 @@ msgstr "YΒ :" #: ../src/extension/internal/bitmap/sample.cpp:40 #: ../src/extension/internal/bluredge.cpp:136 #: ../src/extension/internal/filter/abc.h:574 -#: ../src/widgets/toolbox.cpp:4377 -#: ../src/widgets/toolbox.cpp:4691 -#: ../src/widgets/toolbox.cpp:5186 -#: ../src/widgets/toolbox.cpp:6248 +#: ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 +#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:6266 #: ../share/extensions/foldablebox.inx.h:9 msgid "Width:" msgstr "Γ‰paisseurΒ :" @@ -5242,12 +5276,12 @@ msgid "Justify lines" msgstr "Justifier les lignes" #: ../src/dialogs/text-edit.cpp:304 -#: ../src/widgets/toolbox.cpp:7737 +#: ../src/widgets/toolbox.cpp:7755 msgid "Horizontal text" msgstr "Texte horizontal" #: ../src/dialogs/text-edit.cpp:318 -#: ../src/widgets/toolbox.cpp:7744 +#: ../src/widgets/toolbox.cpp:7762 msgid "Vertical text" msgstr "Texte vertical" @@ -5255,17 +5289,16 @@ msgstr "Texte vertical" msgid "Line spacing:" msgstr "Espacement entre les lignesΒ :" -#: ../src/dialogs/text-edit.cpp:407 +#: ../src/dialogs/text-edit.cpp:389 #: ../src/menus-skeleton.h:237 msgid "_Text" msgstr "_Texte" -#: ../src/dialogs/text-edit.cpp:454 -#, fuzzy +#: ../src/dialogs/text-edit.cpp:436 msgid "Set as _default" -msgstr "Enregistrer comme valeur par dΓ©faut" +msgstr "DΓ©finir comme valeur par _dΓ©faut" -#: ../src/dialogs/text-edit.cpp:713 +#: ../src/dialogs/text-edit.cpp:695 #: ../src/text-context.cpp:1518 msgid "Set text style" msgstr "Appliquer un style Γ un texte" @@ -5276,9 +5309,9 @@ msgstr "Appliquer un style Γ un texte" #. * text has been entered) to get a preview of the font. Choose #. * some representative characters that users of your locale will be #. * interested in. -#: ../src/dialogs/text-edit.cpp:750 -#: ../src/dialogs/text-edit.cpp:896 -#: ../src/dialogs/text-edit.cpp:949 +#: ../src/dialogs/text-edit.cpp:732 +#: ../src/dialogs/text-edit.cpp:868 +#: ../src/dialogs/text-edit.cpp:921 msgid "AaBbCcIiPpQq12369$€¢?.;/()" msgstr "AaBbCcIiPpQq12369$€¢?.;/()" @@ -5348,8 +5381,8 @@ msgstr "Nom de l’attribut" #. TRANSLATORS: "Set" is a verb here #: ../src/dialogs/xml-tree.cpp:524 -#: ../src/widgets/sp-attribute-widget.cpp:159 -#: ../src/widgets/sp-attribute-widget.cpp:765 +#: ../src/widgets/sp-attribute-widget.cpp:157 +#: ../src/widgets/sp-attribute-widget.cpp:759 msgid "Set attribute" msgstr "DΓ©finir l’attribut" @@ -5407,8 +5440,8 @@ msgstr "_Origine XΒ :" #: ../src/display/canvas-axonomgrid.cpp:358 #: ../src/display/canvas-grid.cpp:676 -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "X coordinate of grid origin" msgstr "CoordonnΓ©e X de l’origine de la grille" @@ -5419,8 +5452,8 @@ msgstr "O_rigine YΒ :" #: ../src/display/canvas-axonomgrid.cpp:360 #: ../src/display/canvas-grid.cpp:678 -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Y coordinate of grid origin" msgstr "CoordonnΓ©e Y de l’origine de la grille" @@ -5430,29 +5463,29 @@ msgid "Spacing _Y:" msgstr "Espacement _YΒ :" #: ../src/display/canvas-axonomgrid.cpp:362 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Base length of z-axis" msgstr "Longueur de base de l’axe z" #: ../src/display/canvas-axonomgrid.cpp:364 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 -#: ../src/widgets/toolbox.cpp:3690 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle X:" msgstr "Angle XΒ :" #: ../src/display/canvas-axonomgrid.cpp:364 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 msgid "Angle of x-axis" msgstr "Angle de l’axe x" #: ../src/display/canvas-axonomgrid.cpp:366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 -#: ../src/widgets/toolbox.cpp:3769 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle Z:" msgstr "Angle ZΒ :" #: ../src/display/canvas-axonomgrid.cpp:366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 msgid "Angle of z-axis" msgstr "Angle de l’axe z" @@ -5537,12 +5570,12 @@ msgid "Spacing _X:" msgstr "Espacement _XΒ :" #: ../src/display/canvas-grid.cpp:680 -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Distance between vertical grid lines" msgstr "Distance entre les lignes verticales de la grille" #: ../src/display/canvas-grid.cpp:682 -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 msgid "Distance between horizontal grid lines" msgstr "Distance entre les lignes horizontales de la grille" @@ -5557,8 +5590,8 @@ msgstr "Cocher pour afficher des points sur les points entiers de la grille au l #. TRANSLATORS: undefined target for snapping #: ../src/display/snap-indicator.cpp:70 #: ../src/display/snap-indicator.cpp:73 -#: ../src/display/snap-indicator.cpp:158 #: ../src/display/snap-indicator.cpp:161 +#: ../src/display/snap-indicator.cpp:164 msgid "UNDEFINED" msgstr "INDΓ‰FINI" @@ -5655,88 +5688,92 @@ msgid "corner" msgstr "coin" #: ../src/display/snap-indicator.cpp:145 +msgid "text anchor" +msgstr "ancre de texte" + +#: ../src/display/snap-indicator.cpp:148 msgid "text baseline" msgstr "ligne de base de texte" -#: ../src/display/snap-indicator.cpp:148 +#: ../src/display/snap-indicator.cpp:151 msgid "constrained angle" msgstr "angle contraint" -#: ../src/display/snap-indicator.cpp:151 +#: ../src/display/snap-indicator.cpp:154 msgid "constraint" msgstr "Contrainte" -#: ../src/display/snap-indicator.cpp:164 +#: ../src/display/snap-indicator.cpp:167 msgid "Bounding box corner" msgstr "Coin de boΓ®te englobante" -#: ../src/display/snap-indicator.cpp:167 +#: ../src/display/snap-indicator.cpp:170 msgid "Bounding box midpoint" msgstr "Centre de boΓ®te englobante" -#: ../src/display/snap-indicator.cpp:170 +#: ../src/display/snap-indicator.cpp:173 msgid "Bounding box side midpoint" msgstr "Milieu de bord de boΓ®te englobante" -#: ../src/display/snap-indicator.cpp:173 +#: ../src/display/snap-indicator.cpp:176 #: ../src/ui/tool/node.cpp:1231 msgid "Smooth node" msgstr "NΕ“uds doux" -#: ../src/display/snap-indicator.cpp:176 +#: ../src/display/snap-indicator.cpp:179 #: ../src/ui/tool/node.cpp:1230 msgid "Cusp node" msgstr "Point de rebroussement" -#: ../src/display/snap-indicator.cpp:179 +#: ../src/display/snap-indicator.cpp:182 msgid "Line midpoint" msgstr "Milieu de ligne" -#: ../src/display/snap-indicator.cpp:182 +#: ../src/display/snap-indicator.cpp:185 msgid "Object midpoint" msgstr "Centre d’objet" -#: ../src/display/snap-indicator.cpp:185 +#: ../src/display/snap-indicator.cpp:188 msgid "Object rotation center" msgstr "Centre de rotation d’objet" -#: ../src/display/snap-indicator.cpp:189 +#: ../src/display/snap-indicator.cpp:192 msgid "Handle" msgstr "PoignΓ©e" -#: ../src/display/snap-indicator.cpp:192 +#: ../src/display/snap-indicator.cpp:195 msgid "Path intersection" msgstr "Intersections de chemin" -#: ../src/display/snap-indicator.cpp:195 +#: ../src/display/snap-indicator.cpp:198 msgid "Guide" msgstr "Guide" -#: ../src/display/snap-indicator.cpp:198 +#: ../src/display/snap-indicator.cpp:201 msgid "Guide origin" msgstr "Origine du guide" -#: ../src/display/snap-indicator.cpp:201 +#: ../src/display/snap-indicator.cpp:204 msgid "Convex hull corner" msgstr "Coin de l’enveloppe convexe" -#: ../src/display/snap-indicator.cpp:204 +#: ../src/display/snap-indicator.cpp:207 msgid "Quadrant point" msgstr "Point de quadrant" -#: ../src/display/snap-indicator.cpp:207 +#: ../src/display/snap-indicator.cpp:210 msgid "Corner" msgstr "Coin" -#: ../src/display/snap-indicator.cpp:210 -msgid "Text baseline" -msgstr "Ligne de base de texte" - #: ../src/display/snap-indicator.cpp:213 +msgid "Text anchor" +msgstr "Ancre de texte" + +#: ../src/display/snap-indicator.cpp:216 msgid "Multiple of grid spacing" msgstr "Multiple d’espacement de grille" -#: ../src/display/snap-indicator.cpp:244 +#: ../src/display/snap-indicator.cpp:247 msgid " to " msgstr " Γ " @@ -5976,7 +6013,7 @@ msgstr "DΓ©sactivΓ©e" msgid "Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension." msgstr "Aucune aide n’est actuellement disponible pour cette extension. Veuillez vous rΓ©fΓ©rer au site internet d’Inkscape ou aux listes de diffusion pour toute question relative Γ celle-ci." -#: ../src/extension/implementation/script.cpp:989 +#: ../src/extension/implementation/script.cpp:990 msgid "Inkscape has received additional data from the script executed. The script did not return an error, but this may indicate the results will not be as expected." msgstr "Inkscape a reΓ§u des donnΓ©es additionnelles du script exΓ©cutΓ©. Le script n’a pas retournΓ© d’erreur, mais ceci peut indiquer que les rΓ©sultats ne sont pas ceux attendus." @@ -5998,7 +6035,7 @@ msgstr "Seuil adaptatif" #: ../src/extension/internal/bitmap/adaptiveThreshold.cpp:42 #: ../src/extension/internal/filter/color.h:540 #: ../src/extension/internal/filter/experimental.h:355 -#: ../src/widgets/gradient-vector.cpp:825 +#: ../src/widgets/gradient-vector.cpp:824 #: ../share/extensions/printing-marks.inx.h:9 msgid "Offset:" msgstr "DΓ©calageΒ :" @@ -6193,7 +6230,7 @@ msgstr "Cycle des couleurs" #: ../src/extension/internal/bitmap/cycleColormap.cpp:38 #: ../src/extension/internal/bitmap/spread.cpp:38 #: ../src/extension/internal/bitmap/unsharpmask.cpp:44 -#: ../src/widgets/toolbox.cpp:4783 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount:" msgstr "Quantité :" @@ -6353,7 +6390,7 @@ msgstr "Styliser les bitmaps sΓ©lectionnΓ©s en leur donnant l’apparence d’un #: ../src/extension/internal/bitmap/opacity.cpp:39 #: ../src/ui/dialog/filter-effects-dialog.cpp:2240 -#: ../src/widgets/toolbox.cpp:5778 +#: ../src/widgets/toolbox.cpp:5796 msgid "Opacity:" msgstr "Opacité :" @@ -6451,11 +6488,11 @@ msgstr "Seuil" #: ../src/extension/internal/bitmap/threshold.cpp:39 #: ../src/extension/internal/bitmap/unsharpmask.cpp:45 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 #: ../src/ui/dialog/tracedialog.cpp:420 #: ../src/ui/dialog/tracedialog.cpp:453 #: ../src/ui/dialog/tracedialog.cpp:596 -#: ../src/widgets/toolbox.cpp:8521 +#: ../src/widgets/toolbox.cpp:8539 msgid "Threshold:" msgstr "SeuilΒ :" @@ -6700,7 +6737,7 @@ msgstr "Flou verticalΒ :" #: ../src/extension/internal/filter/morphology.h:61 #: ../src/extension/internal/filter/shadows.h:76 #: ../src/extension/internal/filter/snow.h:38 -#: ../src/ui/dialog/inkscape-preferences.cpp:801 +#: ../src/ui/dialog/inkscape-preferences.cpp:802 msgid "Filters" msgstr "Filtres" @@ -6792,9 +6829,8 @@ msgstr "Azimut (Β°)Β :" #: ../src/extension/internal/filter/abc.h:240 #: ../src/extension/internal/filter/abc.h:378 #: ../src/extension/internal/filter/abc.h:818 -#, fuzzy -msgid "Lightning color" -msgstr "Couleur d’emp_haseΒ :" +msgid "Lighting color" +msgstr "Couleur d'Γ©clairageΒ :" #: ../src/extension/internal/filter/abc.h:311 msgid "Feather, custom (ABCs)" @@ -6919,9 +6955,8 @@ msgid "Lightness:" msgstr "Luminosité :" #: ../src/extension/internal/filter/color.h:75 -#, fuzzy msgid "Brightness filter" -msgstr "Niveaux de luminositΓ©" +msgstr "Filtre de luminositΓ©" #: ../src/extension/internal/filter/color.h:130 msgid "Colorize, custom (Color)" @@ -6957,7 +6992,7 @@ msgstr "Produit" #: ../src/extension/internal/filter/color.h:784 #: ../src/extension/internal/filter/color.h:797 #: ../src/filter-enums.cpp:51 -#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:597 msgid "Normal" msgstr "Normal" @@ -7105,9 +7140,8 @@ msgid "Lightness, custom (Color)" msgstr "ClartΓ©, paramΓ©trable (Couleur)" #: ../src/extension/internal/filter/color.h:538 -#, fuzzy msgid "Lights:" -msgstr "DroitsΒ :" +msgstr "LumiΓ¨resΒ :" #: ../src/extension/internal/filter/color.h:539 msgid "Shadows:" @@ -7273,7 +7307,7 @@ msgid "Clean-up:" msgstr "NettoyageΒ :" #: ../src/extension/internal/filter/experimental.h:237 -#: ../src/widgets/toolbox.cpp:8348 +#: ../src/widgets/toolbox.cpp:8366 msgid "Length:" msgstr "LongueurΒ :" @@ -7435,11 +7469,11 @@ msgstr "Ombre portΓ©e, paramΓ©trable (Ombres et lueurs)" #: ../share/extensions/dots.inx.h:5 #: ../share/extensions/dxf_input.inx.h:15 #: ../share/extensions/dxf_outlines.inx.h:9 -#: ../share/extensions/gcodetools_all_in_one.inx.h:33 -#: ../share/extensions/gcodetools_area.inx.h:22 -#: ../share/extensions/gcodetools_engraving.inx.h:16 -#: ../share/extensions/gcodetools_lathe.inx.h:22 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 +#: ../share/extensions/gcodetools_area.inx.h:34 +#: ../share/extensions/gcodetools_engraving.inx.h:21 +#: ../share/extensions/gcodetools_graffiti.inx.h:24 +#: ../share/extensions/gcodetools_lathe.inx.h:32 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 #: ../share/extensions/generate_voronoi.inx.h:7 #: ../share/extensions/gimp_xcf.inx.h:4 #: ../share/extensions/interp_att_g.inx.h:15 @@ -7580,9 +7614,9 @@ msgid "Render" msgstr "Rendu" #: ../src/extension/internal/grid.cpp:211 -#: ../src/ui/dialog/document-properties.cpp:120 -#: ../src/ui/dialog/inkscape-preferences.cpp:1082 -#: ../src/widgets/toolbox.cpp:2415 +#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/inkscape-preferences.cpp:1083 +#: ../src/widgets/toolbox.cpp:2430 msgid "Grids" msgstr "Grilles" @@ -8084,7 +8118,7 @@ msgstr "Luminance vers opacitΓ©" #. File #: ../src/filter-enums.cpp:70 -#: ../src/interface.cpp:852 +#: ../src/interface.cpp:848 #: ../src/verbs.cpp:2244 #: ../share/extensions/jessyInk_mouseHandler.inx.h:1 #: ../share/extensions/jessyInk_transitions.inx.h:2 @@ -8139,19 +8173,24 @@ msgstr "Retour Γ la ligne" #: ../src/filter-enums.cpp:94 #: ../src/live_effects/lpe-ruler.cpp:34 -#: ../src/ui/dialog/document-properties.cpp:327 #: ../src/ui/dialog/filter-effects-dialog.cpp:477 -#: ../src/ui/dialog/inkscape-preferences.cpp:267 -#: ../src/ui/dialog/inkscape-preferences.cpp:433 -#: ../src/ui/dialog/inkscape-preferences.cpp:595 -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 -#: ../src/ui/dialog/inkscape-preferences.cpp:1297 +#: ../src/ui/dialog/inkscape-preferences.cpp:268 +#: ../src/ui/dialog/inkscape-preferences.cpp:434 +#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 #: ../src/ui/dialog/input.cpp:607 #: ../src/ui/dialog/input.cpp:608 #: ../src/ui/dialog/input.cpp:1269 #: ../src/verbs.cpp:2241 #: ../src/widgets/stroke-style.cpp:366 -#: ../src/widgets/toolbox.cpp:4153 +#: ../src/widgets/toolbox.cpp:4171 +#: ../share/extensions/gcodetools_area.inx.h:32 +#: ../share/extensions/gcodetools_dxf_points.inx.h:15 +#: ../share/extensions/gcodetools_engraving.inx.h:19 +#: ../share/extensions/gcodetools_graffiti.inx.h:22 +#: ../share/extensions/gcodetools_lathe.inx.h:29 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 #: ../share/extensions/grid_polar.inx.h:18 #: ../share/extensions/guides_creator.inx.h:15 #: ../share/extensions/scour.inx.h:16 @@ -8160,7 +8199,7 @@ msgstr "Aucun" #: ../src/filter-enums.cpp:100 #: ../src/flood-context.cpp:241 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:403 #: ../src/widgets/sp-color-scales.cpp:404 msgid "Red" @@ -8168,7 +8207,7 @@ msgstr "Rouge" #: ../src/filter-enums.cpp:101 #: ../src/flood-context.cpp:242 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:406 #: ../src/widgets/sp-color-scales.cpp:407 msgid "Green" @@ -8176,7 +8215,7 @@ msgstr "Vert" #: ../src/filter-enums.cpp:102 #: ../src/flood-context.cpp:243 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:409 #: ../src/widgets/sp-color-scales.cpp:410 msgid "Blue" @@ -8216,31 +8255,31 @@ msgid "Visible Colors" msgstr "Couleurs visibles" #: ../src/flood-context.cpp:244 -#: ../src/widgets/sp-color-icc-selector.cpp:229 #: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:429 #: ../src/widgets/sp-color-scales.cpp:430 -#: ../src/widgets/toolbox.cpp:4535 +#: ../src/widgets/toolbox.cpp:4553 #: ../share/extensions/color_randomize.inx.h:4 msgid "Hue" msgstr "Teinte" #: ../src/flood-context.cpp:245 -#: ../src/ui/dialog/inkscape-preferences.cpp:898 -#: ../src/widgets/sp-color-icc-selector.cpp:229 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 #: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:432 #: ../src/widgets/sp-color-scales.cpp:433 -#: ../src/widgets/toolbox.cpp:4551 +#: ../src/widgets/toolbox.cpp:4569 #: ../share/extensions/color_randomize.inx.h:8 msgid "Saturation" msgstr "Saturation" #: ../src/flood-context.cpp:246 -#: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:435 #: ../src/widgets/sp-color-scales.cpp:436 -#: ../src/widgets/toolbox.cpp:4567 +#: ../src/widgets/toolbox.cpp:4585 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "LuminositΓ©" @@ -8398,7 +8437,7 @@ msgstr[1] "<b>Aucune</b> poignΓ©e sΓ©lectionnΓ©e sur %d dans %d objets sΓ©lectio #: ../src/gradient-context.cpp:390 #: ../src/gradient-context.cpp:483 #: ../src/ui/dialog/swatches.cpp:182 -#: ../src/widgets/gradient-vector.cpp:742 +#: ../src/widgets/gradient-vector.cpp:741 msgid "Add gradient stop" msgstr "Ajouter un stop au dΓ©gradΓ©" @@ -8410,30 +8449,30 @@ msgstr "Simplifier le dΓ©gradΓ©" msgid "Create default gradient" msgstr "CrΓ©er un dΓ©gradΓ© par dΓ©faut" -#: ../src/gradient-context.cpp:590 +#: ../src/gradient-context.cpp:592 msgid "<b>Draw around</b> handles to select them" msgstr "<b>Dessiner autour</b> des poignΓ©es pour les sΓ©lectionner" -#: ../src/gradient-context.cpp:699 +#: ../src/gradient-context.cpp:701 msgid "<b>Ctrl</b>: snap gradient angle" msgstr "<b>Ctrl</b>Β : pour forcer la modification de l’inclinaison du dΓ©gradΓ© par incrΓ©ments" -#: ../src/gradient-context.cpp:700 +#: ../src/gradient-context.cpp:702 msgid "<b>Shift</b>: draw gradient around the starting point" msgstr "<b>Maj</b>Β : pour dessiner le dΓ©gradΓ© autour du point de dΓ©part" -#: ../src/gradient-context.cpp:820 +#: ../src/gradient-context.cpp:822 msgid "Invert gradient" msgstr "Inverser le dΓ©gradΓ©" -#: ../src/gradient-context.cpp:937 +#: ../src/gradient-context.cpp:939 #, c-format msgid "<b>Gradient</b> for %d object; with <b>Ctrl</b> to snap angle" msgid_plural "<b>Gradient</b> for %d objects; with <b>Ctrl</b> to snap angle" msgstr[0] "<b>DΓ©gradΓ©</b> appliquΓ© Γ %d objet; dΓ©placer avec <b>Ctrl</b> pour forcer la modification de l’inclinaison par incrΓ©ments" msgstr[1] "<b>DΓ©gradΓ©</b> appliquΓ© Γ %d objets; dΓ©placer avec <b>Ctrl</b> pour forcer la modification de l’inclinaison par incrΓ©ments" -#: ../src/gradient-context.cpp:941 +#: ../src/gradient-context.cpp:943 msgid "Select <b>objects</b> on which to create gradient." msgstr "SΓ©lectionner des <b>objets</b> auxquels appliquer un dΓ©gradΓ©." @@ -8446,7 +8485,7 @@ msgid "Move gradient handle" msgstr "DΓ©placer la poignΓ©e de dΓ©gradΓ©" #: ../src/gradient-drag.cpp:988 -#: ../src/widgets/gradient-vector.cpp:773 +#: ../src/widgets/gradient-vector.cpp:772 msgid "Delete gradient stop" msgstr "Supprimer un stop de dΓ©gradΓ©" @@ -8496,11 +8535,11 @@ msgstr "UnitΓ©" #. Add the units menu. #: ../src/helper/units.cpp:37 -#: ../src/widgets/select-toolbar.cpp:514 +#: ../src/widgets/select-toolbar.cpp:521 #: ../src/widgets/toolbox.cpp:1597 -#: ../src/widgets/toolbox.cpp:3420 -#: ../src/widgets/toolbox.cpp:6138 -#: ../src/widgets/toolbox.cpp:8540 +#: ../src/widgets/toolbox.cpp:3438 +#: ../src/widgets/toolbox.cpp:6156 +#: ../src/widgets/toolbox.cpp:8558 #: ../share/extensions/dxf_outlines.inx.h:10 msgid "Units" msgstr "UnitΓ©s" @@ -8566,7 +8605,7 @@ msgid "Percent" msgstr "Pourcent" #: ../src/helper/units.cpp:42 -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "%" msgstr "%" @@ -8582,6 +8621,13 @@ msgstr "MillimΓ¨tre" #: ../src/ui/widget/selected-style.cpp:298 #: ../share/extensions/dxf_outlines.inx.h:15 #: ../share/extensions/gears.inx.h:9 +#: ../share/extensions/gcodetools_area.inx.h:55 +#: ../share/extensions/gcodetools_dxf_points.inx.h:24 +#: ../share/extensions/gcodetools_engraving.inx.h:33 +#: ../share/extensions/gcodetools_graffiti.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:48 +#: ../share/extensions/gcodetools_orientation_points.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:37 msgid "mm" msgstr "mm" @@ -8623,6 +8669,13 @@ msgstr "Pouce" #: ../src/helper/units.cpp:46 #: ../share/extensions/dxf_outlines.inx.h:13 #: ../share/extensions/gears.inx.h:8 +#: ../share/extensions/gcodetools_area.inx.h:52 +#: ../share/extensions/gcodetools_dxf_points.inx.h:23 +#: ../share/extensions/gcodetools_engraving.inx.h:32 +#: ../share/extensions/gcodetools_graffiti.inx.h:42 +#: ../share/extensions/gcodetools_lathe.inx.h:47 +#: ../share/extensions/gcodetools_orientation_points.inx.h:13 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:36 msgid "in" msgstr "in" @@ -8707,121 +8760,121 @@ msgstr "Les enregistrements automatiques des documents suivants ont Γ©choué :\ #. sp_ui_menu_append_check_item_from_verb(m, view, _("_Menu"), _("Show or hide the menu bar"), "menu", #. checkitem_toggled, checkitem_update, 0); -#: ../src/interface.cpp:830 +#: ../src/interface.cpp:826 msgid "_Commands Bar" msgstr "Barre des _commandes" -#: ../src/interface.cpp:830 +#: ../src/interface.cpp:826 msgid "Show or hide the Commands bar (under the menu)" msgstr "Afficher ou non la barre des commandes (sous le menu)" -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:828 msgid "Sn_ap Controls Bar" msgstr "Barre des contrΓ΄les du m_agnΓ©tisme" -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:828 msgid "Show or hide the snapping controls" msgstr "Afficher ou non la barre des contrΓ΄les du magnΓ©tisme" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:830 msgid "T_ool Controls Bar" msgstr "Barre des contrΓ΄les d’_outils" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:830 msgid "Show or hide the Tool Controls bar" msgstr "Afficher ou non la barre des contrΓ΄les d’outils" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:832 msgid "_Toolbox" msgstr "BoΓ®te Γ _outils" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:832 msgid "Show or hide the main toolbox (on the left)" msgstr "Afficher ou non la boΓ®te Γ outils principale (Γ gauche)" -#: ../src/interface.cpp:842 +#: ../src/interface.cpp:838 msgid "_Palette" msgstr "_Palette" -#: ../src/interface.cpp:842 +#: ../src/interface.cpp:838 msgid "Show or hide the color palette" msgstr "Afficher ou non la palette de couleurs" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:840 msgid "_Statusbar" msgstr "Barre d'_Γ©tat" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:840 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "Afficher ou non la barre d’état (en bas de la fenΓtre)" -#: ../src/interface.cpp:852 +#: ../src/interface.cpp:848 msgid "Default interface setup" msgstr "ParamΓ¨tres par dΓ©faut de l’interface" -#: ../src/interface.cpp:853 +#: ../src/interface.cpp:849 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1437 #: ../share/extensions/color_custom.inx.h:10 #: ../share/extensions/markers_strokepaint.inx.h:5 msgid "Custom" msgstr "PersonnalisΓ©e" -#: ../src/interface.cpp:853 +#: ../src/interface.cpp:849 msgid "Set the custom task" msgstr "DΓ©finir une tΓΆche personnalisΓ©e" -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:850 msgid "Wide" msgstr "Large" -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:850 msgid "Setup for widescreen work" msgstr "ParamΓ©trage pour Γ©cran large" -#: ../src/interface.cpp:951 +#: ../src/interface.cpp:947 #, c-format msgid "Verb \"%s\" Unknown" msgstr "Verbe « %sΒ Β» inconnu" -#: ../src/interface.cpp:993 +#: ../src/interface.cpp:989 msgid "Open _Recent" msgstr "Documents _rΓ©cents" #. TRANSLATORS: #%s is the id of the group e.g. <g id="#g7">, not a number. -#: ../src/interface.cpp:1098 +#: ../src/interface.cpp:1094 #, c-format msgid "Enter group #%s" msgstr "Entrer dans le groupe #%s" -#: ../src/interface.cpp:1109 +#: ../src/interface.cpp:1105 msgid "Go to parent" msgstr "SΓ©lectionner le parent" -#: ../src/interface.cpp:1200 -#: ../src/interface.cpp:1286 -#: ../src/interface.cpp:1389 +#: ../src/interface.cpp:1196 +#: ../src/interface.cpp:1282 +#: ../src/interface.cpp:1385 #: ../src/ui/widget/selected-style.cpp:469 msgid "Drop color" msgstr "DΓ©poser la couleur" -#: ../src/interface.cpp:1239 -#: ../src/interface.cpp:1349 +#: ../src/interface.cpp:1235 +#: ../src/interface.cpp:1345 msgid "Drop color on gradient" msgstr "DΓ©poser la couleur dans le dΓ©gradΓ©" -#: ../src/interface.cpp:1402 +#: ../src/interface.cpp:1398 msgid "Could not parse SVG data" msgstr "Impossible de parcourir les donnΓ©es SVG" -#: ../src/interface.cpp:1441 +#: ../src/interface.cpp:1437 msgid "Drop SVG" msgstr "DΓ©poser un SVG" -#: ../src/interface.cpp:1475 +#: ../src/interface.cpp:1471 msgid "Drop bitmap image" msgstr "DΓ©poser une image bitmap" -#: ../src/interface.cpp:1567 +#: ../src/interface.cpp:1563 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">A file named \"%s\" already exists. Do you want to replace it?</span>\n" @@ -8833,7 +8886,7 @@ msgstr "" "\n" "Le fichier existe dΓ©jΓ dans « %sΒ Β». Le remplacer Γ©crase son contenu." -#: ../src/interface.cpp:1574 +#: ../src/interface.cpp:1570 #: ../share/extensions/web-set-att.inx.h:7 #: ../share/extensions/web-transmit-att.inx.h:7 msgid "Replace" @@ -8880,13 +8933,13 @@ msgstr "Style de barre dΓ©tachable" msgid "Dockbar style to show items on it" msgstr "Style de barre d’attache pour l’affichage de ses Γ©lΓ©ments" -#: ../src/libgdl/gdl-dock-item-grip.c:386 -msgid "Iconify" -msgstr "Iconifier" +#: ../src/libgdl/gdl-dock-item-grip.c:379 +msgid "Iconify this dock" +msgstr "Iconifier ce point d’attache" -#: ../src/libgdl/gdl-dock-item-grip.c:388 -msgid "Close" -msgstr "Fermer" +#: ../src/libgdl/gdl-dock-item-grip.c:381 +msgid "Close this dock" +msgstr "Fermer ce point d’attache" #: ../src/libgdl/gdl-dock-item-grip.c:703 #: ../src/libgdl/gdl-dock-tablabel.c:128 @@ -8898,138 +8951,139 @@ msgid "Dockitem which 'owns' this grip" msgstr "Γ‰lΓ©ment d’attache qui « possΓ¨deΒ Β» cette prise" #. Name -#: ../src/libgdl/gdl-dock-item.c:286 -#: ../src/widgets/toolbox.cpp:7749 -#: ../share/extensions/gcodetools_all_in_one.inx.h:34 +#: ../src/libgdl/gdl-dock-item.c:297 +#: ../src/widgets/toolbox.cpp:7767 +#: ../share/extensions/gcodetools_graffiti.inx.h:25 #: ../share/extensions/gcodetools_orientation_points.inx.h:6 msgid "Orientation" msgstr "Orientation" -#: ../src/libgdl/gdl-dock-item.c:287 +#: ../src/libgdl/gdl-dock-item.c:298 msgid "Orientation of the docking item" msgstr "Orientation des Γ©lΓ©ments dΓ©tachables" -#: ../src/libgdl/gdl-dock-item.c:302 +#: ../src/libgdl/gdl-dock-item.c:313 msgid "Resizable" msgstr "Redimensionnable" -#: ../src/libgdl/gdl-dock-item.c:303 -msgid "If set, the dock item can be resized when docked in a panel" +#: ../src/libgdl/gdl-dock-item.c:314 +#, fuzzy +msgid "If set, the dock item can be resized when docked in a GtkPanel widget" msgstr "Si cochΓ©, l’élΓ©ment dΓ©tachable peut Γtre redimensionnΓ© quand il est attachΓ© Γ un panneau" -#: ../src/libgdl/gdl-dock-item.c:310 +#: ../src/libgdl/gdl-dock-item.c:321 msgid "Item behavior" msgstr "Comportement de l’élΓ©ment" -#: ../src/libgdl/gdl-dock-item.c:311 +#: ../src/libgdl/gdl-dock-item.c:322 msgid "General behavior for the dock item (i.e. whether it can float, if it's locked, etc.)" msgstr "Comportement gΓ©nΓ©ral de l’élΓ©ment dΓ©tachable (par ex, s’il peut flotter, s’il est verouillΓ©, etc...)" -#: ../src/libgdl/gdl-dock-item.c:319 -#: ../src/libgdl/gdl-dock-master.c:151 +#: ../src/libgdl/gdl-dock-item.c:330 +#: ../src/libgdl/gdl-dock-master.c:153 msgid "Locked" msgstr "VerrouillΓ©" -#: ../src/libgdl/gdl-dock-item.c:320 +#: ../src/libgdl/gdl-dock-item.c:331 msgid "If set, the dock item cannot be dragged around and it doesn't show a grip" msgstr "Si cochΓ©, l’élΓ©ment dΓ©tachable ne peut pas Γtre dΓ©placΓ© et il n’affiche pas de poignΓ©e" -#: ../src/libgdl/gdl-dock-item.c:328 +#: ../src/libgdl/gdl-dock-item.c:339 msgid "Preferred width" msgstr "Largeur prΓ©fΓ©rΓ©e" -#: ../src/libgdl/gdl-dock-item.c:329 +#: ../src/libgdl/gdl-dock-item.c:340 msgid "Preferred width for the dock item" msgstr "Largeur prΓ©fΓ©rΓ©e pour l’élΓ©ment dΓ©tachable" -#: ../src/libgdl/gdl-dock-item.c:335 +#: ../src/libgdl/gdl-dock-item.c:346 msgid "Preferred height" msgstr "Hauteur prΓ©fΓ©rΓ©e" -#: ../src/libgdl/gdl-dock-item.c:336 +#: ../src/libgdl/gdl-dock-item.c:347 msgid "Preferred height for the dock item" msgstr "Hauteur prΓ©fΓ©rΓ©e pour l’élΓ©ment dΓ©tachable" -#: ../src/libgdl/gdl-dock-item.c:615 +#: ../src/libgdl/gdl-dock-item.c:664 #, c-format msgid "You can't add a dock object (%p of type %s) inside a %s. Use a GdlDock or some other compound dock object." msgstr "Vous ne pouvez pas ajouter d’objet d’attache (%p de type %s) dans un %s. Utilisez un GdlDock ou un autre objet d’attache composite." -#: ../src/libgdl/gdl-dock-item.c:622 +#: ../src/libgdl/gdl-dock-item.c:671 #, c-format msgid "Attempting to add a widget with type %s to a %s, but it can only contain one widget at a time; it already contains a widget of type %s" msgstr "Tentative d’ajout d’un gadget de %s Γ un %s, mais il ne peut contenir qu’un gadget Γ la foisΒ ; il contient dΓ©jΓ un gadget detype %s" -#: ../src/libgdl/gdl-dock-item.c:1346 -#: ../src/libgdl/gdl-dock-item.c:1391 +#: ../src/libgdl/gdl-dock-item.c:1392 +#: ../src/libgdl/gdl-dock-item.c:1442 #, c-format msgid "Unsupported docking strategy %s in dock object of type %s" msgstr "La stratΓ©gie d’attache %s n’est pas supportΓ©e pour l’objet d’attache de type %s" #. UnLock menuitem -#: ../src/libgdl/gdl-dock-item.c:1481 +#: ../src/libgdl/gdl-dock-item.c:1553 msgid "UnLock" msgstr "DΓ©verrouiller" #. Hide menuitem. -#: ../src/libgdl/gdl-dock-item.c:1488 +#: ../src/libgdl/gdl-dock-item.c:1560 msgid "Hide" msgstr "Cacher" #. Lock menuitem -#: ../src/libgdl/gdl-dock-item.c:1493 +#: ../src/libgdl/gdl-dock-item.c:1565 msgid "Lock" msgstr "Verrouiller" -#: ../src/libgdl/gdl-dock-item.c:1728 +#: ../src/libgdl/gdl-dock-item.c:1829 #, c-format msgid "Attempt to bind an unbound item %p" msgstr "Tentative de lier un Γ©lΓ©ment dΓ©liΓ© %p" -#: ../src/libgdl/gdl-dock-master.c:144 +#: ../src/libgdl/gdl-dock-master.c:146 #: ../src/libgdl/gdl-dock.c:183 msgid "Default title" msgstr "Titre par dΓ©faut" -#: ../src/libgdl/gdl-dock-master.c:145 +#: ../src/libgdl/gdl-dock-master.c:147 msgid "Default title for newly created floating docks" msgstr "Titre par dΓ©faut pour les nouveaux points d’attache flottants" -#: ../src/libgdl/gdl-dock-master.c:152 +#: ../src/libgdl/gdl-dock-master.c:154 msgid "If is set to 1, all the dock items bound to the master are locked; if it's 0, all are unlocked; -1 indicates inconsistency among the items" msgstr "Si la valeur est 1, tous les Γ©lΓ©ments dΓ©tachables liΓ©s au maΓ®tre sont verrouillΓ©sΒ ; si la valeur est 0, tous sont dΓ©verrouillΓ©s, -1 indique des Γ©tats hΓ©tΓ©rogΓ¨nes pour les Γ©lΓ©ments" -#: ../src/libgdl/gdl-dock-master.c:160 -#: ../src/libgdl/gdl-switcher.c:702 +#: ../src/libgdl/gdl-dock-master.c:162 +#: ../src/libgdl/gdl-switcher.c:692 msgid "Switcher Style" msgstr "Style de commutation" -#: ../src/libgdl/gdl-dock-master.c:161 -#: ../src/libgdl/gdl-switcher.c:703 +#: ../src/libgdl/gdl-dock-master.c:163 +#: ../src/libgdl/gdl-switcher.c:693 msgid "Switcher buttons style" msgstr "Style des boutons de commutation" -#: ../src/libgdl/gdl-dock-master.c:168 +#: ../src/libgdl/gdl-dock-master.c:170 msgid "Expand direction" msgstr "Direction d’expansion" -#: ../src/libgdl/gdl-dock-master.c:169 +#: ../src/libgdl/gdl-dock-master.c:171 msgid "Allow the master's dock items to expand their container dock objects in the given direction" msgstr "Permet aux Γ©lΓ©ments dΓ©tachables du maΓ®tre d’élargir les objets d’attache qu’ils contiennent dans la direction donnΓ©e" -#: ../src/libgdl/gdl-dock-master.c:805 +#: ../src/libgdl/gdl-dock-master.c:807 #, c-format msgid "master %p: unable to add object %p[%s] to the hash. There already is an item with that name (%p)." msgstr "maΓ®tre %p: impossible d’ajouter l’objet %p[%s] dans la table. Il y a dΓ©jΓ un Γ©lΓ©ment avec ce nom (%p)." -#: ../src/libgdl/gdl-dock-master.c:978 +#: ../src/libgdl/gdl-dock-master.c:979 #, c-format msgid "The new dock controller %p is automatic. Only manual dock objects should be named controller." msgstr "Le nouveau contrΓ΄leur d’attache %p est automatique. Seuls les ojbets d’attache manuels peuvent Γtre nommΓ©s contrΓ΄leurs." #: ../src/libgdl/gdl-dock-notebook.c:134 #: ../src/ui/dialog/align-and-distribute.cpp:1034 -#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/document-properties.cpp:116 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1429 #: ../src/widgets/desktop-widget.cpp:1725 #: ../share/extensions/voronoi2svg.inx.h:8 @@ -9081,22 +9135,22 @@ msgstr "MaΓ®tre d’attache" msgid "Dock master this dock object is bound to" msgstr "MaΓ®tre d’attache auquel cet objet d’attache est liΓ©" -#: ../src/libgdl/gdl-dock-object.c:438 +#: ../src/libgdl/gdl-dock-object.c:462 #, c-format msgid "Call to gdl_dock_object_dock in a dock object %p (object type is %s) which hasn't implemented this method" msgstr "Appel Γ gdl_dock_object_dock dans un objet d’attache %p (le type d’objet est %s) qui n’a pas implΓ©mentΓ© cette mΓ©thode" -#: ../src/libgdl/gdl-dock-object.c:568 +#: ../src/libgdl/gdl-dock-object.c:595 #, c-format msgid "Dock operation requested in a non-bound object %p. The application might crash" msgstr "OpΓ©ration d’attache demandΓ©e sur un ojbet %p non-liΓ©. L’application pourrait planter" -#: ../src/libgdl/gdl-dock-object.c:575 +#: ../src/libgdl/gdl-dock-object.c:602 #, c-format msgid "Cannot dock %p to %p because they belong to different masters" msgstr "Impossible d’attacher %p Γ %p car ils appartiennent Γ des maΓ®tres diffΓ©rents" -#: ../src/libgdl/gdl-dock-object.c:617 +#: ../src/libgdl/gdl-dock-object.c:644 #, c-format msgid "Attempt to bind to %p an already bound dock object %p (current master: %p)" msgstr "Tentative d’attacher Γ %p un objet d’attache %p dΓ©jΓ liΓ© par ailleurs (maΓ®tre actuel: %p)" @@ -9109,88 +9163,90 @@ msgstr "Position" msgid "Position of the divider in pixels" msgstr "Position du diviseur en pixels" -#: ../src/libgdl/gdl-dock-placeholder.c:143 +#: ../src/libgdl/gdl-dock-placeholder.c:144 msgid "Sticky" msgstr "CollΓ©" -#: ../src/libgdl/gdl-dock-placeholder.c:144 +#: ../src/libgdl/gdl-dock-placeholder.c:145 msgid "Whether the placeholder will stick to its host or move up the hierarchy when the host is redocked" msgstr "DΓ©termine si l’élΓ©ment substituable restera attachΓ© Γ son hΓ΄te ou remontera dans la hiΓ©rarchie quand l’hΓ΄te est rΓ©attachΓ©" -#: ../src/libgdl/gdl-dock-placeholder.c:151 +#: ../src/libgdl/gdl-dock-placeholder.c:152 msgid "Host" msgstr "HΓ΄te" -#: ../src/libgdl/gdl-dock-placeholder.c:152 +#: ../src/libgdl/gdl-dock-placeholder.c:153 msgid "The dock object this placeholder is attached to" msgstr "L’objet d’attachement auquel cet Γ©lΓ©ment substituable est attachΓ©" -#: ../src/libgdl/gdl-dock-placeholder.c:159 +#: ../src/libgdl/gdl-dock-placeholder.c:160 msgid "Next placement" msgstr "Placement suivant" -#: ../src/libgdl/gdl-dock-placeholder.c:160 +#: ../src/libgdl/gdl-dock-placeholder.c:161 msgid "The position an item will be docked to our host if a request is made to dock to us" msgstr "La position oΓΉ un Γ©lΓ©ment sera attachΓ© Γ l’hΓ΄te si une demande d’attachement est faite" -#: ../src/libgdl/gdl-dock-placeholder.c:169 +#: ../src/libgdl/gdl-dock-placeholder.c:170 #: ../src/libgdl/gdl-dock.c:190 -#: ../src/widgets/toolbox.cpp:3359 -#: ../src/widgets/toolbox.cpp:4377 -#: ../src/widgets/toolbox.cpp:4691 +#: ../src/widgets/toolbox.cpp:3377 +#: ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 #: ../share/extensions/interp_att_g.inx.h:28 msgid "Width" msgstr "Largeur" -#: ../src/libgdl/gdl-dock-placeholder.c:170 +#: ../src/libgdl/gdl-dock-placeholder.c:171 msgid "Width for the widget when it's attached to the placeholder" msgstr "Largeur du gadget quand il est attachΓ© Γ l’élΓ©ment substituable" -#: ../src/libgdl/gdl-dock-placeholder.c:177 +#: ../src/libgdl/gdl-dock-placeholder.c:178 #: ../src/libgdl/gdl-dock.c:198 -#: ../src/widgets/toolbox.cpp:3376 +#: ../src/widgets/toolbox.cpp:3394 #: ../share/extensions/interp_att_g.inx.h:7 msgid "Height" msgstr "Hauteur" -#: ../src/libgdl/gdl-dock-placeholder.c:178 +#: ../src/libgdl/gdl-dock-placeholder.c:179 msgid "Height for the widget when it's attached to the placeholder" msgstr "Hauteur du gadget quand il est attachΓ© Γ l’élΓ©ment substituable" -#: ../src/libgdl/gdl-dock-placeholder.c:184 +#: ../src/libgdl/gdl-dock-placeholder.c:185 msgid "Floating Toplevel" msgstr "Niveau supΓ©rieur flottant" -#: ../src/libgdl/gdl-dock-placeholder.c:185 +#: ../src/libgdl/gdl-dock-placeholder.c:186 msgid "Whether the placeholder is standing in for a floating toplevel dock" msgstr "DΓ©termine si l’élΓ©ment substituable rΓ©serve la place pour un point d’attache flottant de niveau supΓ©rieur" -#: ../src/libgdl/gdl-dock-placeholder.c:191 +#: ../src/libgdl/gdl-dock-placeholder.c:192 msgid "X-Coordinate" msgstr "CoordonnΓ©e X" -#: ../src/libgdl/gdl-dock-placeholder.c:192 -msgid "X coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:193 +#, fuzzy +msgid "X-Coordinate for dock when floating" msgstr "CoordonnΓ©e X du point d’attache quand il est flottant" -#: ../src/libgdl/gdl-dock-placeholder.c:198 +#: ../src/libgdl/gdl-dock-placeholder.c:199 msgid "Y-Coordinate" msgstr "CoordonnΓ©e Y" -#: ../src/libgdl/gdl-dock-placeholder.c:199 -msgid "Y coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:200 +#, fuzzy +msgid "Y-Coordinate for dock when floating" msgstr "CoordonnΓ©e Y du point d’attache quand il est flottant" -#: ../src/libgdl/gdl-dock-placeholder.c:497 +#: ../src/libgdl/gdl-dock-placeholder.c:498 msgid "Attempt to dock a dock object to an unbound placeholder" msgstr "Tentative d’attachement d’un objet d’attache sur un Γ©lΓ©ment substituable non liΓ©" -#: ../src/libgdl/gdl-dock-placeholder.c:625 +#: ../src/libgdl/gdl-dock-placeholder.c:626 #, c-format msgid "Got a detach signal from an object (%p) who is not our host %p" msgstr "Signal de dΓ©tachement reΓ§u d’un objet (%p) qui n’est pas notre hΓ΄te %p" -#: ../src/libgdl/gdl-dock-placeholder.c:650 +#: ../src/libgdl/gdl-dock-placeholder.c:651 #, c-format msgid "Something weird happened while getting the child placement for %p from parent %p" msgstr "Quelque chose de bizarre est arrivΓ© en essayant d’obtenir le placement du fils %p auprΓ¨s du parent %p" @@ -9200,8 +9256,8 @@ msgid "Dockitem which 'owns' this tablabel" msgstr "Γ‰lΓ©ment d’attache qui « possΓ¨deΒ Β» ce tablabel" #: ../src/libgdl/gdl-dock.c:175 -#: ../src/ui/dialog/inkscape-preferences.cpp:590 -#: ../src/ui/dialog/inkscape-preferences.cpp:611 +#: ../src/ui/dialog/inkscape-preferences.cpp:591 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 msgid "Floating" msgstr "Flottant" @@ -9237,7 +9293,7 @@ msgstr "Y flottant" msgid "Y coordinate for a floating dock" msgstr "CoordonnΓ©e Y pour un point d’attache flottant" -#: ../src/libgdl/gdl-dock.c:501 +#: ../src/libgdl/gdl-dock.c:486 #, c-format msgid "Dock #%d" msgstr "Point d’attache #%d" @@ -9923,12 +9979,12 @@ msgid "Both" msgstr "Les deux" #: ../src/live_effects/lpe-ruler.cpp:35 -#: ../src/widgets/toolbox.cpp:5645 +#: ../src/widgets/toolbox.cpp:5663 msgid "Start" msgstr "DΓ©but" #: ../src/live_effects/lpe-ruler.cpp:36 -#: ../src/widgets/toolbox.cpp:5658 +#: ../src/widgets/toolbox.cpp:5676 msgid "End" msgstr "Fin" @@ -10981,7 +11037,7 @@ msgid "Unique URI to a related document" msgstr "URI unique vers un document apparentΓ©" #: ../src/rdf.cpp:263 -#: ../src/ui/dialog/inkscape-preferences.cpp:1316 +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "Language:" msgstr "Langue principaleΒ :" @@ -11126,7 +11182,7 @@ msgstr "<b>Rien</b> n’a Γ©tΓ© supprimΓ©." #: ../src/ui/dialog/swatches.cpp:204 #: ../src/ui/dialog/swatches.cpp:267 #: ../src/widgets/toolbox.cpp:1385 -#: ../src/widgets/toolbox.cpp:6213 +#: ../src/widgets/toolbox.cpp:6231 msgid "Delete" msgstr "Supprimer" @@ -11484,9 +11540,9 @@ msgstr "Cercle" #. Ellipse #: ../src/selection-describer.cpp:48 #: ../src/selection-describer.cpp:73 -#: ../src/ui/dialog/inkscape-preferences.cpp:509 +#: ../src/ui/dialog/inkscape-preferences.cpp:510 #: ../src/verbs.cpp:2514 -#: ../src/widgets/toolbox.cpp:4156 +#: ../src/widgets/toolbox.cpp:4174 msgid "Ellipse" msgstr "Ellipse" @@ -11503,7 +11559,7 @@ msgid "Path" msgstr "Chemin" #: ../src/selection-describer.cpp:60 -#: ../src/widgets/toolbox.cpp:2997 +#: ../src/widgets/toolbox.cpp:3015 msgid "Polygon" msgstr "Polygone" @@ -11513,14 +11569,14 @@ msgstr "Polyligne" #. Rectangle #: ../src/selection-describer.cpp:64 -#: ../src/ui/dialog/inkscape-preferences.cpp:499 +#: ../src/ui/dialog/inkscape-preferences.cpp:500 #: ../src/verbs.cpp:2510 msgid "Rectangle" msgstr "Rectangle" #. 3D box #: ../src/selection-describer.cpp:66 -#: ../src/ui/dialog/inkscape-preferences.cpp:504 +#: ../src/ui/dialog/inkscape-preferences.cpp:505 #: ../src/verbs.cpp:2512 msgid "3D Box" msgstr "BoΓ®te 3D" @@ -11531,7 +11587,7 @@ msgstr "BoΓ®te 3D" #. this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool"); #. Text #: ../src/selection-describer.cpp:68 -#: ../src/ui/dialog/inkscape-preferences.cpp:558 +#: ../src/ui/dialog/inkscape-preferences.cpp:559 #: ../src/verbs.cpp:2526 #: ../share/extensions/lorem_ipsum.inx.h:7 #: ../share/extensions/replace_font.inx.h:10 @@ -11554,21 +11610,23 @@ msgid "Clone" msgstr "Clone" #: ../src/selection-describer.cpp:75 +#: ../share/extensions/gcodetools_lathe.inx.h:31 msgid "Offset path" msgstr "Chemin offset" #. Spiral #: ../src/selection-describer.cpp:77 -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 #: ../src/verbs.cpp:2518 +#: ../share/extensions/gcodetools_area.inx.h:45 msgid "Spiral" msgstr "Spirale" #. Star #: ../src/selection-describer.cpp:79 -#: ../src/ui/dialog/inkscape-preferences.cpp:513 +#: ../src/ui/dialog/inkscape-preferences.cpp:514 #: ../src/verbs.cpp:2516 -#: ../src/widgets/toolbox.cpp:3004 +#: ../src/widgets/toolbox.cpp:3022 msgid "Star" msgstr "Γ‰toile" @@ -11810,16 +11868,16 @@ msgstr "horizontal, Γ %s" msgid "at %d degrees, through (%s,%s)" msgstr "Γ %d degrΓ©s, passe par (%s,%s)" -#: ../src/sp-image.cpp:1132 +#: ../src/sp-image.cpp:1133 msgid "embedded" msgstr "embarquΓ©e" -#: ../src/sp-image.cpp:1140 +#: ../src/sp-image.cpp:1141 #, c-format msgid "<b>Image with bad reference</b>: %s" msgstr "<b>Image avec une mauvaise rΓ©fΓ©rence</b>Β : %s" -#: ../src/sp-image.cpp:1141 +#: ../src/sp-image.cpp:1142 #, c-format msgid "<b>Image</b> %d × %d: %s" msgstr "<b>Image</b> %d × %dΒ : %s" @@ -12142,12 +12200,12 @@ msgid "<b>Nothing selected!</b> Select objects to spray." msgstr "<b>SΓ©lection videΒ !</b> SΓ©lectionner les objets Γ pulvΓ©riser." #: ../src/spray-context.cpp:781 -#: ../src/widgets/toolbox.cpp:4741 +#: ../src/widgets/toolbox.cpp:4759 msgid "Spray with copies" msgstr "PulvΓ©rise avec des copies" #: ../src/spray-context.cpp:785 -#: ../src/widgets/toolbox.cpp:4748 +#: ../src/widgets/toolbox.cpp:4766 msgid "Spray with clones" msgstr "PulvΓ©rise avec des clones" @@ -12850,12 +12908,12 @@ msgstr "_VΒ :" #: ../src/ui/dialog/align-and-distribute.cpp:512 #: ../src/ui/dialog/align-and-distribute.cpp:894 -#: ../src/widgets/toolbox.cpp:8377 +#: ../src/widgets/toolbox.cpp:8395 msgid "Remove overlaps" msgstr "Supprimer les chevauchements" #: ../src/ui/dialog/align-and-distribute.cpp:543 -#: ../src/widgets/toolbox.cpp:8170 +#: ../src/widgets/toolbox.cpp:8188 msgid "Arrange connector network" msgstr "Arranger le rΓ©seau de connecteurs" @@ -12884,7 +12942,7 @@ msgid "Rearrange" msgstr "Organiser" #: ../src/ui/dialog/align-and-distribute.cpp:895 -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2332 msgid "Nodes" msgstr "NΕ“uds" @@ -12985,7 +13043,7 @@ msgid "Distribute baselines of texts vertically" msgstr "Distribuer des distances Γ©gales verticalement entre lignes de base des textes" #: ../src/ui/dialog/align-and-distribute.cpp:986 -#: ../src/widgets/toolbox.cpp:8339 +#: ../src/widgets/toolbox.cpp:8357 msgid "Nicely arrange selected connector network" msgstr "Dispose le rΓ©seau de connecteurs sΓ©lectionnΓ©s de faΓ§on agrΓ©able" @@ -13070,7 +13128,7 @@ msgstr "Nom du profilΒ :" #. #. ----------- #: ../src/ui/dialog/calligraphic-profile-rename.cpp:52 -#: ../src/ui/dialog/inkscape-preferences.cpp:1242 +#: ../src/ui/dialog/inkscape-preferences.cpp:1243 msgid "Save" msgstr "Enregistrement" @@ -13083,27 +13141,27 @@ msgstr "CouleurΒ : <b>%s</b>Β ; <b>Clic</b> pour dΓ©finir le remplissage, <b>Maj msgid "Change color definition" msgstr "Modifier la dΓ©finition de la couleur" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove stroke color" msgstr "Supprimer la couleur du contour" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove fill color" msgstr "Supprimer la couleur de remplissage" -#: ../src/ui/dialog/color-item.cpp:704 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set stroke color to none" msgstr "Appliquer une couleur de contour nulle" -#: ../src/ui/dialog/color-item.cpp:704 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set fill color to none" msgstr "Appliquer une couleur de remplissage nulle" -#: ../src/ui/dialog/color-item.cpp:720 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set stroke color from swatch" msgstr "Appliquer une couleur de contour Γ partir de l’échantillon" -#: ../src/ui/dialog/color-item.cpp:720 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set fill color from swatch" msgstr "Appliquer une couleur de remplissage Γ partir de l’échantillon" @@ -13138,337 +13196,333 @@ msgid "<b>License</b>" msgstr "<b>Licence</b>" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "Show page _border" msgstr "Afficher la _bordure de page" -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "If set, rectangular page border is shown" msgstr "Si cochΓ©, la bordure rectangulaire de la page est affichΓ©e" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "Border on _top of drawing" msgstr "Bordure au-_dessus du dessin" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "If set, border is always on top of the drawing" msgstr "Si cochΓ©, la bordure est toujours au-dessus du dessin" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "_Show border shadow" msgstr "_Afficher une ombre de bordure" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "If set, page border shows a shadow on its right and lower side" msgstr "Si cochΓ©, la bordure de page est ombrΓ©e en bas et Γ droite" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Back_ground:" msgstr "Couleur de _fondΒ :" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Background color" msgstr "Couleur de fond" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Color and transparency of the page background (also used for bitmap export)" msgstr "Couleur et opacitΓ© du fond de page (Γ©galement utilisΓ© lors de l’exportation en bitmap)" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Border _color:" msgstr "_Couleur de la bordureΒ :" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Page border color" msgstr "Couleur de bordure de page" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Color of the page border" msgstr "Couleur de bordure de page" -#: ../src/ui/dialog/document-properties.cpp:98 +#: ../src/ui/dialog/document-properties.cpp:96 msgid "Default _units:" msgstr "_UnitΓ©s par dΓ©fautΒ :" #. --------------------------------------------------------------- #. General snap options -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show _guides" msgstr "Afficher les _guides" -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show or hide guides" msgstr "Afficher ou non les guides" -#: ../src/ui/dialog/document-properties.cpp:103 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "_Snap guides while dragging" msgstr "Aimanter les guides en dΓ©plaΓ§ant" -#: ../src/ui/dialog/document-properties.cpp:103 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "While dragging a guide, snap to object nodes or bounding box corners ('Snap to nodes' or 'snap to bounding box corners' must be enabled; only a small part of the guide near the cursor will snap)" msgstr "Quand un guide est dΓ©placΓ©, l’aimanter aux nΕ“uds des objets ou aux boΓ®tes englobantes ('Aimanter aux nΕ“uds d’objets' ou 'Aimanter aux coins des boΓ®tes englobantes' doit Γtre activé ; seule une petite partie du guide proche du curseur sera aimantΓ©e)" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guide co_lor:" msgstr "Cou_leur des guidesΒ :" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guideline color" msgstr "Couleur des lignes de guide" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Color of guidelines" msgstr "Couleur des lignes de guide" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "_Highlight color:" msgstr "Couleur d’emp_haseΒ :" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Highlighted guideline color" msgstr "Couleur d’emphase des lignes de guide" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Color of a guideline when it is under mouse" msgstr "Couleur d’une ligne de guide quand elle est sous le curseur de la souris" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:107 msgctxt "Grid" msgid "_New" msgstr "_Nouvelle" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Create new grid." msgstr "CrΓ©er une nouvelle grille" -#: ../src/ui/dialog/document-properties.cpp:110 +#: ../src/ui/dialog/document-properties.cpp:108 msgctxt "Grid" msgid "_Remove" msgstr "Supp_rimer" -#: ../src/ui/dialog/document-properties.cpp:110 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Remove selected grid." msgstr "Supprimer la grille sΓ©lectionnΓ©e." -#: ../src/ui/dialog/document-properties.cpp:119 -#: ../src/widgets/toolbox.cpp:2424 +#: ../src/ui/dialog/document-properties.cpp:117 +#: ../src/widgets/toolbox.cpp:2439 msgid "Guides" msgstr "Guides" -#: ../src/ui/dialog/document-properties.cpp:121 +#: ../src/ui/dialog/document-properties.cpp:119 #: ../src/verbs.cpp:2597 msgid "Snap" msgstr "MagnΓ©tisme" -#: ../src/ui/dialog/document-properties.cpp:122 +#: ../src/ui/dialog/document-properties.cpp:120 msgid "Color Management" msgstr "Gestion de la couleur" -#: ../src/ui/dialog/document-properties.cpp:123 +#: ../src/ui/dialog/document-properties.cpp:121 msgid "Scripting" msgstr "Programmation" -#: ../src/ui/dialog/document-properties.cpp:221 +#: ../src/ui/dialog/document-properties.cpp:219 msgid "<b>General</b>" msgstr "<b>GΓ©nΓ©ral</b>" -#: ../src/ui/dialog/document-properties.cpp:223 +#: ../src/ui/dialog/document-properties.cpp:221 msgid "<b>Border</b>" msgstr "<b>Bordure</b>" -#: ../src/ui/dialog/document-properties.cpp:225 +#: ../src/ui/dialog/document-properties.cpp:223 msgid "<b>Page Size</b>" msgstr "<b>Taille de la page</b>" -#: ../src/ui/dialog/document-properties.cpp:253 +#: ../src/ui/dialog/document-properties.cpp:251 msgid "<b>Guides</b>" msgstr "<b>Guides</b>" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap _distance" msgstr "Distance d’attraction" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap only when _closer than:" msgstr "Aimanter seulement Γ moins d’une distance deΒ :" -#: ../src/ui/dialog/document-properties.cpp:272 -#: ../src/ui/dialog/document-properties.cpp:278 -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:270 +#: ../src/ui/dialog/document-properties.cpp:276 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Always snap" msgstr "Toujours aimanter" -#: ../src/ui/dialog/document-properties.cpp:273 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Snapping distance, in screen pixels, for snapping to objects" msgstr "Distance d’attraction, en pixels d’écran, pour aimanter aux objets" -#: ../src/ui/dialog/document-properties.cpp:273 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Always snap to objects, regardless of their distance" msgstr "Toujours adhΓ©rer aux objets les plus proche, sans tenir compte de la distance" -#: ../src/ui/dialog/document-properties.cpp:274 +#: ../src/ui/dialog/document-properties.cpp:272 msgid "If set, objects only snap to another object when it's within the range specified below" msgstr "Si la valeur est dΓ©finie, les objets ne sont aimantΓ©s entre eux que s’ils sont Γ une distance infΓ©rieure Γ cette valeur" #. Options for snapping to grids -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap d_istance" msgstr "D_istance d’attraction" -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap only when c_loser than:" msgstr "Aimanter seulement Γ moins d’une distance deΒ :" -#: ../src/ui/dialog/document-properties.cpp:279 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Snapping distance, in screen pixels, for snapping to grid" msgstr "Distance d’attraction, en pixels d’écran, pour aimanter Γ la grille" -#: ../src/ui/dialog/document-properties.cpp:279 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Always snap to grids, regardless of the distance" msgstr "Toujours adhΓ©rer aux grilles les plus proches, sans tenir compte de la distance" -#: ../src/ui/dialog/document-properties.cpp:280 +#: ../src/ui/dialog/document-properties.cpp:278 msgid "If set, objects only snap to a grid line when it's within the range specified below" msgstr "Si la valeur est dΓ©finie, les objets ne sont aimantΓ©s Γ une ligne de la grille que s’ils sont Γ une distance infΓ©rieure Γ cette valeur" #. Options for snapping to guides -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap dist_ance" msgstr "Distance d’attraction" -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap only when close_r than:" msgstr "Aimante_r seulement Γ moins d’une distance deΒ :" -#: ../src/ui/dialog/document-properties.cpp:285 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Snapping distance, in screen pixels, for snapping to guides" msgstr "Distance d’attraction, en pixels d’écran, pour aimanter aux guides" -#: ../src/ui/dialog/document-properties.cpp:285 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Always snap to guides, regardless of the distance" msgstr "Toujours adhΓ©rer aux guides les plus proches, sans tenir compte de la distance" -#: ../src/ui/dialog/document-properties.cpp:286 +#: ../src/ui/dialog/document-properties.cpp:284 msgid "If set, objects only snap to a guide when it's within the range specified below" msgstr "Si la valeur est dΓ©finie, les objets ne sont aimantΓ©s Γ un guide que s’ils sont Γ une distance infΓ©rieure Γ cette valeur" -#: ../src/ui/dialog/document-properties.cpp:290 +#: ../src/ui/dialog/document-properties.cpp:288 msgid "<b>Snap to objects</b>" msgstr "<b>Aimanter aux objets</b>" -#: ../src/ui/dialog/document-properties.cpp:292 +#: ../src/ui/dialog/document-properties.cpp:290 msgid "<b>Snap to grids</b>" msgstr "<b>Aimanter Γ la grille</b>" -#: ../src/ui/dialog/document-properties.cpp:294 +#: ../src/ui/dialog/document-properties.cpp:292 msgid "<b>Snap to guides</b>" msgstr "<b>Aimanter aux guides</b>" -#: ../src/ui/dialog/document-properties.cpp:323 -msgid "(invalid UTF-8 string)" -msgstr "(chaΓ®ne UTF-8 invalide)" - #. TODO check if this next line was sometimes needed. It being there caused an assertion. #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:432 +#: ../src/ui/dialog/document-properties.cpp:406 #: ../src/verbs.cpp:2763 msgid "Link Color Profile" msgstr "Lier un profil de couleurs" -#: ../src/ui/dialog/document-properties.cpp:525 +#: ../src/ui/dialog/document-properties.cpp:499 msgid "Remove linked color profile" msgstr "Supprimer le profil de couleur liΓ©" -#: ../src/ui/dialog/document-properties.cpp:539 +#: ../src/ui/dialog/document-properties.cpp:513 msgid "<b>Linked Color Profiles:</b>" msgstr "<b>Profils de couleur liΓ©sΒ :</b>" -#: ../src/ui/dialog/document-properties.cpp:541 +#: ../src/ui/dialog/document-properties.cpp:515 msgid "<b>Available Color Profiles:</b>" msgstr "<b>Profils de couleur disponiblesΒ :</b>" -#: ../src/ui/dialog/document-properties.cpp:543 +#: ../src/ui/dialog/document-properties.cpp:517 msgid "Link Profile" msgstr "Lier au profil" -#: ../src/ui/dialog/document-properties.cpp:574 +#: ../src/ui/dialog/document-properties.cpp:548 msgid "Profile Name" msgstr "Nom du profil" -#: ../src/ui/dialog/document-properties.cpp:607 +#: ../src/ui/dialog/document-properties.cpp:581 msgid "External scripts" msgstr "Programmes externes" -#: ../src/ui/dialog/document-properties.cpp:608 +#: ../src/ui/dialog/document-properties.cpp:582 msgid "Embedded scripts" msgstr "Programmes incorporΓ©s" -#: ../src/ui/dialog/document-properties.cpp:614 +#: ../src/ui/dialog/document-properties.cpp:588 msgid "<b>External script files:</b>" msgstr "<b>Fichier de programmation externeΒ :</b>" -#: ../src/ui/dialog/document-properties.cpp:616 +#: ../src/ui/dialog/document-properties.cpp:590 msgid "Add" msgstr "Ajouter" -#: ../src/ui/dialog/document-properties.cpp:639 +#: ../src/ui/dialog/document-properties.cpp:613 msgid "Filename" msgstr "Nom du fichier" -#: ../src/ui/dialog/document-properties.cpp:648 +#: ../src/ui/dialog/document-properties.cpp:622 msgid "<b>Embedded script files:</b>" msgstr "<b>Fichier de programmation incorporΓ©sΒ :</b>" -#: ../src/ui/dialog/document-properties.cpp:650 +#: ../src/ui/dialog/document-properties.cpp:624 #, fuzzy msgid "New" msgstr "Nouvelle" -#: ../src/ui/dialog/document-properties.cpp:672 +#: ../src/ui/dialog/document-properties.cpp:646 msgid "Script id" msgstr "Identifiant du script" -#: ../src/ui/dialog/document-properties.cpp:678 +#: ../src/ui/dialog/document-properties.cpp:652 msgid "<b>Content:</b>" msgstr "<b>ContenuΒ :</b>" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:741 +#: ../src/ui/dialog/document-properties.cpp:715 msgid "Add external script..." msgstr "Ajouter un programme externe..." #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:758 +#: ../src/ui/dialog/document-properties.cpp:732 msgid "Add embedded script..." msgstr "Ajouter un programme incorporΓ©..." #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:788 +#: ../src/ui/dialog/document-properties.cpp:762 msgid "Remove external script" msgstr "Supprimer un programme externe" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:820 +#: ../src/ui/dialog/document-properties.cpp:794 msgid "Remove embedded script" msgstr "Retirer le programme incorporΓ©" #. TODO repr->set_content(_EmbeddedContent.get_buffer()->get_text()); #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:903 +#: ../src/ui/dialog/document-properties.cpp:877 msgid "Edit embedded script" msgstr "Retirer le programme incorporΓ©" -#: ../src/ui/dialog/document-properties.cpp:988 +#: ../src/ui/dialog/document-properties.cpp:962 msgid "<b>Creation</b>" msgstr " <b>CrΓ©ation</b> " -#: ../src/ui/dialog/document-properties.cpp:989 +#: ../src/ui/dialog/document-properties.cpp:963 msgid "<b>Defined grids</b>" msgstr "<b>Grilles dΓ©finies</b>" -#: ../src/ui/dialog/document-properties.cpp:1200 +#: ../src/ui/dialog/document-properties.cpp:1174 msgid "Remove grid" msgstr "Supprimer la grille" @@ -13483,14 +13537,16 @@ msgstr "Information" #: ../share/extensions/draw_from_triangle.inx.h:20 #: ../share/extensions/dxf_input.inx.h:11 #: ../share/extensions/dxf_outlines.inx.h:8 -#: ../share/extensions/gcodetools_all_in_one.inx.h:25 -#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_about.inx.h:5 +#: ../share/extensions/gcodetools_area.inx.h:28 #: ../share/extensions/gcodetools_check_for_updates.inx.h:5 -#: ../share/extensions/gcodetools_dxf_points.inx.h:13 -#: ../share/extensions/gcodetools_engraving.inx.h:11 -#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_dxf_points.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:16 +#: ../share/extensions/gcodetools_graffiti.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:20 #: ../share/extensions/gcodetools_orientation_points.inx.h:5 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:6 #: ../share/extensions/gcodetools_tools_library.inx.h:3 #: ../share/extensions/generate_voronoi.inx.h:6 #: ../share/extensions/gimp_xcf.inx.h:3 @@ -13869,10 +13925,10 @@ msgid "Height of filter effects region" msgstr "Hauteur de la zone d’action du filtre" #: ../src/ui/dialog/filter-effects-dialog.cpp:2190 -#: ../src/widgets/toolbox.cpp:4125 -#: ../src/widgets/toolbox.cpp:4503 -#: ../src/widgets/toolbox.cpp:4761 -#: ../src/widgets/toolbox.cpp:6226 +#: ../src/widgets/toolbox.cpp:4143 +#: ../src/widgets/toolbox.cpp:4521 +#: ../src/widgets/toolbox.cpp:4779 +#: ../src/widgets/toolbox.cpp:6244 #: ../share/extensions/extrude.inx.h:4 #: ../share/extensions/triangle.inx.h:9 msgid "Mode:" @@ -14976,8 +15032,8 @@ msgid "_X:" msgstr "_XΒ :" #: ../src/ui/dialog/guides.cpp:44 -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:462 msgid "_Y:" msgstr "_JΒ :" @@ -15030,1106 +15086,1106 @@ msgstr "SΓ©le_ction" msgid "Selection only or whole document" msgstr "Seulement la sΓ©lection ou tout le document" -#: ../src/ui/dialog/inkscape-preferences.cpp:177 +#: ../src/ui/dialog/inkscape-preferences.cpp:178 msgid "Mouse" msgstr "Souris" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 msgid "Grab sensitivity:" msgstr "SensibilitΓ© de captureΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 -#: ../src/ui/dialog/inkscape-preferences.cpp:182 -#: ../src/ui/dialog/inkscape-preferences.cpp:198 -#: ../src/ui/dialog/inkscape-preferences.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 msgid "pixels" msgstr "pixels" -#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:181 msgid "How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)" msgstr "Distance Γ partir de laquelle on peut saisir un objet Γ l’écran avec la souris (en pixels d’écran)" -#: ../src/ui/dialog/inkscape-preferences.cpp:182 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 msgid "Click/drag threshold:" msgstr "Seuil de cliquer-dΓ©placerΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:184 msgid "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" msgstr "DΓ©placement maximal de la souris (en pixels d’écran) considΓ©rΓ© comme un clic et non comme un dΓ©placement" -#: ../src/ui/dialog/inkscape-preferences.cpp:185 +#: ../src/ui/dialog/inkscape-preferences.cpp:186 msgid "Use pressure-sensitive tablet (requires restart)" msgstr "Utiliser une tablette graphique sensible Γ la pression (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:187 +#: ../src/ui/dialog/inkscape-preferences.cpp:188 msgid "Use the capabilities of a tablet or other pressure-sensitive device. Disable this only if you have problems with the tablet (you can still use it as a mouse)" msgstr "Utiliser les possibilitΓ©s offertes par une tablette graphique ou un autre pΓ©riphΓ©rique sensible Γ la pression. DΓ©sactivez ceci uniquement si vous rencontrez des problΓ¨mes avec la tablette (vous pourrez nΓ©anmoins continuer Γ l’utiliser comme souris)" -#: ../src/ui/dialog/inkscape-preferences.cpp:189 +#: ../src/ui/dialog/inkscape-preferences.cpp:190 msgid "Switch tool based on tablet device (requires restart)" msgstr "Change d’outil en fonction des dispositifs de tablette (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:191 +#: ../src/ui/dialog/inkscape-preferences.cpp:192 msgid "Change tool as different devices are used on the tablet (pen, eraser, mouse)" msgstr "Change d’outil lorsque des dispositifs diffΓ©rents sont utilisΓ©s sur la tablette (crayon, gomme, souris)" -#: ../src/ui/dialog/inkscape-preferences.cpp:196 +#: ../src/ui/dialog/inkscape-preferences.cpp:197 msgid "Scrolling" msgstr "DΓ©filement" -#: ../src/ui/dialog/inkscape-preferences.cpp:198 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 msgid "Mouse wheel scrolls by:" msgstr "La molette de la souris dΓ©file deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:200 msgid "One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)" msgstr "Un cran de la molette de la souris fait dΓ©filer de tant de pixels (horizontalement avec Maj)" -#: ../src/ui/dialog/inkscape-preferences.cpp:200 +#: ../src/ui/dialog/inkscape-preferences.cpp:201 msgid "Ctrl+arrows" msgstr "Ctrl+flΓ¨ches" -#: ../src/ui/dialog/inkscape-preferences.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 msgid "Scroll by:" msgstr "DΓ©filer deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "Appuyer sur Ctrl+flΓ¨ches fait dΓ©filer de cette distance (en pixels d’écran)" -#: ../src/ui/dialog/inkscape-preferences.cpp:205 +#: ../src/ui/dialog/inkscape-preferences.cpp:206 msgid "Acceleration:" msgstr "AccΓ©lΓ©rationΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:206 +#: ../src/ui/dialog/inkscape-preferences.cpp:207 msgid "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)" msgstr "Garder appuyΓ© Ctrl+flΓ¨ches accΓ©lΓ¨re graduellement la vitesse du dΓ©filement (0 pour aucune accΓ©lΓ©ration)" -#: ../src/ui/dialog/inkscape-preferences.cpp:207 +#: ../src/ui/dialog/inkscape-preferences.cpp:208 msgid "Autoscrolling" msgstr "DΓ©filement automatique" -#: ../src/ui/dialog/inkscape-preferences.cpp:209 +#: ../src/ui/dialog/inkscape-preferences.cpp:210 msgid "Speed:" msgstr "VitesseΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:210 +#: ../src/ui/dialog/inkscape-preferences.cpp:211 msgid "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)" msgstr "Vitesse du dΓ©filement automatique de la zone de travail lors que l’on tire un objet au dehors de la zone (0 pour aucun dΓ©filement automatique)" -#: ../src/ui/dialog/inkscape-preferences.cpp:213 +#: ../src/ui/dialog/inkscape-preferences.cpp:214 msgid "How far (in screen pixels) you need to be from the canvas edge to trigger autoscroll; positive is outside the canvas, negative is within the canvas" msgstr "Distance (en pixels d’écran) Γ laquelle il faut Γtre du bord de la zone de travail pour activer le dΓ©filement automatique; les valeurs positives sont en dehors de la zone, les nΓ©gatives Γ l’intΓ©rieur" -#: ../src/ui/dialog/inkscape-preferences.cpp:214 +#: ../src/ui/dialog/inkscape-preferences.cpp:215 msgid "Left mouse button pans when Space is pressed" msgstr "Le bouton gauche de la souris fait dΓ©filer horizontalement quand la touche Espace est pressΓ©e" -#: ../src/ui/dialog/inkscape-preferences.cpp:216 +#: ../src/ui/dialog/inkscape-preferences.cpp:217 msgid "When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)" msgstr "Si cochΓ©, maintenir pressΓ©e la touche Espace tout en cliquant-dΓ©plaΓ§ant avec le bouton gauche de la souris fait dΓ©filer horizontalement la zone de travail (comme dans Adobe Illustrator)Β ; si dΓ©cochΓ©, la touche Espace active temporairement l’outil de SΓ©lection (rΓ©glage par dΓ©faut)." -#: ../src/ui/dialog/inkscape-preferences.cpp:217 +#: ../src/ui/dialog/inkscape-preferences.cpp:218 msgid "Mouse wheel zooms by default" msgstr "La molette de la souris zoome par dΓ©faut" -#: ../src/ui/dialog/inkscape-preferences.cpp:219 +#: ../src/ui/dialog/inkscape-preferences.cpp:220 msgid "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl" msgstr "Si cochΓ©, la molette de la souris zoome sans la touche Ctrl et fait dΓ©filer la zone de travail avec CtrlΒ ; si dΓ©cochΓ©, elle zoome avec Ctrl et fait dΓ©filer sans Ctrl." -#: ../src/ui/dialog/inkscape-preferences.cpp:225 +#: ../src/ui/dialog/inkscape-preferences.cpp:226 msgid "Enable snap indicator" msgstr "Activer le tΓ©moin de magnΓ©tisme" -#: ../src/ui/dialog/inkscape-preferences.cpp:227 +#: ../src/ui/dialog/inkscape-preferences.cpp:228 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "Un symbole est dessinΓ© sur le point d’accrochage aprΓ¨s l’opΓ©ration" -#: ../src/ui/dialog/inkscape-preferences.cpp:230 +#: ../src/ui/dialog/inkscape-preferences.cpp:231 msgid "Delay (in ms):" msgstr "DΓ©lai (en millisecondes)Β :" -#: ../src/ui/dialog/inkscape-preferences.cpp:231 +#: ../src/ui/dialog/inkscape-preferences.cpp:232 msgid "Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate." msgstr "DiffΓ¨re le magnΓ©tisme aussi longtemps que la souris est en mouvement, puis attend encore une fraction de seconde supplΓ©mentaire. Ce dΓ©lai additionnel est dΓ©fini ici. Si la valeur est nulle ou trΓ¨s faible, l’aimantation est immΓ©diate." -#: ../src/ui/dialog/inkscape-preferences.cpp:233 +#: ../src/ui/dialog/inkscape-preferences.cpp:234 msgid "Only snap the node closest to the pointer" msgstr "Aimanter seulement le nΕ“ud le plus proche du pointeur" -#: ../src/ui/dialog/inkscape-preferences.cpp:235 +#: ../src/ui/dialog/inkscape-preferences.cpp:236 msgid "Only try to snap the node that is initially closest to the mouse pointer" msgstr "Essayer d’aimanter le nΕ“ud initialement le plus proche du pointeur" -#: ../src/ui/dialog/inkscape-preferences.cpp:238 +#: ../src/ui/dialog/inkscape-preferences.cpp:239 msgid "Weight factor:" msgstr "Coefficient de pondΓ©rationΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:239 +#: ../src/ui/dialog/inkscape-preferences.cpp:240 msgid "When multiple snap solutions are found, then Inkscape can either prefer the closest transformation (when set to 0), or prefer the node that was initially the closest to the pointer (when set to 1)" msgstr "Lorsque plusieurs aimantations sont possibles, Inkscape choisit soit la transformation la plus proche (si positionnΓ© Γ 0), soit le nΕ“ud qui Γ©tait initialement le plus proche du pointeur (si positionnΓ© Γ 1)" -#: ../src/ui/dialog/inkscape-preferences.cpp:241 +#: ../src/ui/dialog/inkscape-preferences.cpp:242 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "Aimanter le pointeur de souris lors du dΓ©placement d’un nΕ“ud contraint" -#: ../src/ui/dialog/inkscape-preferences.cpp:243 +#: ../src/ui/dialog/inkscape-preferences.cpp:244 msgid "When dragging a knot along a constraint line, then snap the position of the mouse pointer instead of snapping the projection of the knot onto the constraint line" msgstr "Lorsqu’un nΕ“ud est dΓ©placΓ© le long d’une ligne de contrainte, alors aimanter la position du pointeur de souris plutΓ΄t que la projection du nΕ“ud sur la ligne de contrainte" -#: ../src/ui/dialog/inkscape-preferences.cpp:245 +#: ../src/ui/dialog/inkscape-preferences.cpp:246 msgid "Snapping" msgstr "MagnΓ©tisme" -#: ../src/ui/dialog/inkscape-preferences.cpp:250 +#: ../src/ui/dialog/inkscape-preferences.cpp:251 msgid "Steps" msgstr "IncrΓ©ments" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:254 +#: ../src/ui/dialog/inkscape-preferences.cpp:255 msgid "Arrow keys move by:" msgstr "Les flΓ¨ches dΓ©placent deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:255 +#: ../src/ui/dialog/inkscape-preferences.cpp:256 msgid "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "Appuyer sur une flΓ¨che dΓ©place les objet(s) ou les nΕ“ud(s) sΓ©lectionnΓ©s de cette distance" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:258 +#: ../src/ui/dialog/inkscape-preferences.cpp:259 msgid "> and < scale by:" msgstr "> et < redimensionnent deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:259 +#: ../src/ui/dialog/inkscape-preferences.cpp:260 msgid "Pressing > or < scales selection up or down by this increment" msgstr "Appuyer sur > ou < redimensionne de cet incrΓ©ment" -#: ../src/ui/dialog/inkscape-preferences.cpp:261 +#: ../src/ui/dialog/inkscape-preferences.cpp:262 msgid "Inset/Outset by:" msgstr "Contracter/dilater deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:263 msgid "Inset and Outset commands displace the path by this distance" msgstr "Les commandes contracter et dilater dΓ©placent le chemin de cette distance" -#: ../src/ui/dialog/inkscape-preferences.cpp:263 +#: ../src/ui/dialog/inkscape-preferences.cpp:264 msgid "Compass-like display of angles" msgstr "Afficher les angles comme sur une boussole" -#: ../src/ui/dialog/inkscape-preferences.cpp:265 +#: ../src/ui/dialog/inkscape-preferences.cpp:266 msgid "When on, angles are displayed with 0 at north, 0 to 360 range, positive clockwise; otherwise with 0 at east, -180 to 180 range, positive counterclockwise" msgstr "Si cochΓ©, les angles sont affichΓ©s en sens horaire de 0 (au nord) Γ 360; si dΓ©cochΓ©, ils sont affichΓ©s de -180 Γ 180 en sens anti-horaire (0 Γ©tant Γ l’est)" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "Rotation snaps every:" msgstr "IncrΓ©ment de rotationΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "degrees" msgstr "degrΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:272 +#: ../src/ui/dialog/inkscape-preferences.cpp:273 msgid "Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount" msgstr "Ctrl appuyΓ© forcera des rotations de tant de degrΓ©s; de mΓme en appuyant sur [ ou ], les rotations se feront selon cet incrΓ©ment" -#: ../src/ui/dialog/inkscape-preferences.cpp:273 +#: ../src/ui/dialog/inkscape-preferences.cpp:274 msgid "Relative snapping of guideline angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:275 +#: ../src/ui/dialog/inkscape-preferences.cpp:276 msgid "When on, the snap angles when rotating a guideline will be relative to the original angle" msgstr "Si cochΓ©, l'angle de magnΓ©tisme lors de la rotation d'un guide est relatif Γ l'angle d'origine" -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "Zoom in/out by:" msgstr "(DΓ©)Zoomer deΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:278 +#: ../src/ui/dialog/inkscape-preferences.cpp:279 msgid "Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier" msgstr "Les outils de zoom (clic en mode zoom, touches +/-, clic bouton du milieu) zooment ou dΓ©zooment selon ce facteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:284 +#: ../src/ui/dialog/inkscape-preferences.cpp:285 msgid "Show selection cue" msgstr "Afficher les poignΓ©es de sΓ©lection" -#: ../src/ui/dialog/inkscape-preferences.cpp:285 +#: ../src/ui/dialog/inkscape-preferences.cpp:286 msgid "Whether selected objects display a selection cue (the same as in selector)" msgstr "Si cochΓ©, l’objet sΓ©lectionnΓ© affiche ses poignΓ©es de sΓ©lection (les mΓmes que dans le sΓ©lecteur)" -#: ../src/ui/dialog/inkscape-preferences.cpp:291 +#: ../src/ui/dialog/inkscape-preferences.cpp:292 msgid "Enable gradient editing" msgstr "Activer l’édition de dΓ©gradΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:292 +#: ../src/ui/dialog/inkscape-preferences.cpp:293 msgid "Whether selected objects display gradient editing controls" msgstr "Si cochΓ©, les objets sΓ©lectionnΓ©s affichent leurs poignΓ©es d’édition de dΓ©gradΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:297 +#: ../src/ui/dialog/inkscape-preferences.cpp:298 msgid "Conversion to guides uses edges instead of bounding box" msgstr "Utiliser les bords (plutΓ΄t que les boΓ®tes englobantes) pour convertir en guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:298 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "Converting an object to guides places these along the object's true edges (imitating the object's shape), not along the bounding box" msgstr "La conversion d’un objet en guides place ceux-ci le long des bords rΓ©els de l’objet (imitant la forme de l’objet), et non le long de sa boΓ®te englobante" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "Ctrl+click dot size:" msgstr "Taille des points du Ctrl-clicΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "times current stroke width" msgstr "fois l’épaisseur courante de contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:306 +#: ../src/ui/dialog/inkscape-preferences.cpp:307 msgid "Size of dots created with Ctrl+click (relative to current stroke width)" msgstr "Taille des points créés avec Ctrl+clic (par rapport Γ l’épaisseur courante de contour)" -#: ../src/ui/dialog/inkscape-preferences.cpp:321 +#: ../src/ui/dialog/inkscape-preferences.cpp:322 msgid "<b>No objects selected</b> to take the style from." msgstr "<b>Aucun objet sΓ©lectionnΓ©</b> pour en capturer le style." -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:331 msgid "<b>More than one object selected.</b> Cannot take style from multiple objects." msgstr "<b>Plus d’un objet est sΓ©lectionnΓ©.</b> Impossible de capturer le style de plusieurs objets." -#: ../src/ui/dialog/inkscape-preferences.cpp:363 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "Style of new objects" msgstr "Style des nouveaux objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:366 msgid "Last used style" msgstr "Dernier style utilisΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Apply the style you last set on an object" msgstr "Appliquer le dernier style attribuΓ© Γ un objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:372 +#: ../src/ui/dialog/inkscape-preferences.cpp:373 msgid "This tool's own style:" msgstr "Style propre Γ l’outilΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:376 +#: ../src/ui/dialog/inkscape-preferences.cpp:377 msgid "Each tool may store its own style to apply to the newly created objects. Use the button below to set it." msgstr "Chaque outil retient son propre style Γ appliquer aux nouveaux objets créés. Utiliser le bouton ci-dessous pour le dΓ©finir." #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:380 +#: ../src/ui/dialog/inkscape-preferences.cpp:381 msgid "Take from selection" msgstr "Capturer depuis la sΓ©lection" -#: ../src/ui/dialog/inkscape-preferences.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 msgid "This tool's style of new objects" msgstr "Style de cet outil pour les nouveaux objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:392 +#: ../src/ui/dialog/inkscape-preferences.cpp:393 msgid "Remember the style of the (first) selected object as this tool's style" msgstr "MΓ©moriser le style du premier objet sΓ©lectionnΓ© comme style de cet outil" -#: ../src/ui/dialog/inkscape-preferences.cpp:397 +#: ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "Tools" msgstr "Outils" -#: ../src/ui/dialog/inkscape-preferences.cpp:400 +#: ../src/ui/dialog/inkscape-preferences.cpp:401 msgid "Bounding box to use" msgstr "BoΓ®te englobante Γ utiliser" -#: ../src/ui/dialog/inkscape-preferences.cpp:401 +#: ../src/ui/dialog/inkscape-preferences.cpp:402 msgid "Visual bounding box" msgstr "BoΓ®te englobante visuelle" -#: ../src/ui/dialog/inkscape-preferences.cpp:403 +#: ../src/ui/dialog/inkscape-preferences.cpp:404 msgid "This bounding box includes stroke width, markers, filter margins, etc." msgstr "Cette boΓ®te englobante comprend l’épaisseur du contour, les marqueurs, les marges des filtres, etc." -#: ../src/ui/dialog/inkscape-preferences.cpp:404 +#: ../src/ui/dialog/inkscape-preferences.cpp:405 msgid "Geometric bounding box" msgstr "BoΓ®te englobante gΓ©omΓ©trique" -#: ../src/ui/dialog/inkscape-preferences.cpp:406 +#: ../src/ui/dialog/inkscape-preferences.cpp:407 msgid "This bounding box includes only the bare path" msgstr "Cette boΓ®te englobante ne comprend que le chemin lui-mΓme" -#: ../src/ui/dialog/inkscape-preferences.cpp:408 +#: ../src/ui/dialog/inkscape-preferences.cpp:409 msgid "Conversion to guides" msgstr "Convertion en guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:409 +#: ../src/ui/dialog/inkscape-preferences.cpp:410 msgid "Keep objects after conversion to guides" msgstr "Conserver les objets aprΓ¨s leur conversion en guides" -#: ../src/ui/dialog/inkscape-preferences.cpp:411 +#: ../src/ui/dialog/inkscape-preferences.cpp:412 msgid "When converting an object to guides, don't delete the object after the conversion" msgstr "Lors de la conversion d’objets en guides, ne pas supprimer les objets aprΓ¨s la conversion" -#: ../src/ui/dialog/inkscape-preferences.cpp:412 +#: ../src/ui/dialog/inkscape-preferences.cpp:413 msgid "Treat groups as a single object" msgstr "Manipule le groupe comme un objet unique" -#: ../src/ui/dialog/inkscape-preferences.cpp:414 +#: ../src/ui/dialog/inkscape-preferences.cpp:415 msgid "Treat groups as a single object during conversion to guides rather than converting each child separately" msgstr "Lors de la conversion en guides, les groupes sont traitΓ©s chacun comme un objet unique (la conversion n’est pas appliquΓ©e Γ chaque enfant sΓ©parΓ©ment)" -#: ../src/ui/dialog/inkscape-preferences.cpp:416 +#: ../src/ui/dialog/inkscape-preferences.cpp:417 msgid "Average all sketches" msgstr "Moyenner tous les croquis" -#: ../src/ui/dialog/inkscape-preferences.cpp:417 +#: ../src/ui/dialog/inkscape-preferences.cpp:418 msgid "Width is in absolute units" msgstr "Largeur en unitΓ©s absolues" -#: ../src/ui/dialog/inkscape-preferences.cpp:418 +#: ../src/ui/dialog/inkscape-preferences.cpp:419 msgid "Select new path" msgstr "SΓ©lectionner le nouveau chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:419 +#: ../src/ui/dialog/inkscape-preferences.cpp:420 msgid "Don't attach connectors to text objects" msgstr "Ne pas lier les connecteurs aux objets texte" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:422 +#: ../src/ui/dialog/inkscape-preferences.cpp:423 msgid "Selector" msgstr "SΓ©lecteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:425 +#: ../src/ui/dialog/inkscape-preferences.cpp:426 msgid "When transforming, show" msgstr "Lors des transformations, afficher" -#: ../src/ui/dialog/inkscape-preferences.cpp:426 +#: ../src/ui/dialog/inkscape-preferences.cpp:427 msgid "Objects" msgstr "Objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:428 +#: ../src/ui/dialog/inkscape-preferences.cpp:429 msgid "Show the actual objects when moving or transforming" msgstr "Afficher les objets lors des dΓ©placements ou des transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:429 +#: ../src/ui/dialog/inkscape-preferences.cpp:430 msgid "Box outline" msgstr "Silhouette rectangulaire" -#: ../src/ui/dialog/inkscape-preferences.cpp:431 +#: ../src/ui/dialog/inkscape-preferences.cpp:432 msgid "Show only a box outline of the objects when moving or transforming" msgstr "N’afficher que la silhouette rectangulaire des objets lors de leurs dΓ©placements ou transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:432 +#: ../src/ui/dialog/inkscape-preferences.cpp:433 msgid "Per-object selection cue" msgstr "Indication de sΓ©lection d’objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:435 +#: ../src/ui/dialog/inkscape-preferences.cpp:436 msgid "No per-object selection indication" msgstr "Aucune indication de sΓ©lection d’objet" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 +#: ../src/ui/dialog/inkscape-preferences.cpp:437 msgid "Mark" msgstr "Marque" -#: ../src/ui/dialog/inkscape-preferences.cpp:438 +#: ../src/ui/dialog/inkscape-preferences.cpp:439 msgid "Each selected object has a diamond mark in the top left corner" msgstr "Chaque objet sΓ©lectionnΓ© est marquΓ© d’un losange dans le coin en haut Γ gauche" -#: ../src/ui/dialog/inkscape-preferences.cpp:439 +#: ../src/ui/dialog/inkscape-preferences.cpp:440 msgid "Box" msgstr "BoΓ®te" -#: ../src/ui/dialog/inkscape-preferences.cpp:441 +#: ../src/ui/dialog/inkscape-preferences.cpp:442 msgid "Each selected object displays its bounding box" msgstr "Chaque objet sΓ©lectionnΓ© affiche sa boΓ®te englobante" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:444 +#: ../src/ui/dialog/inkscape-preferences.cpp:445 msgid "Node" msgstr "NΕ“ud" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 +#: ../src/ui/dialog/inkscape-preferences.cpp:448 msgid "Path outline" msgstr "Contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:448 +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Path outline color" msgstr "Couleur du contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:449 +#: ../src/ui/dialog/inkscape-preferences.cpp:450 msgid "Selects the color used for showing the path outline" msgstr "SΓ©lectionner la couleur utilisΓ©e pour le contour du chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:450 +#: ../src/ui/dialog/inkscape-preferences.cpp:451 msgid "Always show outline" msgstr "Toujours afficher le contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:452 msgid "Show outlines for all paths, not only invisible paths" msgstr "Affiche les contours pour tous les chemins, pas seulement les chemins invisibles" -#: ../src/ui/dialog/inkscape-preferences.cpp:452 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Update outline when dragging nodes" msgstr "Mettre Γ jour le contour pendant le dΓ©placement des nΕ“uds" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:454 msgid "Update the outline when dragging or transforming nodes; if this is off, the outline will only update when completing a drag" msgstr "Met Γ jour le contour pendant le dΓ©placement ou la transformation des nΕ“udsΒ ; lorsque cette option est dΓ©sactivΓ©e, le contour n’est mis Γ jour qu’à la fin du dΓ©placement" -#: ../src/ui/dialog/inkscape-preferences.cpp:454 +#: ../src/ui/dialog/inkscape-preferences.cpp:455 msgid "Update paths when dragging nodes" msgstr "Mettre Γ jour les chemins pendant le dΓ©placement des nΕ“uds" -#: ../src/ui/dialog/inkscape-preferences.cpp:455 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Update paths when dragging or transforming nodes; if this is off, paths will only be updated when completing a drag" msgstr "Met Γ jour les chemins pendant le dΓ©placement ou la transformation des nΕ“udsΒ ; lorsque cette option est dΓ©sactivΓ©e, les chemins ne sont mis Γ jour qu’à la fin du dΓ©placement" -#: ../src/ui/dialog/inkscape-preferences.cpp:456 +#: ../src/ui/dialog/inkscape-preferences.cpp:457 msgid "Show path direction on outlines" msgstr "Afficher la direction des chemins sur le contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:457 +#: ../src/ui/dialog/inkscape-preferences.cpp:458 msgid "Visualize the direction of selected paths by drawing small arrows in the middle of each outline segment" msgstr "Visualise la direction des chemins sΓ©lectionnΓ©s en dessinant de petites flΓ¨ches au milieu de chaque segment de contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Show temporary path outline" msgstr "Afficher temporairement le contour de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:460 msgid "When hovering over a path, briefly flash its outline" msgstr "Faire clignoter briΓ¨vement le contour d’un chemin lors de son survol" -#: ../src/ui/dialog/inkscape-preferences.cpp:460 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "Show temporary outline for selected paths" msgstr "Afficher temporairement le contour des chemins sΓ©lectionnΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:461 +#: ../src/ui/dialog/inkscape-preferences.cpp:462 msgid "Show temporary outline even when a path is selected for editing" msgstr "Affiche temporairement le contour mΓme lorsqu’un chemin est sΓ©lectionnΓ© pour Γ©dition" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "Flash time:" msgstr "DurΓ©e de clignotementΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "Specifies how long the path outline will be visible after a mouse-over (in milliseconds); specify 0 to have the outline shown until mouse leaves the path" msgstr "DΓ©finit combien de temps le contour sera visible aprΓ¨s son survol par la souris (en millisecondes)Β ; choisissez 0 pour garder le contour visible jusqu’à ce que la souris quitte le chemin." -#: ../src/ui/dialog/inkscape-preferences.cpp:464 +#: ../src/ui/dialog/inkscape-preferences.cpp:465 msgid "Editing preferences" msgstr "PrΓ©fΓ©rences d’édition" -#: ../src/ui/dialog/inkscape-preferences.cpp:465 +#: ../src/ui/dialog/inkscape-preferences.cpp:466 msgid "Show transform handles for single nodes" msgstr "Afficher les poignΓ©es de transformation pour un nΕ“ud seul" -#: ../src/ui/dialog/inkscape-preferences.cpp:466 +#: ../src/ui/dialog/inkscape-preferences.cpp:467 msgid "Show transform handles even when only a single node is selected" msgstr "Affiche les poignΓ©es de transformation mΓme lorsqu’un seul nΕ“ud est sΓ©lectionnΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:467 +#: ../src/ui/dialog/inkscape-preferences.cpp:468 msgid "Deleting nodes preserves shape" msgstr "La suppression des nΕ“uds prΓ©serve la forme" -#: ../src/ui/dialog/inkscape-preferences.cpp:468 +#: ../src/ui/dialog/inkscape-preferences.cpp:469 msgid "Move handles next to deleted nodes to resemble original shape; hold Ctrl to get the other behavior" msgstr "DΓ©place les poignΓ©es prΓ¨s des nΕ“uds supprimΓ©s pour conserver la forme originaleΒ ; maintenir Ctrl pour dΓ©sactiver cette fonctionnalitΓ©" #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:471 +#: ../src/ui/dialog/inkscape-preferences.cpp:472 #: ../src/verbs.cpp:2506 msgid "Tweak" msgstr "Ajuster" -#: ../src/ui/dialog/inkscape-preferences.cpp:472 +#: ../src/ui/dialog/inkscape-preferences.cpp:473 #, fuzzy msgid "Object paint style" msgstr "Centre d’objet" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:477 +#: ../src/ui/dialog/inkscape-preferences.cpp:478 #: ../src/verbs.cpp:2508 msgid "Spray" msgstr "AΓ©rographe" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:482 +#: ../src/ui/dialog/inkscape-preferences.cpp:483 #: ../src/verbs.cpp:2530 #: ../src/widgets/desktop-widget.cpp:493 msgid "Zoom" msgstr "Zoom" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:487 +#: ../src/ui/dialog/inkscape-preferences.cpp:488 #: ../src/verbs.cpp:2532 #: ../share/extensions/measure.inx.h:6 msgid "Measure" msgstr "Mesurer" -#: ../src/ui/dialog/inkscape-preferences.cpp:489 +#: ../src/ui/dialog/inkscape-preferences.cpp:490 msgid "Ignore first and last points" msgstr "Ignorer le premier et le dernier point" -#: ../src/ui/dialog/inkscape-preferences.cpp:490 +#: ../src/ui/dialog/inkscape-preferences.cpp:491 msgid "The start and end of the measurement tool's control line will not be considered for calculating lengths. Only lengths between actual curve intersections will be displayed." msgstr "Le dΓ©but et la fin de la ligne de contrΓ΄le de l'outil de mesure ne sont pas pris en compte dans le calcul des longueurs. Seules les longueurs entre les intersections des chemins sont affichΓ©es." #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:493 +#: ../src/ui/dialog/inkscape-preferences.cpp:494 msgid "Shapes" msgstr "Formes" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Sketch mode" msgstr "Mode croquis" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch" msgstr "Si cochΓ©, le rΓ©sultat du croquis sera moyennΓ© avec tous les autres croquisΒ ; sinon, la moyenne sera effectuΓ©e entre l’ancien rΓ©sultat et le nouveau croquis" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:530 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 #: ../src/ui/dialog/input.cpp:1184 #: ../src/verbs.cpp:2522 msgid "Pen" msgstr "Stylo" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:536 +#: ../src/ui/dialog/inkscape-preferences.cpp:537 #: ../src/verbs.cpp:2524 msgid "Calligraphy" msgstr "Plume calligraphique" -#: ../src/ui/dialog/inkscape-preferences.cpp:540 +#: ../src/ui/dialog/inkscape-preferences.cpp:541 msgid "If on, pen width is in absolute units (px) independent of zoom; otherwise pen width depends on zoom so that it looks the same at any zoom" msgstr "Si cochΓ©, la largeur de la plume est en unitΓ©s absolues (px) indΓ©pendemment du zoom; sinon, la largeur de plume dΓ©pend du zoom afin de paraΓ®tre la mΓme quel que soit le zoom" -#: ../src/ui/dialog/inkscape-preferences.cpp:542 +#: ../src/ui/dialog/inkscape-preferences.cpp:543 msgid "If on, each newly created object will be selected (deselecting previous selection)" msgstr "Activer pour que les nouveaux objets soient automatiquement sΓ©lectionnΓ©s (Γ la place de l’ancienne sΓ©lection)" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:544 +#: ../src/ui/dialog/inkscape-preferences.cpp:545 #: ../src/verbs.cpp:2538 msgid "Paint Bucket" msgstr "Remplissage au seau" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:549 +#: ../src/ui/dialog/inkscape-preferences.cpp:550 #: ../src/verbs.cpp:2542 msgid "Eraser" msgstr "Gomme" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 +#: ../src/ui/dialog/inkscape-preferences.cpp:564 msgid "Show font samples in the drop-down list" msgstr "Afficher les Γ©chantillons de police dans la liste dΓ©roulante" -#: ../src/ui/dialog/inkscape-preferences.cpp:564 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "Show font samples alongside font names in the drop-down list in Text bar" msgstr "Affiche les Γ©chantillons de police Γ cΓ΄tΓ© du nom dans la liste dΓ©roulante de la barre de texte" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:569 +#: ../src/ui/dialog/inkscape-preferences.cpp:570 #: ../src/verbs.cpp:2528 msgid "Gradient" msgstr "DΓ©gradΓ©" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:573 +#: ../src/ui/dialog/inkscape-preferences.cpp:574 #: ../src/verbs.cpp:2536 msgid "Connector" msgstr "Connecteur" -#: ../src/ui/dialog/inkscape-preferences.cpp:576 +#: ../src/ui/dialog/inkscape-preferences.cpp:577 msgid "If on, connector attachment points will not be shown for text objects" msgstr "Si cochΓ©, les points d’accroche de connecteur ne sont pas montrΓ©s pour des objets texte" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:578 +#: ../src/ui/dialog/inkscape-preferences.cpp:579 #: ../src/verbs.cpp:2534 msgid "Dropper" msgstr "Pipette" -#: ../src/ui/dialog/inkscape-preferences.cpp:585 +#: ../src/ui/dialog/inkscape-preferences.cpp:586 msgid "Save and restore window geometry for each document" msgstr "Sauver et restaurer la gΓ©omΓ©trie de la fenΓtre pour chaque document" -#: ../src/ui/dialog/inkscape-preferences.cpp:586 +#: ../src/ui/dialog/inkscape-preferences.cpp:587 msgid "Remember and use last window's geometry" msgstr "MΓ©moriser et utiliser la gΓ©omΓ©trie de la derniΓ¨re fenΓtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:587 +#: ../src/ui/dialog/inkscape-preferences.cpp:588 msgid "Don't save window geometry" msgstr "Ne pas enregistrer la gΓ©omΓ©trie de la fenΓtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:589 -#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:590 +#: ../src/ui/dialog/inkscape-preferences.cpp:610 msgid "Dockable" msgstr "Attachable" -#: ../src/ui/dialog/inkscape-preferences.cpp:592 +#: ../src/ui/dialog/inkscape-preferences.cpp:593 msgid "Dialogs are hidden in taskbar" msgstr "Les dialogues sont cachΓ©s dans la barre des tΓΆches" -#: ../src/ui/dialog/inkscape-preferences.cpp:593 +#: ../src/ui/dialog/inkscape-preferences.cpp:594 msgid "Zoom when window is resized" msgstr "Zoomer quand la fenΓtre est redimensionnΓ©e" -#: ../src/ui/dialog/inkscape-preferences.cpp:594 +#: ../src/ui/dialog/inkscape-preferences.cpp:595 msgid "Show close button on dialogs" msgstr "Afficher un bouton de fermeture sur les dialogues" -#: ../src/ui/dialog/inkscape-preferences.cpp:597 +#: ../src/ui/dialog/inkscape-preferences.cpp:598 msgid "Aggressive" msgstr "Agressif" -#: ../src/ui/dialog/inkscape-preferences.cpp:599 +#: ../src/ui/dialog/inkscape-preferences.cpp:600 msgid "Saving window geometry (size and position)" msgstr "Enregistrer la gΓ©omΓ©trie de la fenΓtre (taille et position)" -#: ../src/ui/dialog/inkscape-preferences.cpp:601 +#: ../src/ui/dialog/inkscape-preferences.cpp:602 msgid "Let the window manager determine placement of all windows" msgstr "Laisser le gestionnaire de fenΓtre placer toutes les fenΓtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:603 +#: ../src/ui/dialog/inkscape-preferences.cpp:604 msgid "Remember and use the last window's geometry (saves geometry to user preferences)" msgstr "MΓ©moriser et utiliser la gΓ©omΓ©trie de la derniΓ¨re fenΓtre (enregistre la gΓ©omΓ©trie dans les prΓ©fΓ©rences utilisateur)" -#: ../src/ui/dialog/inkscape-preferences.cpp:605 +#: ../src/ui/dialog/inkscape-preferences.cpp:606 msgid "Save and restore window geometry for each document (saves geometry in the document)" msgstr "Sauver et restaurer la gΓ©omΓ©trie de la fenΓtre pour chaque document (enregistre la gΓ©omΓ©trie avec le document)" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 +#: ../src/ui/dialog/inkscape-preferences.cpp:608 msgid "Dialog behavior (requires restart)" msgstr "Comportement des boΓ®tes de dialogue (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:614 +#: ../src/ui/dialog/inkscape-preferences.cpp:615 msgid "Dialogs on top:" msgstr "Dialogues au-dessus de la fenΓtreΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:618 msgid "Dialogs are treated as regular windows" msgstr "Les dialogues sont traitΓ©s comme des fenΓtres normales" -#: ../src/ui/dialog/inkscape-preferences.cpp:619 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Dialogs stay on top of document windows" msgstr "Les dialogues restent au-dessus des fenΓtres de document" -#: ../src/ui/dialog/inkscape-preferences.cpp:621 +#: ../src/ui/dialog/inkscape-preferences.cpp:622 msgid "Same as Normal but may work better with some window managers" msgstr "Comme Normal, mais fonctionne peut-Γtre mieux avec certains gestionnaires de fenΓtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:625 +#: ../src/ui/dialog/inkscape-preferences.cpp:626 msgid "Dialog Transparency" msgstr "Transparence des boΓ®tes de dialogue" -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:628 msgid "Opacity when focused:" msgstr "OpacitΓ© lorsque la fenΓtre est activeΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:630 msgid "Opacity when unfocused:" msgstr "OpacitΓ© lorsque la fenΓtre est inactiveΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:631 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 msgid "Time of opacity change animation:" msgstr "Temps de transitionΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:634 +#: ../src/ui/dialog/inkscape-preferences.cpp:635 msgid "Miscellaneous" msgstr "Divers" -#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:638 msgid "Whether dialog windows are to be hidden in the window manager taskbar" msgstr "Si cochΓ©, les boΓ®tes de dialogue sont cachΓ©es dans la barre des tΓΆches du gestionnaire de fenΓtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:640 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Zoom drawing when document window is resized, to keep the same area visible (this is the default which can be changed in any window using the button above the right scrollbar)" msgstr "Si cochΓ©, le dessin est rezoomΓ© quand la fenΓtre est redimensionnΓ©e, pour garder visible la mΓme aire (c’est l’option par dΓ©faut qui peut Γtre changΓ©e dans toute fenΓtre en utilisant le boutton au dessus de la barre de dΓ©filement de droite)" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:643 msgid "Whether dialog windows have a close button (requires restart)" msgstr "Si cochΓ©, les boΓ®tes de dialogue ont un bouton de fermeture (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:643 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Windows" msgstr "FenΓtres" -#: ../src/ui/dialog/inkscape-preferences.cpp:648 +#: ../src/ui/dialog/inkscape-preferences.cpp:649 msgid "Move in parallel" msgstr "Sont dΓ©placΓ©s en parallΓ¨le" -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:651 msgid "Stay unmoved" msgstr "Ne bougent pas" -#: ../src/ui/dialog/inkscape-preferences.cpp:652 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Move according to transform" msgstr "Sont dΓ©placΓ©s en fonction leurs transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:654 +#: ../src/ui/dialog/inkscape-preferences.cpp:655 msgid "Are unlinked" msgstr "Sont dΓ©liΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:656 +#: ../src/ui/dialog/inkscape-preferences.cpp:657 msgid "Are deleted" msgstr "Sont supprimΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:659 +#: ../src/ui/dialog/inkscape-preferences.cpp:660 msgid "Moving original: clones and linked offsets" msgstr "Lorsque l’original est dΓ©placΓ©, ses clones et ses offsets liΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:661 +#: ../src/ui/dialog/inkscape-preferences.cpp:662 msgid "Clones are translated by the same vector as their original" msgstr "Les clones sont dΓ©placΓ©s du mΓme vecteur que leur original" -#: ../src/ui/dialog/inkscape-preferences.cpp:663 +#: ../src/ui/dialog/inkscape-preferences.cpp:664 msgid "Clones preserve their positions when their original is moved" msgstr "Les clones restent sur place quand leur original est dΓ©placΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:665 +#: ../src/ui/dialog/inkscape-preferences.cpp:666 msgid "Each clone moves according to the value of its transform= attribute; for example, a rotated clone will move in a different direction than its original" msgstr "Chaque clone est dΓ©placΓ© en fonction de son attribut transform=Β ; par exemple, un clone qui a dΓ©jΓ Γ©tΓ© tournΓ© sera dΓ©placΓ© dans une direction diffΓ©rente de celle de son original" -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:667 #, fuzzy msgid "Deleting original: clones" msgstr "Lors de la duplication d’un original et de ses clones" -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:669 msgid "Orphaned clones are converted to regular objects" msgstr "Les clones orphelins sont convertis en objets normaux" -#: ../src/ui/dialog/inkscape-preferences.cpp:670 +#: ../src/ui/dialog/inkscape-preferences.cpp:671 msgid "Orphaned clones are deleted along with their original" msgstr "Les clones orphelins sont supprimΓ©s en mΓme temps que leur original" -#: ../src/ui/dialog/inkscape-preferences.cpp:672 +#: ../src/ui/dialog/inkscape-preferences.cpp:673 msgid "Duplicating original+clones/linked offset" msgstr "Lors de la duplication d’un original et de ses clones ou de ses offsets liΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:675 msgid "Relink duplicated clones" msgstr "Relier les clones dupliquΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:677 msgid "When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original" msgstr "Lorsque la sΓ©lection dupliquΓ©e contient un clone et son original (dans un groupe par exemple), relier le clone dupliquΓ© Γ l’objet original dupliquΓ© plutΓ΄t qu’à l’original initial" #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:679 +#: ../src/ui/dialog/inkscape-preferences.cpp:680 msgid "Clones" msgstr "Clones" -#: ../src/ui/dialog/inkscape-preferences.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:685 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "Utiliser l’objet le plus haut comme chemin de dΓ©coupe ou masque lors de l’application" -#: ../src/ui/dialog/inkscape-preferences.cpp:686 +#: ../src/ui/dialog/inkscape-preferences.cpp:687 msgid "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "Si dΓ©cochΓ©, l’objet le plus en-dessous de la sΓ©lection est utilisΓ© comme chemin de dΓ©coupe ou masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:687 +#: ../src/ui/dialog/inkscape-preferences.cpp:688 msgid "Remove clippath/mask object after applying" msgstr "Supprimer le chemin de dΓ©coupe ou le masque aprΓ¨s application" -#: ../src/ui/dialog/inkscape-preferences.cpp:689 +#: ../src/ui/dialog/inkscape-preferences.cpp:690 msgid "After applying, remove the object used as the clipping path or mask from the drawing" msgstr "Si cochΓ©, le chemin de dΓ©coupe ou masque est supprimΓ© du dessin aprΓ¨s avoir Γ©tΓ© appliquΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:692 msgid "Before applying" msgstr "Avant d’appliquer une dΓ©coupe ou un masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:694 msgid "Do not group clipped/masked objects" msgstr "Ne pas grouper les objets dΓ©coupΓ©s ou masquΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:694 +#: ../src/ui/dialog/inkscape-preferences.cpp:695 msgid "Enclose every clipped/masked object in its own group" msgstr "InsΓ©rer chaque objet dΓ©coupΓ© ou masquΓ© dans son propre groupe" -#: ../src/ui/dialog/inkscape-preferences.cpp:695 +#: ../src/ui/dialog/inkscape-preferences.cpp:696 msgid "Put all clipped/masked objects into one group" msgstr "Mettre tous les objets dΓ©coupΓ©s ou masquΓ©s dans un mΓme groupe" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 +#: ../src/ui/dialog/inkscape-preferences.cpp:699 msgid "Apply clippath/mask to every object" msgstr "Applique la dΓ©coupe ou le masque Γ tous les objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:701 +#: ../src/ui/dialog/inkscape-preferences.cpp:702 msgid "Apply clippath/mask to groups containing single object" msgstr "Applique la dΓ©coupe ou le masque Γ des groupes contenant un objet seul" -#: ../src/ui/dialog/inkscape-preferences.cpp:704 +#: ../src/ui/dialog/inkscape-preferences.cpp:705 msgid "Apply clippath/mask to group containing all objects" msgstr "Applique la dΓ©coupe ou le masque Γ un groupe contenant tous les objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:706 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "After releasing" msgstr "AprΓ¨s retrait de la dΓ©coupe ou du masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:708 +#: ../src/ui/dialog/inkscape-preferences.cpp:709 msgid "Ungroup automatically created groups" msgstr "DΓ©grouper les groupes créés automatiquement" -#: ../src/ui/dialog/inkscape-preferences.cpp:710 +#: ../src/ui/dialog/inkscape-preferences.cpp:711 msgid "Ungroup groups created when setting clip/mask" msgstr "DΓ©grouper les groupes créés lors de la mise en place de la dΓ©coupe ou du masque" -#: ../src/ui/dialog/inkscape-preferences.cpp:712 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "Clippaths and masks" msgstr "Chemins de dΓ©coupe et masques" -#: ../src/ui/dialog/inkscape-preferences.cpp:717 -#: ../src/widgets/select-toolbar.cpp:554 +#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/widgets/select-toolbar.cpp:561 msgid "Scale stroke width" msgstr "Redimensionner l’épaisseur du contour" -#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/ui/dialog/inkscape-preferences.cpp:719 msgid "Scale rounded corners in rectangles" msgstr "Redimensionner les coins arrondis des rectangles" -#: ../src/ui/dialog/inkscape-preferences.cpp:719 +#: ../src/ui/dialog/inkscape-preferences.cpp:720 msgid "Transform gradients" msgstr "Transformer les dΓ©gradΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:720 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Transform patterns" msgstr "Transformer les motifs de remplissage" -#: ../src/ui/dialog/inkscape-preferences.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:722 msgid "Optimized" msgstr "OptimisΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:722 +#: ../src/ui/dialog/inkscape-preferences.cpp:723 msgid "Preserved" msgstr "PrΓ©servΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:725 -#: ../src/widgets/select-toolbar.cpp:555 +#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/widgets/select-toolbar.cpp:562 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "Lors d’un redimensionnement des objets, prΓ©server la proportion des Γ©paisseurs des contours" -#: ../src/ui/dialog/inkscape-preferences.cpp:727 -#: ../src/widgets/select-toolbar.cpp:566 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 +#: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "Lors du redimensionnements d’un rectangle, prΓ©server la proportion des rayons des coins arrondis" -#: ../src/ui/dialog/inkscape-preferences.cpp:729 -#: ../src/widgets/select-toolbar.cpp:577 +#: ../src/ui/dialog/inkscape-preferences.cpp:730 +#: ../src/widgets/select-toolbar.cpp:584 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "Transformer les dΓ©gradΓ©s avec les objets (remplissage et contour)" -#: ../src/ui/dialog/inkscape-preferences.cpp:731 -#: ../src/widgets/select-toolbar.cpp:588 +#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/widgets/select-toolbar.cpp:595 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "Transformer les motifs de remplissage avec les objets (remplissage et contour)" -#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/ui/dialog/inkscape-preferences.cpp:733 msgid "Store transformation" msgstr "Enregistrement des transformations" -#: ../src/ui/dialog/inkscape-preferences.cpp:734 +#: ../src/ui/dialog/inkscape-preferences.cpp:735 msgid "If possible, apply transformation to objects without adding a transform= attribute" msgstr "Si possible, appliquer des transformations aux objets sans ajouter l’attribut transform=" -#: ../src/ui/dialog/inkscape-preferences.cpp:736 +#: ../src/ui/dialog/inkscape-preferences.cpp:737 msgid "Always store transformation as a transform= attribute on objects" msgstr "Toujours enregistrer les transformations dans l’attribut transform= des objets" -#: ../src/ui/dialog/inkscape-preferences.cpp:738 +#: ../src/ui/dialog/inkscape-preferences.cpp:739 msgid "Transforms" msgstr "Transformations" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:744 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:769 msgid "Best quality (slowest)" msgstr "Haute qualitΓ© (le plus lent)" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:770 +#: ../src/ui/dialog/inkscape-preferences.cpp:747 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Better quality (slower)" msgstr "Bonne qualitΓ© (plus lent)" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:773 msgid "Average quality" msgstr "QualitΓ© moyenne" -#: ../src/ui/dialog/inkscape-preferences.cpp:750 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 msgid "Lower quality (faster)" msgstr "Basse qualitΓ© (plus rapide)" -#: ../src/ui/dialog/inkscape-preferences.cpp:752 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Lowest quality (fastest)" msgstr "QualitΓ© mΓ©diocre (le plus rapide)" -#: ../src/ui/dialog/inkscape-preferences.cpp:755 +#: ../src/ui/dialog/inkscape-preferences.cpp:756 msgid "Gaussian blur quality for display" msgstr "QualitΓ© d’affichage du flou gaussien" -#: ../src/ui/dialog/inkscape-preferences.cpp:757 -#: ../src/ui/dialog/inkscape-preferences.cpp:781 +#: ../src/ui/dialog/inkscape-preferences.cpp:758 +#: ../src/ui/dialog/inkscape-preferences.cpp:782 msgid "Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)" msgstr "La plus haute qualitΓ©, mais l’affichage peut Γtre trΓ¨s lent pour des zooms importants (l’export en bitmap utilise toujours la plus haute qualitΓ©)" -#: ../src/ui/dialog/inkscape-preferences.cpp:759 -#: ../src/ui/dialog/inkscape-preferences.cpp:783 +#: ../src/ui/dialog/inkscape-preferences.cpp:760 +#: ../src/ui/dialog/inkscape-preferences.cpp:784 msgid "Better quality, but slower display" msgstr "Meilleure qualitΓ©, mais affichage plus lent" -#: ../src/ui/dialog/inkscape-preferences.cpp:761 -#: ../src/ui/dialog/inkscape-preferences.cpp:785 +#: ../src/ui/dialog/inkscape-preferences.cpp:762 +#: ../src/ui/dialog/inkscape-preferences.cpp:786 msgid "Average quality, acceptable display speed" msgstr "QualitΓ© moyenne, vitesse d’affichage acceptable" -#: ../src/ui/dialog/inkscape-preferences.cpp:763 -#: ../src/ui/dialog/inkscape-preferences.cpp:787 +#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:788 msgid "Lower quality (some artifacts), but display is faster" msgstr "QualitΓ© plus faible (prΓ©sence d’artefacts), mais affichage plus rapide" -#: ../src/ui/dialog/inkscape-preferences.cpp:765 -#: ../src/ui/dialog/inkscape-preferences.cpp:789 +#: ../src/ui/dialog/inkscape-preferences.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:790 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "La plus mauvaise qualitΓ© (nombreux artefacts), mais l’affichage est bien plus rapide" -#: ../src/ui/dialog/inkscape-preferences.cpp:779 +#: ../src/ui/dialog/inkscape-preferences.cpp:780 msgid "Filter effects quality for display" msgstr "QualitΓ© d’affichage des effets de filtre" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:792 +#: ../src/ui/dialog/inkscape-preferences.cpp:793 msgid "Show filter primitives infobox" msgstr "Affiche la boΓ®te d’information des primitives de filtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:794 +#: ../src/ui/dialog/inkscape-preferences.cpp:795 msgid "Show icons and descriptions for the filter primitives available at the filter effects dialog" msgstr "Afficher les icΓ΄nes et les descriptions pour les primitives de filtre disponibles dans la boΓ®te de dialogue des effets de filtre" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 msgid "Number of Threads:" msgstr "Nombre de threadsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "(requires restart)" msgstr "(nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:800 msgid "Configure number of processors/threads to use with rendering of gaussian blur" msgstr "Configure le nombre de processeurs/threads Γ utiliser pour le rendu du flou gaussien" -#: ../src/ui/dialog/inkscape-preferences.cpp:807 +#: ../src/ui/dialog/inkscape-preferences.cpp:808 msgid "Select in all layers" msgstr "SΓ©lectionner dans tous les calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:808 +#: ../src/ui/dialog/inkscape-preferences.cpp:809 msgid "Select only within current layer" msgstr "SΓ©lectionner seulement dans le calque courant" -#: ../src/ui/dialog/inkscape-preferences.cpp:809 +#: ../src/ui/dialog/inkscape-preferences.cpp:810 msgid "Select in current layer and sublayers" msgstr "SΓ©lectionner dans le calque courant et ses sous-calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:810 +#: ../src/ui/dialog/inkscape-preferences.cpp:811 msgid "Ignore hidden objects and layers" msgstr "Ignorer les objets et calques cachΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:811 +#: ../src/ui/dialog/inkscape-preferences.cpp:812 msgid "Ignore locked objects and layers" msgstr "Ignorer les objets et calques verrouillΓ©s" -#: ../src/ui/dialog/inkscape-preferences.cpp:812 +#: ../src/ui/dialog/inkscape-preferences.cpp:813 msgid "Deselect upon layer change" msgstr "DΓ©sΓ©lectionner en changeant de calque" -#: ../src/ui/dialog/inkscape-preferences.cpp:814 +#: ../src/ui/dialog/inkscape-preferences.cpp:815 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "Ctrl+A, Tab, Maj+Tab" -#: ../src/ui/dialog/inkscape-preferences.cpp:816 +#: ../src/ui/dialog/inkscape-preferences.cpp:817 msgid "Make keyboard selection commands work on objects in all layers" msgstr "Les commandes de sΓ©lection au clavier s’appliquent aux objets dans tous les calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:818 +#: ../src/ui/dialog/inkscape-preferences.cpp:819 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "Les commandes de sΓ©lection au clavier s’appliquent seulement dans le calque courant" -#: ../src/ui/dialog/inkscape-preferences.cpp:820 +#: ../src/ui/dialog/inkscape-preferences.cpp:821 msgid "Make keyboard selection commands work on objects in current layer and all its sublayers" msgstr "Les commandes de sΓ©lection au clavier s’appliquent seulement dans le calque courant et dans ses sous-calques" -#: ../src/ui/dialog/inkscape-preferences.cpp:822 +#: ../src/ui/dialog/inkscape-preferences.cpp:823 msgid "Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)" msgstr "Si dΓ©cochΓ©, la sΓ©lection des objets cachΓ©s est possible (objets cachΓ©s isolΓ©s ou appartenant Γ calque cachΓ©)" -#: ../src/ui/dialog/inkscape-preferences.cpp:824 +#: ../src/ui/dialog/inkscape-preferences.cpp:825 msgid "Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)" msgstr "Si dΓ©cochΓ©, la sΓ©lection des objets verrouillΓ©s est possible (objets verrouillΓ©s isolΓ©s ou appartenant Γ un calque verrouillΓ©)" -#: ../src/ui/dialog/inkscape-preferences.cpp:827 +#: ../src/ui/dialog/inkscape-preferences.cpp:828 msgid "Uncheck this to be able to keep the current objects selected when the current layer changes" msgstr "Si dΓ©cochΓ©, les objets sΓ©lectionnΓ©s restent sΓ©lectionnΓ©s lorsque vous passez du calque courant Γ un autre" -#: ../src/ui/dialog/inkscape-preferences.cpp:829 +#: ../src/ui/dialog/inkscape-preferences.cpp:830 msgid "Selecting" msgstr "SΓ©lection" -#: ../src/ui/dialog/inkscape-preferences.cpp:836 +#: ../src/ui/dialog/inkscape-preferences.cpp:837 msgid "Default export resolution:" msgstr "RΓ©solution par dΓ©faut d’exportationΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:838 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "RΓ©solution par dΓ©faut (point par pouce) dans la boΓ®te de dialogue exporter" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:840 msgid "Open Clip Art Library Server Name:" msgstr "Nom du serveur de bibliothΓ¨que Open Clip ArtΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:840 +#: ../src/ui/dialog/inkscape-preferences.cpp:841 msgid "The server name of the Open Clip Art Library webdav server; it's used by the Import and Export to OCAL function" msgstr "Le nom du serveur webdav de la bibliothΓ¨que Open Clip ArtΒ ; il est utilisΓ© par la fonction d’import et export vers OCAL." -#: ../src/ui/dialog/inkscape-preferences.cpp:842 +#: ../src/ui/dialog/inkscape-preferences.cpp:843 msgid "Open Clip Art Library Username:" msgstr "Nom d’utilisateur bibliothΓ¨que Open Clip ArtΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:844 msgid "The username used to log into Open Clip Art Library" msgstr "Le nom d’utilisateur pour se connecter Γ la bibliothΓ¨que Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 +#: ../src/ui/dialog/inkscape-preferences.cpp:846 msgid "Open Clip Art Library Password:" msgstr "Mot de passe de la bibliothΓ¨que Open Clip ArtΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:846 +#: ../src/ui/dialog/inkscape-preferences.cpp:847 msgid "The password used to log into Open Clip Art Library" msgstr "Le mot de passe pour se connecter Γ la bibliothΓ¨que Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:848 +#: ../src/ui/dialog/inkscape-preferences.cpp:849 msgid "Import/Export" msgstr "Importer/Exporter" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Perceptual" msgstr "Perceptif" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Relative Colorimetric" msgstr "ColorimΓ©trie relative" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Absolute Colorimetric" msgstr "ColorimΓ©trie absolue" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:903 msgid "(Note: Color management has been disabled in this build)" msgstr "(NBΒ : les fonctionnalitΓ©s colorimΓ©triques sont dΓ©sactivΓ©es dans cette version)" -#: ../src/ui/dialog/inkscape-preferences.cpp:906 +#: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Display adjustment" msgstr "Ajustement de l’affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:916 +#: ../src/ui/dialog/inkscape-preferences.cpp:917 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" @@ -16138,813 +16194,813 @@ msgstr "" "Le profil ICC Γ utiliser pour calibrer l’affichage.\n" "RΓ©pertoires parcourusΒ :%s" -#: ../src/ui/dialog/inkscape-preferences.cpp:917 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "Display profile:" msgstr "Profil d’affichageΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Retrieve profile from display" msgstr "Utiliser le profil proposΓ© par le pΓ©riphΓ©rique d’affichage." -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "Utiliser un profil parmi ceux correspondant aux pΓ©riphΓ©riques d’affichage grΓΆce Γ XICC" -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Retrieve profiles from those attached to displays" msgstr "Utiliser un profil parmi ceux correspondant aux pΓ©riphΓ©riques d’affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Display rendering intent:" msgstr "Intention de rendu de l’affichageΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 +#: ../src/ui/dialog/inkscape-preferences.cpp:934 msgid "The rendering intent to use to calibrate display output" msgstr "L’intention de rendu Γ utiliser pour calibrer la sortie de l’affichage" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 +#: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "Proofing" msgstr "Gestion des couleurs" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:938 msgid "Simulate output on screen" msgstr "Simuler la sortie Γ l’écran" -#: ../src/ui/dialog/inkscape-preferences.cpp:939 +#: ../src/ui/dialog/inkscape-preferences.cpp:940 msgid "Simulates output of target device" msgstr "Simule la sortie du pΓ©riphΓ©rique cible" -#: ../src/ui/dialog/inkscape-preferences.cpp:941 +#: ../src/ui/dialog/inkscape-preferences.cpp:942 msgid "Mark out of gamut colors" msgstr "Marquer les couleurs hors-gamut" -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:944 msgid "Highlights colors that are out of gamut for the target device" msgstr "Mettre en exergue les couleurs qui sont en-dehors du gamut pour le pΓ©riphΓ©rique cible" -#: ../src/ui/dialog/inkscape-preferences.cpp:948 +#: ../src/ui/dialog/inkscape-preferences.cpp:949 msgid "Out of gamut warning color:" msgstr "Couleur d’avertissement hors-gamutΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:949 +#: ../src/ui/dialog/inkscape-preferences.cpp:950 msgid "Selects the color used for out of gamut warning" msgstr "La couleur utilisΓ©e pour prΓ©venir des problΓ¨mes de gamut" -#: ../src/ui/dialog/inkscape-preferences.cpp:951 +#: ../src/ui/dialog/inkscape-preferences.cpp:952 msgid "Device profile:" msgstr "Profil du pΓ©riphΓ©riqueΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:952 +#: ../src/ui/dialog/inkscape-preferences.cpp:953 msgid "The ICC profile to use to simulate device output" msgstr "Le profil ICC utilisΓ© pour simuler la sortie du pΓ©riphΓ©rique" -#: ../src/ui/dialog/inkscape-preferences.cpp:955 +#: ../src/ui/dialog/inkscape-preferences.cpp:956 msgid "Device rendering intent:" msgstr "Intention de rendu du pΓ©riphΓ©riqueΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:956 +#: ../src/ui/dialog/inkscape-preferences.cpp:957 msgid "The rendering intent to use to calibrate device output" msgstr "L’intention de rendu Γ utiliser pour calibrer le pΓ©riphΓ©rique de sortie" -#: ../src/ui/dialog/inkscape-preferences.cpp:958 +#: ../src/ui/dialog/inkscape-preferences.cpp:959 msgid "Black point compensation" msgstr "Compensation du point noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:960 +#: ../src/ui/dialog/inkscape-preferences.cpp:961 msgid "Enables black point compensation" msgstr "Active la compensation du point noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:962 +#: ../src/ui/dialog/inkscape-preferences.cpp:963 msgid "Preserve black" msgstr "PrΓ©server le noir" -#: ../src/ui/dialog/inkscape-preferences.cpp:967 +#: ../src/ui/dialog/inkscape-preferences.cpp:968 msgid "(LittleCMS 1.15 or later required)" msgstr "(LittleCMS 1.15 ou version supΓ©rieure requis)" -#: ../src/ui/dialog/inkscape-preferences.cpp:969 +#: ../src/ui/dialog/inkscape-preferences.cpp:970 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "PrΓ©server la composante N dans les transformaitons CMJN > CMJN" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 -#: ../src/widgets/sp-color-icc-selector.cpp:297 -#: ../src/widgets/sp-color-icc-selector.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:983 +#: ../src/widgets/sp-color-icc-selector.cpp:304 +#: ../src/widgets/sp-color-icc-selector.cpp:577 msgid "<none>" msgstr "<aucun>" -#: ../src/ui/dialog/inkscape-preferences.cpp:1027 +#: ../src/ui/dialog/inkscape-preferences.cpp:1028 msgid "Color management" msgstr "Gestion de la couleur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1032 +#: ../src/ui/dialog/inkscape-preferences.cpp:1033 msgid "Major grid line emphasizing" msgstr "Mise en valeur de la grille principale" -#: ../src/ui/dialog/inkscape-preferences.cpp:1034 +#: ../src/ui/dialog/inkscape-preferences.cpp:1035 msgid "Don't emphasize gridlines when zoomed out" msgstr "Ne pas mettre en valeur les lignes de grille lors du dΓ©zoom" -#: ../src/ui/dialog/inkscape-preferences.cpp:1035 +#: ../src/ui/dialog/inkscape-preferences.cpp:1036 msgid "If set and zoomed out, the gridlines will be shown in normal color instead of major grid line color" msgstr "Si cochΓ©, lors du dΓ©zoom, les lignes de grille seront affichΓ©es en couleur normale plutΓ΄t qu’avec la couleur de grille principale" -#: ../src/ui/dialog/inkscape-preferences.cpp:1037 +#: ../src/ui/dialog/inkscape-preferences.cpp:1038 msgid "Default grid settings" msgstr "RΓ©glages par dΓ©faut de la grille" -#: ../src/ui/dialog/inkscape-preferences.cpp:1043 -#: ../src/ui/dialog/inkscape-preferences.cpp:1064 +#: ../src/ui/dialog/inkscape-preferences.cpp:1044 +#: ../src/ui/dialog/inkscape-preferences.cpp:1065 msgid "Grid units:" msgstr "UnitΓ©s de la grilleΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "Origin X:" msgstr "Origine XΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Origin Y:" msgstr "Origine YΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Spacing X:" msgstr "Espacement XΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Spacing Y:" msgstr "Espacement YΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1053 #: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Grid line color:" msgstr "Couleur de la grilleΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Color used for normal grid lines" msgstr "SΓ©lectionner la couleur utilisΓ©e pour les lignes de la grille normale" -#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1077 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 #: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Major grid line color:" msgstr "Couleur de la grille principaleΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Color used for major (highlighted) grid lines" msgstr "Couleur des lignes de la grille principale (mise en valeur)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1058 -#: ../src/ui/dialog/inkscape-preferences.cpp:1080 +#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1081 msgid "Major grid line every:" msgstr "Grille principale toutes lesΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1060 msgid "Show dots instead of lines" msgstr "Afficher des points plutΓ΄t que des lignes" -#: ../src/ui/dialog/inkscape-preferences.cpp:1060 +#: ../src/ui/dialog/inkscape-preferences.cpp:1061 msgid "If set, display dots at gridpoints instead of gridlines" msgstr "Cocher pour afficher des points aux intersections de la grille plutΓ΄t que des lignes" -#: ../src/ui/dialog/inkscape-preferences.cpp:1087 +#: ../src/ui/dialog/inkscape-preferences.cpp:1088 msgid "Use named colors" msgstr "Utiliser les couleurs nommΓ©es" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1089 msgid "If set, write the CSS name of the color when available (e.g. 'red' or 'magenta') instead of the numeric value" msgstr "Si cochΓ©, Γ©crit le nom CSS de la couleur si elle est disponible (rouge ou magenta, par exemple) Γ la place de sa valeur numΓ©rique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1090 +#: ../src/ui/dialog/inkscape-preferences.cpp:1091 msgid "XML formatting" msgstr "Formatage XML" -#: ../src/ui/dialog/inkscape-preferences.cpp:1092 +#: ../src/ui/dialog/inkscape-preferences.cpp:1093 msgid "Inline attributes" msgstr "Attributs en ligne" -#: ../src/ui/dialog/inkscape-preferences.cpp:1093 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "Put attributes on the same line as the element tag" msgstr "Place les attributs sur la mΓme ligne que l’étiquette de l’élΓ©ment" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "Indent, spaces:" msgstr "Distance d’indentation (en espaces)Β :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "The number of spaces to use for indenting nested elements; set to 0 for no indentation" msgstr "Le nombre d’espaces utilisΓ©s pour l’indentation d’élΓ©ments imbriquΓ©sΒ ; dΓ©finir Γ 0 pour dΓ©sactiver l’indentation" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "Path data" msgstr "DonnΓ©es de chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:1100 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "Allow relative coordinates" msgstr "Autorise les coordonnΓ©es relatives" -#: ../src/ui/dialog/inkscape-preferences.cpp:1101 +#: ../src/ui/dialog/inkscape-preferences.cpp:1102 msgid "If set, relative coordinates may be used in path data" msgstr "Si cochΓ©, les coordonnΓ©es relatives peuvent Γtre utilisΓ©es dans les donnΓ©es du chemin" -#: ../src/ui/dialog/inkscape-preferences.cpp:1103 +#: ../src/ui/dialog/inkscape-preferences.cpp:1104 msgid "Force repeat commands" msgstr "Imposer les commandes rΓ©pΓ©titives" -#: ../src/ui/dialog/inkscape-preferences.cpp:1104 +#: ../src/ui/dialog/inkscape-preferences.cpp:1105 msgid "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')" msgstr "Si cochΓ©, impose la rΓ©pΓ©tition de la mΓme commande de chemin (Γ©crit 'L 1,2 L 3,4' Γ la place de 'L 1,2 3,4')." -#: ../src/ui/dialog/inkscape-preferences.cpp:1106 +#: ../src/ui/dialog/inkscape-preferences.cpp:1107 msgid "Numbers" msgstr "Nombres" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Numeric precision:" msgstr "PrΓ©cision numΓ©riqueΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Significant figures of the values written to the SVG file" msgstr "Nombre de chiffres significatifs des valeurs Γ©crites dans le fichier SVG" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "Minimum exponent:" msgstr "Exposant minimumΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero" msgstr "La taille minimale d’un nombre Γ©crite dans le SVG est 10 Γ la puissance de cet exposantΒ ; les nombres plus petits s’écriront zΓ©ro" -#: ../src/ui/dialog/inkscape-preferences.cpp:1114 +#: ../src/ui/dialog/inkscape-preferences.cpp:1115 msgid "SVG output" msgstr "Sortie SVG" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "System default" msgstr "Valeur par dΓ©faut du systΓ¨me d’exploitation" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Albanian (sq)" msgstr "Albanais (sq)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Amharic (am)" msgstr "Amharique (am)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Arabic (ar)" msgstr "Arabe (ar)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Armenian (hy)" msgstr "ArmΓ©nien (hy)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Azerbaijani (az)" msgstr "AzΓ©ri (az)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Basque (eu)" msgstr "Basque (eu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Belarusian (be)" msgstr "BiΓ©lorusse (be)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bulgarian (bg)" msgstr "Bulgare (bg)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bengali (bn)" msgstr "Bengali (bn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Breton (br)" msgstr "Breton (br)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Catalan (ca)" msgstr "Catalan (ca)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Valencian Catalan (ca@valencia)" msgstr "Catalan Valencien (ca@valencia)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Chinese/China (zh_CN)" msgstr "Chinois/Chine (zh_CN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Chinese/Taiwan (zh_TW)" msgstr "Chinois/TaΓ―wan (zh_TW)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Croatian (hr)" msgstr "Croate (hr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Czech (cs)" msgstr "TchΓ¨que (cs)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Danish (da)" msgstr "Danois (da)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dutch (nl)" msgstr "NΓ©erlandais (nl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dzongkha (dz)" msgstr "Dzongkha (dz)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "German (de)" msgstr "Allemand (de)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Greek (el)" msgstr "Grec (el)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English (en)" msgstr "Anglais (en)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English/Australia (en_AU)" msgstr "Anglais/Australie (en_AU)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Canada (en_CA)" msgstr "Anglais/Canada (en_CA)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Great Britain (en_GB)" msgstr "Anglais/Grande-Bretagne (en_GB)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "Pig Latin (en_US@piglatin)" msgstr "Pig Latin (en_US@piglatin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Esperanto (eo)" msgstr "EspΓ©ranto (eo)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Estonian (et)" msgstr "Estonien (et)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Farsi (fa)" msgstr "Farsi (fa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Finnish (fi)" msgstr "Finnois (fi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "French (fr)" msgstr "FranΓ§ais (fr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Irish (ga)" msgstr "Irlandais (ga)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Galician (gl)" msgstr "Galicien (gl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hebrew (he)" msgstr "HΓ©breu (he)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hungarian (hu)" msgstr "Hongrois (hu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Indonesian (id)" msgstr "IndonΓ©sien (id)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Italian (it)" msgstr "Italien (it)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Japanese (ja)" msgstr "Japonais (ja)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Khmer (km)" msgstr "Khmer (km)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Kinyarwanda (rw)" msgstr "Kinyarouanda (rw)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Korean (ko)" msgstr "CorΓ©en (ko)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Lithuanian (lt)" msgstr "Lituanien (lt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Macedonian (mk)" msgstr "MacΓ©donien (mk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Mongolian (mn)" msgstr "Mongol (mn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Nepali (ne)" msgstr "NΓ©palais (ne)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian BokmΓ¥l (nb)" msgstr "NorvΓ©gien BokmΓ¥l (nb)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian Nynorsk (nn)" msgstr "NorvΓ©gien Nynorsk (nn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Panjabi (pa)" msgstr "Panjabi (pa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Polish (pl)" msgstr "Polonais (pl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese (pt)" msgstr "Portugais (pt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese/Brazil (pt_BR)" msgstr "Portugais/BrΓ©sil (pt_BR)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Romanian (ro)" msgstr "Roumain (ro)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Russian (ru)" msgstr "Russe (ru)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian (sr)" msgstr "Serbe (sr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian in Latin script (sr@latin)" msgstr "Serbe en alphabet latin (sr@latin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovak (sk)" msgstr "Slovaque (sk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovenian (sl)" msgstr "SlovΓ¨ne (sl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish (es)" msgstr "Espagnol (es)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish/Mexico (es_MX)" msgstr "Espagnol/Mexique (es_MX)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Swedish (sv)" msgstr "SuΓ©dois (sv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Telugu (te_IN)" msgstr "TΓ©lougou (te_IN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Thai (th)" msgstr "ThaΓ― (th)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Turkish (tr)" msgstr "Turc (tr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Ukrainian (uk)" msgstr "Ukrainien (uk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Vietnamese (vi)" msgstr "Vietnamien (vi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1163 msgid "Language (requires restart):" msgstr "Langue (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1163 +#: ../src/ui/dialog/inkscape-preferences.cpp:1164 msgid "Set the language for menus and number formats" msgstr "DΓ©finit la langue pour les menus et les formats numΓ©riques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Large" msgstr "Grand" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Small" msgstr "Petit" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Smaller" msgstr "Minuscule" -#: ../src/ui/dialog/inkscape-preferences.cpp:1169 +#: ../src/ui/dialog/inkscape-preferences.cpp:1170 msgid "Toolbox icon size:" msgstr "Taille des icΓ΄nes de la barre d’outilsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Set the size for the tool icons (requires restart)" msgstr "DΓ©finit la taille des icΓ΄nes de la barre d’outils (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/ui/dialog/inkscape-preferences.cpp:1174 msgid "Control bar icon size:" msgstr "Taille des icΓ΄nes de la barre de contrΓ΄le des outilsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1175 msgid "Set the size for the icons in tools' control bars to use (requires restart)" msgstr "DΓ©finit la taille des icΓ΄nes de la barre de contrΓ΄le des outils (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Secondary toolbar icon size:" msgstr "Taille des icΓ΄nes de la barre d’outils secondaireΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1178 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 msgid "Set the size for the icons in secondary toolbars to use (requires restart)" msgstr "DΓ©finit la taille des icΓ΄nes de la barre d’outils secondaire (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/ui/dialog/inkscape-preferences.cpp:1182 msgid "Work-around color sliders not drawing" msgstr "Contourner le non affichage des barres de dΓ©filement de couleur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 msgid "When on, will attempt to work around bugs in certain GTK themes drawing color sliders" msgstr "Si activΓ©, essayera de contourner un dΓ©faut d’affichage des barres de dΓ©filement de couleur liΓ© Γ certains thΓ¨mes GTK" -#: ../src/ui/dialog/inkscape-preferences.cpp:1189 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 msgid "Clear list" msgstr "Effacer la liste" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "Maximum documents in Open Recent:" msgstr "Nombre maximum de documents rΓ©centsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1195 +#: ../src/ui/dialog/inkscape-preferences.cpp:1196 msgid "Set the maximum length of the Open Recent list in the File menu, or clear the list" msgstr "DΓ©finit la longueur maximum de la liste « Documents rΓ©centsΒ Β» dans le menu « FichierΒ Β», ou efface la liste" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1199 msgid "Zoom correction factor (in %):" msgstr "Niveau de correction du zoom (en %)Β :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 +#: ../src/ui/dialog/inkscape-preferences.cpp:1200 msgid "Adjust the slider until the length of the ruler on your screen matches its real length. This information is used when zooming to 1:1, 1:2, etc., to display objects in their true sizes" msgstr "Ajuster le curseur pour faire correspondre la longueur de la rΓ¨gle sur l’écran avec sa vraie valeur. Cette information est utilisΓ©e lors des zoom de niveau 1:1, 1:2, etc. pour afficher les objets avec leur taille exacte" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Enable dynamic relayout for incomplete sections" msgstr "Activer la remise en forme dynamique des sections incomplΓ¨tes" -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "When on, will allow dynamic layout of components that are not completely finished being refactored" msgstr "Lorsqu’activΓ©, autorise la mise en forme dynamique des composants dont le rΓ©usinage n’est pas complΓ¨tement achevΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "Interface" msgstr "Interface" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +#: ../src/ui/dialog/inkscape-preferences.cpp:1214 msgid "Use current directory for \"Save As ...\"" msgstr "« Enregistrer sous...Β Β» utilise le dossier courant " -#: ../src/ui/dialog/inkscape-preferences.cpp:1215 +#: ../src/ui/dialog/inkscape-preferences.cpp:1216 msgid "When this option is on, the \"Save as...\" and \"Save a Copy\" dialogs will always open in the directory where the currently open document is; when it's off, each will open in the directory where you last saved a file using it" msgstr "Lorsque cette option est active, les boΓ®tes de dialogue « Enregistrer sous...Β Β» et « Enregistrer une copie...Β Β» s’ouvrent toujours dans le dossier contenant le document actuellement ouvertΒ ; si l’option est dΓ©sactivΓ©e, elles ouvrent alors le dernier dossier dans lequel un fichier a Γ©tΓ© enregistrΓ© avec ces boΓ®tes de dialogue" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1220 msgid "Enable autosave (requires restart)" msgstr "Activer l’enregistrement automatique (nΓ©cessite un redΓ©marrage)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1220 +#: ../src/ui/dialog/inkscape-preferences.cpp:1221 msgid "Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash" msgstr "Enregistre automatiquement les documents en cours, Γ intervalle donnΓ©, pour diminuer les risques de perte de donnΓ©es en cas de plantage de l’application" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes):" msgstr "Intervalle (en minutes)Β :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes) at which document will be autosaved" msgstr "DΓ©finit l’intervalle (en minutes) auquel l’espace de travail sera enregistrΓ© automatiquement" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgctxt "Filesystem" msgid "Path:" msgstr "CheminΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "The directory where autosaves will be written" msgstr "DΓ©finit l’emplacement des enregistrements automatiques" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Maximum number of autosaves:" msgstr "Nombre maximum d’enregistrementsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Maximum number of autosaved files; use this to limit the storage space used" msgstr "Nombre maximum d’enregistrements automatiquesΒ ; utiliser cette valeur pour limiter l’espace de stockage utilisΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "2x2" msgstr "2x2" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "4x4" msgstr "4x4" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "8x8" msgstr "8x8" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "16x16" msgstr "16x16" -#: ../src/ui/dialog/inkscape-preferences.cpp:1252 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "Oversample bitmaps:" msgstr "Sur-Γ©chantilloner les bitmapsΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 +#: ../src/ui/dialog/inkscape-preferences.cpp:1256 msgid "Automatically reload bitmaps" msgstr "Recharger automatiquement les bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Automatically reload linked images when file is changed on disk" msgstr "Active le rechargement automatique des images liΓ©es lorsqu’elles ont Γ©tΓ© modifiΓ©es sur le disque" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1260 msgid "Bitmap editor:" msgstr "Γ‰diteur de bitmapΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "Resolution for Create Bitmap Copy:" msgstr "RΓ©solution pour CrΓ©er une copie bitmapΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1262 +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 msgid "Resolution used by the Create Bitmap Copy command" msgstr "RΓ©solution utilisΓ©e par la commande CrΓ©er une copie bitmap" -#: ../src/ui/dialog/inkscape-preferences.cpp:1264 +#: ../src/ui/dialog/inkscape-preferences.cpp:1265 msgid "Bitmaps" msgstr "Bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Set the main spell check language" msgstr "DΓ©finit la langue principale du correcteur orthographique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1320 +#: ../src/ui/dialog/inkscape-preferences.cpp:1321 msgid "Second language:" msgstr "DeuxiΓ¨me langueΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Set the second spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "DΓ©finit la deuxiΓ¨me langue du correcteur orthographiqueΒ ; la vΓ©rification ne s’arrΓtera que sur les mots inconnus de toutes les langues sΓ©lectionnΓ©es" -#: ../src/ui/dialog/inkscape-preferences.cpp:1324 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Third language:" msgstr "TroisiΓ¨me langueΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1325 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "Set the third spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "DΓ©finit la troisiΓ¨me langue du correcteur orthographiqueΒ ; la vΓ©rification ne s’arrΓtera que sur les mots inconnus de toutes les langues sΓ©lectionnΓ©es" -#: ../src/ui/dialog/inkscape-preferences.cpp:1327 +#: ../src/ui/dialog/inkscape-preferences.cpp:1328 msgid "Ignore words with digits" msgstr "Ignorer les mots contenant des chiffres" -#: ../src/ui/dialog/inkscape-preferences.cpp:1329 +#: ../src/ui/dialog/inkscape-preferences.cpp:1330 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "Ignorer les mots contenant des chiffres, comme « R2D2Β Β»" -#: ../src/ui/dialog/inkscape-preferences.cpp:1331 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Ignore words in ALL CAPITALS" msgstr "Ignorer les mots tout en capitales" -#: ../src/ui/dialog/inkscape-preferences.cpp:1333 +#: ../src/ui/dialog/inkscape-preferences.cpp:1334 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "Ignorer les mots tout en capitales, comme « GNUΒ Β»" -#: ../src/ui/dialog/inkscape-preferences.cpp:1335 +#: ../src/ui/dialog/inkscape-preferences.cpp:1336 msgid "Spellcheck" msgstr "VΓ©rification orthographique" -#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +#: ../src/ui/dialog/inkscape-preferences.cpp:1355 msgid "Add label comments to printing output" msgstr "Ajouter les labels de commentaires Γ l’impression" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "When on, a comment will be added to the raw print output, marking the rendered output for an object with its label" msgstr "Si cochΓ©, un commentaire est ajoutΓ© Γ l’impression brute, signalant le rendu d’un objet avec son label" -#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1359 msgid "Prevent sharing of gradient definitions" msgstr "Interdire le partage des dΓ©finitions de dΓ©gradΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:1360 +#: ../src/ui/dialog/inkscape-preferences.cpp:1361 msgid "When on, shared gradient definitions are automatically forked on change; uncheck to allow sharing of gradient definitions so that editing one object may affect other objects using the same gradient" msgstr "Si cochΓ©, les dΓ©finitions communes de dΓ©gradΓ©s sont automatiquement dupliquΓ©es lors d’une modification; dΓ©cocher pour autoriser le partage des dΓ©finitions de dΓ©gradΓ© de maniΓ¨re Γ ce que la modification d’un objet puisse affecter tous les objets utilisant le mΓme dΓ©gradΓ©" -#: ../src/ui/dialog/inkscape-preferences.cpp:1363 +#: ../src/ui/dialog/inkscape-preferences.cpp:1364 msgid "Simplification threshold:" msgstr "Seuil de simplificationΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1364 +#: ../src/ui/dialog/inkscape-preferences.cpp:1365 msgid "How strong is the Node tool's Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold." msgstr "Force par dΓ©faut de la commande Simplifier. En faisant appel Γ cette commande plusieurs fois de suite, elle agira de faΓ§on de plus en plus agressiveΒ ; un appel aprΓ¨s une pause restaurera la valeur par dΓ©faut." -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "Latency skew:" msgstr "DΓ©calage temporelΒ :" -#: ../src/ui/dialog/inkscape-preferences.cpp:1368 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 msgid "Factor by which the event clock is skewed from the actual time (0.9766 on some systems)" msgstr "Facteur de dΓ©calage entre l’horloge de l’évΓ©nement et le temps rΓ©el (0,9766 sur certains systΓ¨mes)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1370 +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgid "Pre-render named icons" msgstr "PrΓ©afficher les icΓ΄nes nommΓ©es" -#: ../src/ui/dialog/inkscape-preferences.cpp:1372 +#: ../src/ui/dialog/inkscape-preferences.cpp:1373 msgid "When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification" msgstr "Si cochΓ©, les icΓ΄nes nommΓ©es sont rendues avant l’affichage de l’interface utilisateur. Il s’agit du contournement d’un bug sur la notification des icΓ΄nes nommΓ©es dans GTK+." #. TRANSLATORS: following strings are paths in Inkscape preferences - Misc - System info -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 +#: ../src/ui/dialog/inkscape-preferences.cpp:1379 msgid "User config: " msgstr "Configuration utilisateurΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1382 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 msgid "User data: " msgstr "DonnΓ©es utilisateurΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1386 +#: ../src/ui/dialog/inkscape-preferences.cpp:1387 msgid "User cache: " msgstr "Cache utilisateurΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1390 +#: ../src/ui/dialog/inkscape-preferences.cpp:1391 msgid "System config: " msgstr "Configuration systΓ¨meΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 msgid "System data: " msgstr "DonnΓ©es systΓ¨meΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1397 msgid "PIXMAP: " msgstr "PixmapΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1401 msgid "DATA: " msgstr "DonnΓ©esΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "UI: " msgstr "Interface utilisateurΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1414 msgid "Icon theme: " msgstr "ThΓ¨me d’icΓ΄nesΒ : " -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "System info" msgstr "Informations systΓ¨me" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "General system information" msgstr "Informations gΓ©nΓ©rales" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 +#: ../src/ui/dialog/inkscape-preferences.cpp:1431 msgid "Misc" msgstr "Divers" @@ -17687,8 +17743,8 @@ msgstr "Passes multiplesΒ : crΓ©e un groupe de chemins" #. # end multiple scan #. ## end mode page #: ../src/ui/dialog/tracedialog.cpp:563 -#: ../src/widgets/toolbox.cpp:4502 -#: ../src/widgets/toolbox.cpp:4760 +#: ../src/widgets/toolbox.cpp:4520 +#: ../src/widgets/toolbox.cpp:4778 msgid "Mode" msgstr "Mode" @@ -18621,13 +18677,13 @@ msgstr "Aucun contour" #: ../src/ui/widget/selected-style.cpp:167 #: ../src/ui/widget/style-swatch.cpp:277 -#: ../src/widgets/paint-selector.cpp:237 +#: ../src/widgets/paint-selector.cpp:233 msgid "Pattern" msgstr "Motif" #: ../src/ui/widget/selected-style.cpp:170 #: ../src/ui/widget/style-swatch.cpp:279 -#: ../src/widgets/paint-selector.cpp:1025 +#: ../src/widgets/paint-selector.cpp:1021 msgid "Pattern fill" msgstr "Motif de remplissage" @@ -18753,7 +18809,7 @@ msgid "White" msgstr "Blanc" #: ../src/ui/widget/selected-style.cpp:237 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/widgets/sp-color-icc-selector.cpp:232 #: ../src/widgets/sp-color-scales.cpp:466 #: ../src/widgets/sp-color-scales.cpp:467 msgid "Black" @@ -21004,17 +21060,17 @@ msgid "Set pattern on stroke" msgstr "Appliquer un motif Γ un contour" #. Family frame -#: ../src/widgets/font-selector.cpp:150 +#: ../src/widgets/font-selector.cpp:143 msgid "Font family" msgstr "Famille de police" #. Style frame -#: ../src/widgets/font-selector.cpp:181 +#: ../src/widgets/font-selector.cpp:174 msgctxt "Font selector" msgid "Style" msgstr "Style" -#: ../src/widgets/font-selector.cpp:219 +#: ../src/widgets/font-selector.cpp:212 #: ../share/extensions/dots.inx.h:2 msgid "Font size:" msgstr "Taille de policeΒ :" @@ -21061,14 +21117,14 @@ msgid "Edit the stops of the gradient" msgstr "Γ‰diter les stops du dΓ©gradΓ©" #: ../src/widgets/gradient-toolbar.cpp:543 -#: ../src/widgets/toolbox.cpp:2899 -#: ../src/widgets/toolbox.cpp:2979 -#: ../src/widgets/toolbox.cpp:3303 -#: ../src/widgets/toolbox.cpp:3341 -#: ../src/widgets/toolbox.cpp:3959 -#: ../src/widgets/toolbox.cpp:3983 -#: ../src/widgets/toolbox.cpp:5607 -#: ../src/widgets/toolbox.cpp:5636 +#: ../src/widgets/toolbox.cpp:2917 +#: ../src/widgets/toolbox.cpp:2997 +#: ../src/widgets/toolbox.cpp:3321 +#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3977 +#: ../src/widgets/toolbox.cpp:4001 +#: ../src/widgets/toolbox.cpp:5625 +#: ../src/widgets/toolbox.cpp:5654 msgid "<b>New:</b>" msgstr "<b>CrΓ©erΒ :</b>" @@ -21096,18 +21152,18 @@ msgstr "Appliquer le dΓ©gradΓ© au contour" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("<b>Average:</b>")); #: ../src/widgets/gradient-toolbar.cpp:622 -#: ../src/widgets/toolbox.cpp:2901 -#: ../src/widgets/toolbox.cpp:3311 +#: ../src/widgets/toolbox.cpp:2919 #: ../src/widgets/toolbox.cpp:3329 -#: ../src/widgets/toolbox.cpp:3961 -#: ../src/widgets/toolbox.cpp:3972 -#: ../src/widgets/toolbox.cpp:5610 -#: ../src/widgets/toolbox.cpp:5621 +#: ../src/widgets/toolbox.cpp:3347 +#: ../src/widgets/toolbox.cpp:3979 +#: ../src/widgets/toolbox.cpp:3990 +#: ../src/widgets/toolbox.cpp:5628 +#: ../src/widgets/toolbox.cpp:5639 msgid "<b>Change:</b>" msgstr "<b>ModifierΒ :</b>" #: ../src/widgets/gradient-vector.cpp:275 -#: ../src/widgets/paint-selector.cpp:912 +#: ../src/widgets/paint-selector.cpp:908 #: ../src/widgets/stroke-style.cpp:421 msgid "No document selected" msgstr "Aucun document sΓ©lectionnΓ©" @@ -21124,217 +21180,217 @@ msgstr "Aucun dΓ©gradΓ© n’est sΓ©lectionnΓ©" msgid "No stops in gradient" msgstr "Il n’y a pas de stop dans le dΓ©gradΓ©" -#: ../src/widgets/gradient-vector.cpp:667 +#: ../src/widgets/gradient-vector.cpp:666 msgid "Change gradient stop offset" msgstr "Modifier le dΓ©calage d’un stop de dΓ©gradΓ©" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:806 +#: ../src/widgets/gradient-vector.cpp:805 msgid "Add stop" msgstr "Ajouter un stop" -#: ../src/widgets/gradient-vector.cpp:809 +#: ../src/widgets/gradient-vector.cpp:808 msgid "Add another control stop to gradient" msgstr "Ajouter un nouveau stop de contrΓ΄le au dΓ©gradΓ©" -#: ../src/widgets/gradient-vector.cpp:811 +#: ../src/widgets/gradient-vector.cpp:810 msgid "Delete stop" msgstr "Supprimer un stop" -#: ../src/widgets/gradient-vector.cpp:814 +#: ../src/widgets/gradient-vector.cpp:813 msgid "Delete current control stop from gradient" msgstr "Supprimer le stop courant du dΓ©gradΓ©" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:870 +#: ../src/widgets/gradient-vector.cpp:869 msgid "Stop Color" msgstr "Couleur du stop" -#: ../src/widgets/gradient-vector.cpp:900 +#: ../src/widgets/gradient-vector.cpp:899 msgid "Gradient editor" msgstr "Γ‰diteur de dΓ©gradΓ©" -#: ../src/widgets/gradient-vector.cpp:1188 +#: ../src/widgets/gradient-vector.cpp:1187 msgid "Change gradient stop color" msgstr "Modifier la couleur d’un stop de dΓ©gradΓ©" -#: ../src/widgets/paint-selector.cpp:229 -#: ../src/widgets/paint-selector.cpp:612 +#: ../src/widgets/paint-selector.cpp:225 +#: ../src/widgets/paint-selector.cpp:608 msgid "No paint" msgstr "Pas de remplissage" -#: ../src/widgets/paint-selector.cpp:231 -#: ../src/widgets/paint-selector.cpp:676 +#: ../src/widgets/paint-selector.cpp:227 +#: ../src/widgets/paint-selector.cpp:672 msgid "Flat color" msgstr "Aplat" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:233 -#: ../src/widgets/paint-selector.cpp:739 +#: ../src/widgets/paint-selector.cpp:229 +#: ../src/widgets/paint-selector.cpp:735 msgid "Linear gradient" msgstr "DΓ©gradΓ© linΓ©aire" -#: ../src/widgets/paint-selector.cpp:235 -#: ../src/widgets/paint-selector.cpp:742 +#: ../src/widgets/paint-selector.cpp:231 +#: ../src/widgets/paint-selector.cpp:738 msgid "Radial gradient" msgstr "DΓ©gradΓ© radial" -#: ../src/widgets/paint-selector.cpp:239 +#: ../src/widgets/paint-selector.cpp:235 msgid "Swatch" msgstr "Γ‰chantillon" -#: ../src/widgets/paint-selector.cpp:241 +#: ../src/widgets/paint-selector.cpp:237 msgid "Unset paint (make it undefined so it can be inherited)" msgstr "Remplissage indΓ©fini (permettant ainsi qu’il soit hΓ©ritΓ©)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:253 +#: ../src/widgets/paint-selector.cpp:249 msgid "Any path self-intersections or subpaths create holes in the fill (fill-rule: evenodd)" msgstr "Toute intersection d’un chemin avec lui-mΓme ou avec un de ses sous-chemins engendrera des lacunes dans le remplissage (fill-rule: evenodd)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:264 +#: ../src/widgets/paint-selector.cpp:260 msgid "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" msgstr "Le remplissage est sans lacune, sauf si un sous-chemin est en sens inverse (fill-rule: nonzero)" -#: ../src/widgets/paint-selector.cpp:579 +#: ../src/widgets/paint-selector.cpp:575 msgid "No objects" msgstr "Aucun objet" -#: ../src/widgets/paint-selector.cpp:590 +#: ../src/widgets/paint-selector.cpp:586 msgid "Multiple styles" msgstr "Styles multiples" -#: ../src/widgets/paint-selector.cpp:601 +#: ../src/widgets/paint-selector.cpp:597 msgid "Paint is undefined" msgstr "Remplissage indΓ©fini" -#: ../src/widgets/paint-selector.cpp:1012 +#: ../src/widgets/paint-selector.cpp:1008 msgid "Use the <b>Node tool</b> to adjust position, scale, and rotation of the pattern on canvas. Use <b>Object > Pattern > Objects to Pattern</b> to create a new pattern from selection." msgstr "Utiliser l'<b>outil nΕ“ud</b> pour ajuster la position, l’échelle et l’angle du motif sur la zone de travail. Utiliser <b>Objet > Motifs > Objets en Motif</b> pour crΓ©er un nouveau motif Γ partir de la sΓ©lection." -#: ../src/widgets/paint-selector.cpp:1100 +#: ../src/widgets/paint-selector.cpp:1096 msgid "Swatch fill" msgstr "Remplissage de l’échantillon" -#: ../src/widgets/select-toolbar.cpp:249 +#: ../src/widgets/select-toolbar.cpp:256 msgid "Transform by toolbar" msgstr "Transformer via la barre d’outils" -#: ../src/widgets/select-toolbar.cpp:322 +#: ../src/widgets/select-toolbar.cpp:329 msgid "Now <b>stroke width</b> is <b>scaled</b> when objects are scaled." msgstr "Maintenant l'<b>Γ©paisseur de contour</b> est <b>redimensionnΓ©e</b> quand les objets sont redimensionnΓ©s." -#: ../src/widgets/select-toolbar.cpp:324 +#: ../src/widgets/select-toolbar.cpp:331 msgid "Now <b>stroke width</b> is <b>not scaled</b> when objects are scaled." msgstr "Maintenant l'<b>Γ©paisseur de contour</b> n’est <b> pas redimensionnΓ©e</b> quand les objets sont redimensionnΓ©s." -#: ../src/widgets/select-toolbar.cpp:335 +#: ../src/widgets/select-toolbar.cpp:342 msgid "Now <b>rounded rectangle corners</b> are <b>scaled</b> when rectangles are scaled." msgstr "Maintenant les <b>coins arrondis de rectangles</b> sont <b>redimensionnΓ©s</b> quand les rectangles sont redimensionnΓ©s." -#: ../src/widgets/select-toolbar.cpp:337 +#: ../src/widgets/select-toolbar.cpp:344 msgid "Now <b>rounded rectangle corners</b> are <b>not scaled</b> when rectangles are scaled." msgstr "Maintenant les <b>coins arrondis de rectangles</b> ne sont <b>pas redimensionnΓ©s</b> quand les rectangles sont redimensionnΓ©s." -#: ../src/widgets/select-toolbar.cpp:348 +#: ../src/widgets/select-toolbar.cpp:355 msgid "Now <b>gradients</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "Maintenant les <b>dΓ©gradΓ©s</b> sont <b>transformΓ©s</b> lors des transformations de leurs objets (dΓ©placement, redimensionnement, rotation ou inclinaison)." -#: ../src/widgets/select-toolbar.cpp:350 +#: ../src/widgets/select-toolbar.cpp:357 msgid "Now <b>gradients</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "Maintenant les <b>dΓ©gradΓ©s</b> restent <b>fixes</b> lors des transformations de leurs objets (dΓ©placement, redimensionnement, rotation, ou inclinaison)." -#: ../src/widgets/select-toolbar.cpp:361 +#: ../src/widgets/select-toolbar.cpp:368 msgid "Now <b>patterns</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "Maintenant les <b>motifs</b> sont <b>transformΓ©s</b> lors des transformations de leurs objets (dΓ©placement, redimensionnement, rotation ou inclinaison)." -#: ../src/widgets/select-toolbar.cpp:363 +#: ../src/widgets/select-toolbar.cpp:370 msgid "Now <b>patterns</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "Maintenant les <b>motifs</b> restent <b>fixes</b> lors des transformations de leurs objets (dΓ©placement, redimensionnement, rotation, ou inclinaison)." #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X position" msgstr "Position X" -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X:" msgstr "XΒ :" -#: ../src/widgets/select-toolbar.cpp:478 +#: ../src/widgets/select-toolbar.cpp:485 msgid "Horizontal coordinate of selection" msgstr "CoordonnΓ©e horizontale de la sΓ©lection" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y position" msgstr "Position Y" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y:" msgstr "YΒ :" -#: ../src/widgets/select-toolbar.cpp:484 +#: ../src/widgets/select-toolbar.cpp:491 msgid "Vertical coordinate of selection" msgstr "CoordonnΓ©e verticale de la sΓ©lection" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "Width" msgstr "Largeur" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "W:" msgstr "LΒ :" -#: ../src/widgets/select-toolbar.cpp:490 +#: ../src/widgets/select-toolbar.cpp:497 msgid "Width of selection" msgstr "Largeur de la sΓ©lection" -#: ../src/widgets/select-toolbar.cpp:497 +#: ../src/widgets/select-toolbar.cpp:504 msgid "Lock width and height" msgstr "Verrouiller la largeur et la hauteur" -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:505 msgid "When locked, change both width and height by the same proportion" msgstr "Si cochΓ©, la hauteur et la largeur sont modifiΓ©es selon la mΓme proportion" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "Height" msgstr "Hauteur" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "H:" msgstr "HΒ :" -#: ../src/widgets/select-toolbar.cpp:509 +#: ../src/widgets/select-toolbar.cpp:516 msgid "Height of selection" msgstr "Hauteur de la sΓ©lection" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "Affect:" msgstr "AffecterΒ :" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "Control whether or not to scale stroke widths, scale rectangle corners, transform gradient fills, and transform pattern fills with the object" msgstr "DΓ©finit si l’épaisseur des contours, les coins des rectangles, et les remplissages par gradient ou par motif doivent Γtre affectΓ©s par le redimensionnement de l’objet" -#: ../src/widgets/select-toolbar.cpp:565 +#: ../src/widgets/select-toolbar.cpp:572 msgid "Scale rounded corners" msgstr "Redimensionner les coins arrondis des rectangles" -#: ../src/widgets/select-toolbar.cpp:576 +#: ../src/widgets/select-toolbar.cpp:583 msgid "Move gradients" msgstr "DΓ©placer les dΓ©gradΓ©s" -#: ../src/widgets/select-toolbar.cpp:587 +#: ../src/widgets/select-toolbar.cpp:594 msgid "Move patterns" msgstr "DΓ©placer les motifs" @@ -21342,105 +21398,105 @@ msgstr "DΓ©placer les motifs" msgid "System" msgstr "SystΓ¨me" -#: ../src/widgets/sp-color-icc-selector.cpp:105 +#: ../src/widgets/sp-color-icc-selector.cpp:106 msgid "CMS" msgstr "CMS" # Red (in RGB) -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:402 msgid "_R:" msgstr "_RΒ :" # Green (in RGB) -#: ../src/widgets/sp-color-icc-selector.cpp:213 #: ../src/widgets/sp-color-icc-selector.cpp:214 +#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-scales.cpp:405 msgid "_G:" msgstr "_VΒ :" # Blue (in RGB) -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:408 msgid "_B:" msgstr "_BΒ :" # Hue (in HSL) -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:428 msgid "_H:" msgstr "_TΒ :" # Saturation (in HSL) -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:431 msgid "_S:" msgstr "_SΒ :" # Luminosity (in HSL) -#: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:434 msgid "_L:" msgstr "_LΒ :" # Cyan (in CYMK) -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:456 msgid "_C:" msgstr "_CΒ :" # Magenta (in CYMK) -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:459 msgid "_M:" msgstr "_MΒ :" # BlacK (in CYMK) -#: ../src/widgets/sp-color-icc-selector.cpp:217 +#: ../src/widgets/sp-color-icc-selector.cpp:218 #: ../src/widgets/sp-color-scales.cpp:465 msgid "_K:" msgstr "_NΒ :" -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/widgets/sp-color-icc-selector.cpp:229 msgid "Gray" msgstr "Niveaux de gris" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:457 #: ../src/widgets/sp-color-scales.cpp:458 msgid "Cyan" msgstr "Cyan" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:460 #: ../src/widgets/sp-color-scales.cpp:461 msgid "Magenta" msgstr "Magenta" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:463 #: ../src/widgets/sp-color-scales.cpp:464 msgid "Yellow" msgstr "Jaune" -#: ../src/widgets/sp-color-icc-selector.cpp:287 +#: ../src/widgets/sp-color-icc-selector.cpp:294 msgid "Fix" msgstr "Fixer" -#: ../src/widgets/sp-color-icc-selector.cpp:290 +#: ../src/widgets/sp-color-icc-selector.cpp:297 msgid "Fix RGB fallback to match icc-color() value." msgstr "Fixer une valeur RVB de secours pour correspondre Γ la valeur icc-color()." # Alpha (opacity) #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:371 +#: ../src/widgets/sp-color-icc-selector.cpp:378 #: ../src/widgets/sp-color-scales.cpp:411 #: ../src/widgets/sp-color-scales.cpp:437 #: ../src/widgets/sp-color-scales.cpp:468 @@ -21448,8 +21504,8 @@ msgstr "Fixer une valeur RVB de secours pour correspondre Γ la valeur icc-color msgid "_A:" msgstr "_AΒ :" -#: ../src/widgets/sp-color-icc-selector.cpp:381 -#: ../src/widgets/sp-color-icc-selector.cpp:393 +#: ../src/widgets/sp-color-icc-selector.cpp:388 +#: ../src/widgets/sp-color-icc-selector.cpp:400 #: ../src/widgets/sp-color-scales.cpp:412 #: ../src/widgets/sp-color-scales.cpp:413 #: ../src/widgets/sp-color-scales.cpp:438 @@ -21461,24 +21517,24 @@ msgstr "_AΒ :" msgid "Alpha (opacity)" msgstr "Alpha (opacitΓ©)" -#: ../src/widgets/sp-color-notebook.cpp:337 +#: ../src/widgets/sp-color-notebook.cpp:339 msgid "Color Managed" msgstr "Couleur gΓ©rΓ©e" -#: ../src/widgets/sp-color-notebook.cpp:344 +#: ../src/widgets/sp-color-notebook.cpp:346 msgid "Out of gamut!" msgstr "Hors gamutΒ !" -#: ../src/widgets/sp-color-notebook.cpp:351 +#: ../src/widgets/sp-color-notebook.cpp:353 msgid "Too much ink!" msgstr "Trop d’encreΒ !" #. Create RGBA entry and color preview -#: ../src/widgets/sp-color-notebook.cpp:358 +#: ../src/widgets/sp-color-notebook.cpp:360 msgid "RGBA_:" msgstr "RVBAΒ _:" -#: ../src/widgets/sp-color-notebook.cpp:366 +#: ../src/widgets/sp-color-notebook.cpp:368 msgid "Hexadecimal RGBA value of the color" msgstr "Valeur hexadΓ©cimale RVBA de la couleur" @@ -21820,7 +21876,7 @@ msgid "Y coordinate of selected node(s)" msgstr "CoordonnΓ©e Y de la sΓ©lection" #: ../src/widgets/toolbox.cpp:1667 -#: ../src/widgets/toolbox.cpp:7607 +#: ../src/widgets/toolbox.cpp:7625 msgid "Font Size" msgstr "Taille de police" @@ -21837,1405 +21893,1414 @@ msgstr "Taille de police Γ utiliser pour les labels des mesures" msgid "The units to be used for the measurements" msgstr "UnitΓ© Γ utiliser pour les mesures" -#: ../src/widgets/toolbox.cpp:2281 +#: ../src/widgets/toolbox.cpp:2286 msgid "Bounding box" msgstr "BoΓ®te englobante" -#: ../src/widgets/toolbox.cpp:2281 +#: ../src/widgets/toolbox.cpp:2286 msgid "Snap bounding box corners" msgstr "Aimanter aux coins des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2290 +#: ../src/widgets/toolbox.cpp:2295 msgid "Bounding box edges" msgstr "Bords des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2290 +#: ../src/widgets/toolbox.cpp:2295 msgid "Snap to edges of a bounding box" msgstr "Aimanter aux bords des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2299 +#: ../src/widgets/toolbox.cpp:2304 msgid "Bounding box corners" msgstr "Coins des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2299 +#: ../src/widgets/toolbox.cpp:2304 msgid "Snap to bounding box corners" msgstr "Aimanter aux coins des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2308 +#: ../src/widgets/toolbox.cpp:2313 msgid "BBox Edge Midpoints" msgstr "Milieux des bords de la boΓ®te englobante" -#: ../src/widgets/toolbox.cpp:2308 +#: ../src/widgets/toolbox.cpp:2313 msgid "Snap from and to midpoints of bounding box edges" msgstr "Aimanter depuis et vers le milieu des bords des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2323 msgid "BBox Centers" msgstr "Centre des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2323 msgid "Snapping from and to centers of bounding boxes" msgstr "Aimanter depuis et vers le centre des boΓ®tes englobantes" -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2332 msgid "Snap nodes or handles" msgstr "Aimanter aux nΕ“uds ou aux poignΓ©es" -#: ../src/widgets/toolbox.cpp:2335 +#: ../src/widgets/toolbox.cpp:2340 msgid "Snap to paths" msgstr "Aimanter aux chemins" -#: ../src/widgets/toolbox.cpp:2344 +#: ../src/widgets/toolbox.cpp:2349 msgid "Path intersections" msgstr "Intersections des chemins" -#: ../src/widgets/toolbox.cpp:2344 +#: ../src/widgets/toolbox.cpp:2349 msgid "Snap to path intersections" msgstr "Aimanter aux intersections des chemins" -#: ../src/widgets/toolbox.cpp:2353 +#: ../src/widgets/toolbox.cpp:2358 msgid "To nodes" msgstr "Aux nΕ“uds" -#: ../src/widgets/toolbox.cpp:2353 +#: ../src/widgets/toolbox.cpp:2358 msgid "Snap to cusp nodes" msgstr "Aimanter aux points de rebroussement" -#: ../src/widgets/toolbox.cpp:2362 +#: ../src/widgets/toolbox.cpp:2367 msgid "Smooth nodes" msgstr "NΕ“uds doux" -#: ../src/widgets/toolbox.cpp:2362 +#: ../src/widgets/toolbox.cpp:2367 msgid "Snap to smooth nodes" msgstr "Aimanter aux nΕ“uds doux" -#: ../src/widgets/toolbox.cpp:2371 +#: ../src/widgets/toolbox.cpp:2376 msgid "Line Midpoints" msgstr "Milieu de ligne" -#: ../src/widgets/toolbox.cpp:2371 +#: ../src/widgets/toolbox.cpp:2376 msgid "Snap from and to midpoints of line segments" msgstr "Aimanter depuis et vers le milieu des segments" -#: ../src/widgets/toolbox.cpp:2380 +#: ../src/widgets/toolbox.cpp:2385 msgid "Others" msgstr "Autres" -#: ../src/widgets/toolbox.cpp:2380 +#: ../src/widgets/toolbox.cpp:2385 msgid "Snap other points (centers, guide origins, gradient handles, etc.)" msgstr "Aimanter Γ d'autres points (centres, origines de guide, poignΓ©es de gradients, etc.)" -#: ../src/widgets/toolbox.cpp:2388 +#: ../src/widgets/toolbox.cpp:2393 msgid "Object Centers" msgstr "Centres d’objet" -#: ../src/widgets/toolbox.cpp:2388 +#: ../src/widgets/toolbox.cpp:2393 msgid "Snap from and to centers of objects" msgstr "Aimanter depuis et vers le centre des objets" -#: ../src/widgets/toolbox.cpp:2397 +#: ../src/widgets/toolbox.cpp:2402 msgid "Rotation Centers" msgstr "Centres de rotation" -#: ../src/widgets/toolbox.cpp:2397 +#: ../src/widgets/toolbox.cpp:2402 msgid "Snap from and to an item's rotation center" msgstr "Aimanter depuis et vers le centre de rotation d’un objet" -#: ../src/widgets/toolbox.cpp:2406 +#: ../src/widgets/toolbox.cpp:2411 +msgid "Text baseline" +msgstr "Ligne de base de texte" + +#: ../src/widgets/toolbox.cpp:2411 +#, fuzzy +msgid "Snap from and to text anchors and baselines" +msgstr "Aimanter depuis et vers le centre des objets" + +#: ../src/widgets/toolbox.cpp:2421 msgid "Page border" msgstr "Bords de la page" -#: ../src/widgets/toolbox.cpp:2406 +#: ../src/widgets/toolbox.cpp:2421 msgid "Snap to the page border" msgstr "Aimanter aux bords de la page" -#: ../src/widgets/toolbox.cpp:2415 +#: ../src/widgets/toolbox.cpp:2430 msgid "Snap to grids" msgstr "Aimanter aux grilles" -#: ../src/widgets/toolbox.cpp:2424 +#: ../src/widgets/toolbox.cpp:2439 msgid "Snap to guides" msgstr "Aimanter aux guides" -#: ../src/widgets/toolbox.cpp:2634 +#: ../src/widgets/toolbox.cpp:2652 msgid "Star: Change number of corners" msgstr "Γ‰toileΒ : modifier le nombre de sommets" -#: ../src/widgets/toolbox.cpp:2682 +#: ../src/widgets/toolbox.cpp:2700 msgid "Star: Change spoke ratio" msgstr "Γ‰toileΒ : modifier le ratio des rayons" -#: ../src/widgets/toolbox.cpp:2727 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make polygon" msgstr "Transformer en polygone" -#: ../src/widgets/toolbox.cpp:2727 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make star" msgstr "Transformer en Γ©toile" -#: ../src/widgets/toolbox.cpp:2765 +#: ../src/widgets/toolbox.cpp:2783 msgid "Star: Change rounding" msgstr "Γ‰toileΒ : modifier l’arrondi" -#: ../src/widgets/toolbox.cpp:2803 +#: ../src/widgets/toolbox.cpp:2821 msgid "Star: Change randomization" msgstr "Γ‰toileΒ : modifier le hasard" -#: ../src/widgets/toolbox.cpp:2998 +#: ../src/widgets/toolbox.cpp:3016 msgid "Regular polygon (with one handle) instead of a star" msgstr "Polygone rΓ©gulier (avec une poignΓ©e) au lieu d’une Γ©toile" -#: ../src/widgets/toolbox.cpp:3005 +#: ../src/widgets/toolbox.cpp:3023 msgid "Star instead of a regular polygon (with one handle)" msgstr "Γ‰toile au lieu d’un polygone rΓ©gulier (avec une poignΓ©e)" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "triangle/tri-star" msgstr "triangle/Γ©toile Γ trois branches" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "square/quad-star" msgstr "carrΓ©/Γ©toile Γ quatre branches" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "pentagon/five-pointed star" msgstr "pentagone/Γ©toile Γ cinq branches" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "hexagon/six-pointed star" msgstr "hexagone/Γ©toile Γ six branches" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners" msgstr "Sommets" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners:" msgstr "SommetsΒ :" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Number of corners of a polygon or star" msgstr "Nombre de sommets du polygone ou de l’étoile" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "thin-ray star" msgstr "Γ©toile Γ branches fines" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "pentagram" msgstr "pentagramme" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "hexagram" msgstr "hexagramme" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "heptagram" msgstr "heptagramme" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "octagram" msgstr "octagramme" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "regular polygon" msgstr "polygone rΓ©gulier" -#: ../src/widgets/toolbox.cpp:3045 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio" msgstr "Ratio des rayons" -#: ../src/widgets/toolbox.cpp:3045 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio:" msgstr "Ratio des rayonsΒ :" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/toolbox.cpp:3048 +#: ../src/widgets/toolbox.cpp:3066 msgid "Base radius to tip radius ratio" msgstr "Rapport du rayon intΓ©rieur sur le rayon extΓ©rieur" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "stretched" msgstr "Γ©tirΓ©" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "twisted" msgstr "tordu" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly pinched" msgstr "lΓ©gΓ¨rement pincΓ©" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "NOT rounded" msgstr "PAS arrondi" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly rounded" msgstr "lΓ©ger arrondi" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "visibly rounded" msgstr "arrondi visible" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "well rounded" msgstr "bien arrondi" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "amply rounded" msgstr "largement arrondi" -#: ../src/widgets/toolbox.cpp:3066 -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3099 msgid "blown up" msgstr "gonflΓ©" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded" msgstr "Arrondi" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded:" msgstr "ArrondiΒ :" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "How much rounded are the corners (0 for sharp)" msgstr "QuantitΓ© d’arrondi des sommets (0 pour pointu)" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "NOT randomized" msgstr "PAS alΓ©atoire" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "slightly irregular" msgstr "lΓ©gΓ©rement irrΓ©gulier" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "visibly randomized" msgstr "sensiblement alΓ©atoire" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "strongly randomized" msgstr "trΓ¨s alΓ©atoire" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized" msgstr "AlΓ©atoire" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized:" msgstr "HasardΒ :" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Scatter randomly the corners and angles" msgstr "Disperser alΓ©atoirement les sommets et les angles" -#: ../src/widgets/toolbox.cpp:3099 -#: ../src/widgets/toolbox.cpp:4034 -#: ../src/widgets/toolbox.cpp:4289 -#: ../src/widgets/toolbox.cpp:8586 +#: ../src/widgets/toolbox.cpp:3117 +#: ../src/widgets/toolbox.cpp:4052 +#: ../src/widgets/toolbox.cpp:4307 +#: ../src/widgets/toolbox.cpp:8604 msgid "Defaults" msgstr "R-Γ -z" -#: ../src/widgets/toolbox.cpp:3100 -#: ../src/widgets/toolbox.cpp:4035 +#: ../src/widgets/toolbox.cpp:3118 +#: ../src/widgets/toolbox.cpp:4053 msgid "Reset shape parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Restaurer les prΓ©fΓ©rences de la forme par dΓ©faut (changez les valeurs par dΓ©faut dans Inkscape PrΓ©fΓ©rences>Outils)" -#: ../src/widgets/toolbox.cpp:3172 +#: ../src/widgets/toolbox.cpp:3190 msgid "Change rectangle" msgstr "Modifier un rectangle" -#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3377 msgid "W:" msgstr "LΒ :" -#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3377 msgid "Width of rectangle" msgstr "Largeur du rectangle" -#: ../src/widgets/toolbox.cpp:3376 +#: ../src/widgets/toolbox.cpp:3394 msgid "H:" msgstr "HΒ :" -#: ../src/widgets/toolbox.cpp:3376 +#: ../src/widgets/toolbox.cpp:3394 msgid "Height of rectangle" msgstr "Hauteur du rectangle" -#: ../src/widgets/toolbox.cpp:3390 -#: ../src/widgets/toolbox.cpp:3405 +#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3423 msgid "not rounded" msgstr "pas d’arrondi" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius" msgstr "Rayon horizontal" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Rx:" msgstr "RxΒ :" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius of rounded corners" msgstr "Rayon horizontal des coins arrondis" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius" msgstr "Rayon vertical" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Ry:" msgstr "RyΒ :" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius of rounded corners" msgstr "Rayon vertical des coins arrondis" -#: ../src/widgets/toolbox.cpp:3427 +#: ../src/widgets/toolbox.cpp:3445 msgid "Not rounded" msgstr "Pas d’arrondi" -#: ../src/widgets/toolbox.cpp:3428 +#: ../src/widgets/toolbox.cpp:3446 msgid "Make corners sharp" msgstr "Rendre les coins pointus" # ligne d'horizon ? #. TODO: use the correct axis here, too -#: ../src/widgets/toolbox.cpp:3623 +#: ../src/widgets/toolbox.cpp:3641 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "BoΓ®te 3D: changer la perspective (angle de ligne d’horizon)" -#: ../src/widgets/toolbox.cpp:3690 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle in X direction" msgstr "Angle dans la direction X" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3692 +#: ../src/widgets/toolbox.cpp:3710 msgid "Angle of PLs in X direction" msgstr "Angle des lignes parallΓ¨les dans la direction X" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3714 +#: ../src/widgets/toolbox.cpp:3732 msgid "State of VP in X direction" msgstr "Γ‰tat du point de fuite dans la direction X" -#: ../src/widgets/toolbox.cpp:3715 +#: ../src/widgets/toolbox.cpp:3733 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" msgstr "Alterner le point de fuite dans la direction X entre « finiΒ Β» et « infiniΒ Β» (=parallΓ¨les)" -#: ../src/widgets/toolbox.cpp:3730 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle in Y direction" msgstr "Angle dans la direction Y" -#: ../src/widgets/toolbox.cpp:3730 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle Y:" msgstr "Angle YΒ :" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3732 +#: ../src/widgets/toolbox.cpp:3750 msgid "Angle of PLs in Y direction" msgstr "Angle des lignes parallΓ¨les dans la direction Y" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3753 +#: ../src/widgets/toolbox.cpp:3771 msgid "State of VP in Y direction" msgstr "Γ‰tat du point de fuite dans la direction Y" -#: ../src/widgets/toolbox.cpp:3754 +#: ../src/widgets/toolbox.cpp:3772 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" msgstr "Alterner le point de fuite dans la direction Y entre « finiΒ Β» et « infiniΒ Β» (=parallΓ¨les)" -#: ../src/widgets/toolbox.cpp:3769 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle in Z direction" msgstr "Angle dans la direction Z" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3771 +#: ../src/widgets/toolbox.cpp:3789 msgid "Angle of PLs in Z direction" msgstr "Angle des lignes parallΓ¨les dans la direction Z" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3792 +#: ../src/widgets/toolbox.cpp:3810 msgid "State of VP in Z direction" msgstr "Γ‰tat du point de fuite dans la direction Z" -#: ../src/widgets/toolbox.cpp:3793 +#: ../src/widgets/toolbox.cpp:3811 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" msgstr "Alterner le point de fuite dans la direction Z entre « finiΒ Β» et « infiniΒ Β» (=parallΓ¨les)" -#: ../src/widgets/toolbox.cpp:3851 +#: ../src/widgets/toolbox.cpp:3869 msgid "Change spiral" msgstr "Modifier une spirale" -#: ../src/widgets/toolbox.cpp:3991 +#: ../src/widgets/toolbox.cpp:4009 msgid "just a curve" msgstr "juste une courbe" -#: ../src/widgets/toolbox.cpp:3991 +#: ../src/widgets/toolbox.cpp:4009 msgid "one full revolution" msgstr "une rΓ©volution complΓ¨te" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of turns" msgstr "Nombre de tours" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Turns:" msgstr "ToursΒ :" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of revolutions" msgstr "Nombre de rΓ©volutions" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "circle" msgstr "cercle" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is much denser" msgstr "le bord est beaucoup plus dense" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is denser" msgstr "le bord est plus dense" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "even" msgstr "Γ©gal" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is denser" msgstr "le centre est plus dense" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is much denser" msgstr "le centre est beaucoup plus dense" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence" msgstr "DivergenceΒ :" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence:" msgstr "DivergenceΒ :" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "How much denser/sparser are outer revolutions; 1 = uniform" msgstr "DensitΓ© de la rΓ©volution; 1 = uniforme" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts from center" msgstr "dΓ©marrer du centre" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts mid-way" msgstr "dΓ©marrer du milieu" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts near edge" msgstr "dΓ©marrer prΓ¨s du bord" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius" msgstr "Rayon intΓ©rieurΒ :" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius:" msgstr "Rayon intΓ©rieurΒ :" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Radius of the innermost revolution (relative to the spiral size)" msgstr "Rayon de la rΓ©volution intΓ©rieure (relatif aux dimensions de la spirale)" -#: ../src/widgets/toolbox.cpp:4094 +#: ../src/widgets/toolbox.cpp:4112 msgid "Bezier" msgstr "BΓ©zier" -#: ../src/widgets/toolbox.cpp:4095 +#: ../src/widgets/toolbox.cpp:4113 msgid "Create regular Bezier path" msgstr "CrΓ©er un chemin de BΓ©zier rΓ©gulier" -#: ../src/widgets/toolbox.cpp:4101 +#: ../src/widgets/toolbox.cpp:4119 msgid "Spiro" msgstr "Spiro" -#: ../src/widgets/toolbox.cpp:4102 +#: ../src/widgets/toolbox.cpp:4120 msgid "Create Spiro path" msgstr "CrΓ©er un chemin spirographique" -#: ../src/widgets/toolbox.cpp:4109 +#: ../src/widgets/toolbox.cpp:4127 msgid "Zigzag" msgstr "Zigzag" -#: ../src/widgets/toolbox.cpp:4110 +#: ../src/widgets/toolbox.cpp:4128 msgid "Create a sequence of straight line segments" msgstr "CrΓ©er une sΓ©quence de segments de lignes droites" -#: ../src/widgets/toolbox.cpp:4116 +#: ../src/widgets/toolbox.cpp:4134 msgid "Paraxial" msgstr "Paraxial" -#: ../src/widgets/toolbox.cpp:4117 +#: ../src/widgets/toolbox.cpp:4135 msgid "Create a sequence of paraxial line segments" msgstr "CrΓ©er une sΓ©quence de segments de lignes paraxiales" -#: ../src/widgets/toolbox.cpp:4125 +#: ../src/widgets/toolbox.cpp:4143 msgid "Mode of new lines drawn by this tool" msgstr "Mode des nouvelles lignes dessinΓ©es avec cet outil" -#: ../src/widgets/toolbox.cpp:4154 +#: ../src/widgets/toolbox.cpp:4172 msgid "Triangle in" msgstr "Triangle dΓ©croissant" -#: ../src/widgets/toolbox.cpp:4155 +#: ../src/widgets/toolbox.cpp:4173 msgid "Triangle out" msgstr "Triangle croissant" -#: ../src/widgets/toolbox.cpp:4157 +#: ../src/widgets/toolbox.cpp:4175 msgid "From clipboard" msgstr "Γ€ partir du presse-papier" -#: ../src/widgets/toolbox.cpp:4182 -#: ../src/widgets/toolbox.cpp:4183 +#: ../src/widgets/toolbox.cpp:4200 +#: ../src/widgets/toolbox.cpp:4201 msgid "Shape:" msgstr "FormeΒ :" -#: ../src/widgets/toolbox.cpp:4182 +#: ../src/widgets/toolbox.cpp:4200 msgid "Shape of new paths drawn by this tool" msgstr "Style des nouveaux chemins dessinΓ©s avec cet outil" -#: ../src/widgets/toolbox.cpp:4266 +#: ../src/widgets/toolbox.cpp:4284 msgid "(many nodes, rough)" msgstr "(nombreux nΕ“uds, rugueux)" #. Mean #. Rotation #. Scale -#: ../src/widgets/toolbox.cpp:4266 -#: ../src/widgets/toolbox.cpp:4374 -#: ../src/widgets/toolbox.cpp:4391 -#: ../src/widgets/toolbox.cpp:4599 -#: ../src/widgets/toolbox.cpp:4688 -#: ../src/widgets/toolbox.cpp:4704 -#: ../src/widgets/toolbox.cpp:4720 -#: ../src/widgets/toolbox.cpp:4780 -#: ../src/widgets/toolbox.cpp:4810 +#: ../src/widgets/toolbox.cpp:4284 +#: ../src/widgets/toolbox.cpp:4392 +#: ../src/widgets/toolbox.cpp:4409 +#: ../src/widgets/toolbox.cpp:4617 +#: ../src/widgets/toolbox.cpp:4706 +#: ../src/widgets/toolbox.cpp:4722 +#: ../src/widgets/toolbox.cpp:4738 +#: ../src/widgets/toolbox.cpp:4798 #: ../src/widgets/toolbox.cpp:4828 -#: ../src/widgets/toolbox.cpp:5183 -#: ../src/widgets/toolbox.cpp:5216 -#: ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:4846 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:6263 msgid "(default)" msgstr "(dΓ©faut)" -#: ../src/widgets/toolbox.cpp:4266 +#: ../src/widgets/toolbox.cpp:4284 msgid "(few nodes, smooth)" msgstr "(peu de nΕ“uds, doux)" -#: ../src/widgets/toolbox.cpp:4269 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing:" msgstr "LissageΒ :" -#: ../src/widgets/toolbox.cpp:4269 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing: " msgstr "LissageΒ :" -#: ../src/widgets/toolbox.cpp:4270 +#: ../src/widgets/toolbox.cpp:4288 msgid "How much smoothing (simplifying) is applied to the line" msgstr "Quel niveau de lissage (simplification) est appliquΓ© Γ la ligne" -#: ../src/widgets/toolbox.cpp:4290 +#: ../src/widgets/toolbox.cpp:4308 msgid "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Restaurer les prΓ©fΓ©rences du crayon par dΓ©faut (changez les valeurs par dΓ©faut dans PrΓ©fΓ©rences d’Inkscape>Outils)" #. Width -#: ../src/widgets/toolbox.cpp:4374 +#: ../src/widgets/toolbox.cpp:4392 msgid "(pinch tweak)" msgstr "(ajustement serrΓ©)" -#: ../src/widgets/toolbox.cpp:4374 +#: ../src/widgets/toolbox.cpp:4392 msgid "(broad tweak)" msgstr "(ajustement large)" -#: ../src/widgets/toolbox.cpp:4377 +#: ../src/widgets/toolbox.cpp:4395 msgid "The width of the tweak area (relative to the visible canvas area)" msgstr "Largeur de la zone d’ajustement (relativement Γ la zone de travail visible)" #. Force -#: ../src/widgets/toolbox.cpp:4391 +#: ../src/widgets/toolbox.cpp:4409 msgid "(minimum force)" msgstr "(force minimum)" -#: ../src/widgets/toolbox.cpp:4391 +#: ../src/widgets/toolbox.cpp:4409 msgid "(maximum force)" msgstr "(force maximum)" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force" msgstr "Force" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force:" msgstr "ForceΒ :" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "The force of the tweak action" msgstr "Force de l’action d’ajustement" -#: ../src/widgets/toolbox.cpp:4412 +#: ../src/widgets/toolbox.cpp:4430 msgid "Move mode" msgstr "Mode dΓ©placement" -#: ../src/widgets/toolbox.cpp:4413 +#: ../src/widgets/toolbox.cpp:4431 msgid "Move objects in any direction" msgstr "DΓ©place la sΓ©lection dans la direction du curseur" -#: ../src/widgets/toolbox.cpp:4419 +#: ../src/widgets/toolbox.cpp:4437 msgid "Move in/out mode" msgstr "Mode rapprochement/Γ©loignement" -#: ../src/widgets/toolbox.cpp:4420 +#: ../src/widgets/toolbox.cpp:4438 msgid "Move objects towards cursor; with Shift from cursor" msgstr "DΓ©place l’objet vers le curseurΒ ; avec Maj, Γ l’encontre du curseur" -#: ../src/widgets/toolbox.cpp:4426 +#: ../src/widgets/toolbox.cpp:4444 msgid "Move jitter mode" msgstr "Mode dΓ©placement alΓ©atoire" -#: ../src/widgets/toolbox.cpp:4427 +#: ../src/widgets/toolbox.cpp:4445 msgid "Move objects in random directions" msgstr "DΓ©place la sΓ©lection dans une direction alΓ©atoire" -#: ../src/widgets/toolbox.cpp:4433 +#: ../src/widgets/toolbox.cpp:4451 msgid "Scale mode" msgstr "Mode redimensionnement" -#: ../src/widgets/toolbox.cpp:4434 +#: ../src/widgets/toolbox.cpp:4452 msgid "Shrink objects, with Shift enlarge" msgstr "RΓ©trΓ©cir les objets, avec Maj. Γ©tirer" -#: ../src/widgets/toolbox.cpp:4440 +#: ../src/widgets/toolbox.cpp:4458 msgid "Rotate mode" msgstr "Mode rotation" -#: ../src/widgets/toolbox.cpp:4441 +#: ../src/widgets/toolbox.cpp:4459 msgid "Rotate objects, with Shift counterclockwise" msgstr "Applique une rotation dans le sens horaireΒ ; avec Maj, le sens est inversΓ©" -#: ../src/widgets/toolbox.cpp:4447 +#: ../src/widgets/toolbox.cpp:4465 msgid "Duplicate/delete mode" msgstr "Mode duplication/suppression" -#: ../src/widgets/toolbox.cpp:4448 +#: ../src/widgets/toolbox.cpp:4466 msgid "Duplicate objects, with Shift delete" msgstr "Duplique les objetsΒ ; avec Maj, efface" -#: ../src/widgets/toolbox.cpp:4454 +#: ../src/widgets/toolbox.cpp:4472 msgid "Push mode" msgstr "Mode poussΓ©e" -#: ../src/widgets/toolbox.cpp:4455 +#: ../src/widgets/toolbox.cpp:4473 msgid "Push parts of paths in any direction" msgstr "Pousse le chemin dans le sens du curseur" -#: ../src/widgets/toolbox.cpp:4461 +#: ../src/widgets/toolbox.cpp:4479 msgid "Shrink/grow mode" msgstr "Mode rΓ©trΓ©cissement/Γ©largissement" -#: ../src/widgets/toolbox.cpp:4462 +#: ../src/widgets/toolbox.cpp:4480 msgid "Shrink (inset) parts of paths; with Shift grow (outset)" msgstr "RΓ©trΓ©cit les chemins (contraction)Β ; avec Maj, Γ©largit (dilatation)" -#: ../src/widgets/toolbox.cpp:4468 +#: ../src/widgets/toolbox.cpp:4486 msgid "Attract/repel mode" msgstr "Mode attraction/rΓ©pulsion" -#: ../src/widgets/toolbox.cpp:4469 +#: ../src/widgets/toolbox.cpp:4487 msgid "Attract parts of paths towards cursor; with Shift from cursor" msgstr "Attire les chemins vers le curseurΒ ; avec Maj, Γ©loigne les chemins du curseur" -#: ../src/widgets/toolbox.cpp:4475 +#: ../src/widgets/toolbox.cpp:4493 msgid "Roughen mode" msgstr "Mode rugueux" -#: ../src/widgets/toolbox.cpp:4476 +#: ../src/widgets/toolbox.cpp:4494 msgid "Roughen parts of paths" msgstr "Rend les chemins plus rugueux" -#: ../src/widgets/toolbox.cpp:4482 +#: ../src/widgets/toolbox.cpp:4500 msgid "Color paint mode" msgstr "Mode peinture de couleur" -#: ../src/widgets/toolbox.cpp:4483 +#: ../src/widgets/toolbox.cpp:4501 msgid "Paint the tool's color upon selected objects" msgstr "DΓ©caler la couleur des objets vers celle de l’outil" -#: ../src/widgets/toolbox.cpp:4489 +#: ../src/widgets/toolbox.cpp:4507 msgid "Color jitter mode" msgstr "Mode perturbation des couleurs" -#: ../src/widgets/toolbox.cpp:4490 +#: ../src/widgets/toolbox.cpp:4508 msgid "Jitter the colors of selected objects" msgstr "Perturber la couleur des objets sΓ©lectionnΓ©s" -#: ../src/widgets/toolbox.cpp:4496 +#: ../src/widgets/toolbox.cpp:4514 msgid "Blur mode" msgstr "Mode flou" -#: ../src/widgets/toolbox.cpp:4497 +#: ../src/widgets/toolbox.cpp:4515 msgid "Blur selected objects more; with Shift, blur less" msgstr "Ajoute du flou Γ la sΓ©lectionΒ ; avec Maj, retire du flou" -#: ../src/widgets/toolbox.cpp:4524 +#: ../src/widgets/toolbox.cpp:4542 msgid "Channels:" msgstr "CanauxΒ :" -#: ../src/widgets/toolbox.cpp:4536 +#: ../src/widgets/toolbox.cpp:4554 msgid "In color mode, act on objects' hue" msgstr "En mode couleur, agit sur la teinte des objets" #. TRANSLATORS: "H" here stands for hue -#: ../src/widgets/toolbox.cpp:4540 +#: ../src/widgets/toolbox.cpp:4558 msgid "H" msgstr "T" -#: ../src/widgets/toolbox.cpp:4552 +#: ../src/widgets/toolbox.cpp:4570 msgid "In color mode, act on objects' saturation" msgstr "En mode couleur, agit sur la saturation des objets" # Saturation (in HSL) #. TRANSLATORS: "S" here stands for Saturation -#: ../src/widgets/toolbox.cpp:4556 +#: ../src/widgets/toolbox.cpp:4574 msgid "S" msgstr "S" -#: ../src/widgets/toolbox.cpp:4568 +#: ../src/widgets/toolbox.cpp:4586 msgid "In color mode, act on objects' lightness" msgstr "En mode couleur, agit sur la luminositΓ© des objets" # Luminosity (in HSL) #. TRANSLATORS: "L" here stands for Lightness -#: ../src/widgets/toolbox.cpp:4572 +#: ../src/widgets/toolbox.cpp:4590 msgid "L" msgstr "L" -#: ../src/widgets/toolbox.cpp:4584 +#: ../src/widgets/toolbox.cpp:4602 msgid "In color mode, act on objects' opacity" msgstr "En mode couleur, agit sur l’opacitΓ© des objets" # Opacity #. TRANSLATORS: "O" here stands for Opacity -#: ../src/widgets/toolbox.cpp:4588 +#: ../src/widgets/toolbox.cpp:4606 msgid "O" msgstr "O" #. Fidelity -#: ../src/widgets/toolbox.cpp:4599 +#: ../src/widgets/toolbox.cpp:4617 msgid "(rough, simplified)" msgstr "(grossier, simplifiΓ©)" -#: ../src/widgets/toolbox.cpp:4599 +#: ../src/widgets/toolbox.cpp:4617 msgid "(fine, but many nodes)" msgstr "(fin, mais avec beaucoup de nΕ“uds)" -#: ../src/widgets/toolbox.cpp:4602 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity" msgstr "FidΓ©litΓ©" -#: ../src/widgets/toolbox.cpp:4602 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity:" msgstr "FidΓ©litΓ©:" -#: ../src/widgets/toolbox.cpp:4603 +#: ../src/widgets/toolbox.cpp:4621 msgid "Low fidelity simplifies paths; high fidelity preserves path features but may generate a lot of new nodes" msgstr "Une basse fidΓ©litΓ© simplifie les chemins; Une haute fidΓ©litΓ© prΓ©serve les propriΓ©tΓ©s des chemins mais peut ajouter de nombreux nΕ“uds." -#: ../src/widgets/toolbox.cpp:4621 -#: ../src/widgets/toolbox.cpp:4799 -#: ../src/widgets/toolbox.cpp:5334 +#: ../src/widgets/toolbox.cpp:4639 +#: ../src/widgets/toolbox.cpp:4817 +#: ../src/widgets/toolbox.cpp:5352 msgid "Pressure" msgstr "Pression" -#: ../src/widgets/toolbox.cpp:4622 +#: ../src/widgets/toolbox.cpp:4640 msgid "Use the pressure of the input device to alter the force of tweak action" msgstr "Utiliser la pression du pΓ©riphΓ©rique d’entrΓ©e pour modifier la force de l’outil" #. Width -#: ../src/widgets/toolbox.cpp:4688 +#: ../src/widgets/toolbox.cpp:4706 msgid "(narrow spray)" msgstr "(pulvΓ©risation Γ©troite)" -#: ../src/widgets/toolbox.cpp:4688 +#: ../src/widgets/toolbox.cpp:4706 msgid "(broad spray)" msgstr "(pulvΓ©risation large)" -#: ../src/widgets/toolbox.cpp:4691 +#: ../src/widgets/toolbox.cpp:4709 msgid "The width of the spray area (relative to the visible canvas area)" msgstr "Largeur de la zone de pulvΓ©risation (relativement Γ la zone de travail visible)" -#: ../src/widgets/toolbox.cpp:4704 +#: ../src/widgets/toolbox.cpp:4722 msgid "(maximum mean)" msgstr "(moyenne maximale)" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus" msgstr "Rayon" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus:" msgstr "RayonΒ :" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "0 to spray a spot; increase to enlarge the ring radius" msgstr "0 pour pulvΓ©riser sur un seul endroitΒ ; augmenter pour Γ©largir le rayon de pulvΓ©risation" #. Standard_deviation -#: ../src/widgets/toolbox.cpp:4720 +#: ../src/widgets/toolbox.cpp:4738 msgid "(minimum scatter)" msgstr "(dispersion minimale)" -#: ../src/widgets/toolbox.cpp:4720 +#: ../src/widgets/toolbox.cpp:4738 msgid "(maximum scatter)" msgstr "(dispersion maximale)" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgctxt "Spray tool" msgid "Scatter" msgstr "Γ‰parpiller" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgctxt "Spray tool" msgid "Scatter:" msgstr "Γ‰parpillerΒ :" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgid "Increase to scatter sprayed objects" msgstr "Augmenter pour disperser les objets pulvΓ©risΓ©s" -#: ../src/widgets/toolbox.cpp:4742 +#: ../src/widgets/toolbox.cpp:4760 msgid "Spray copies of the initial selection" msgstr "PulvΓ©riser des copies de la sΓ©lection initiale" -#: ../src/widgets/toolbox.cpp:4749 +#: ../src/widgets/toolbox.cpp:4767 msgid "Spray clones of the initial selection" msgstr "PulvΓ©riser des clones de la sΓ©lection initiale" -#: ../src/widgets/toolbox.cpp:4755 +#: ../src/widgets/toolbox.cpp:4773 msgid "Spray single path" msgstr "PulvΓ©risation par union des formes" -#: ../src/widgets/toolbox.cpp:4756 +#: ../src/widgets/toolbox.cpp:4774 msgid "Spray objects in a single path" msgstr "PulvΓ©risation fusionnΓ©e en un chemin unique" #. Population -#: ../src/widgets/toolbox.cpp:4780 +#: ../src/widgets/toolbox.cpp:4798 msgid "(low population)" msgstr "(faible population)" -#: ../src/widgets/toolbox.cpp:4780 +#: ../src/widgets/toolbox.cpp:4798 msgid "(high population)" msgstr "(forte population)" -#: ../src/widgets/toolbox.cpp:4783 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount" msgstr "QuantitΓ©" -#: ../src/widgets/toolbox.cpp:4784 +#: ../src/widgets/toolbox.cpp:4802 msgid "Adjusts the number of items sprayed per click" msgstr "Ajuste le nombre de d’élΓ©ments pulvΓ©risΓ©s par clic" -#: ../src/widgets/toolbox.cpp:4800 +#: ../src/widgets/toolbox.cpp:4818 msgid "Use the pressure of the input device to alter the amount of sprayed objects" msgstr "Utiliser la pression du pΓ©riphΓ©rique d’entrΓ©e pour modifier la quantitΓ© d’objets pulvΓ©risΓ©s" -#: ../src/widgets/toolbox.cpp:4810 +#: ../src/widgets/toolbox.cpp:4828 msgid "(high rotation variation)" msgstr "(variation de rotation forte)" -#: ../src/widgets/toolbox.cpp:4813 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation" msgstr "Rotation" -#: ../src/widgets/toolbox.cpp:4813 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation:" msgstr "RotationΒ :" -#: ../src/widgets/toolbox.cpp:4815 +#: ../src/widgets/toolbox.cpp:4833 #, no-c-format msgid "Variation of the rotation of the sprayed objects; 0% for the same rotation than the original object" msgstr "Variation de rotation des objets pulvΓ©risΓ©sΒ ; 0Β % pour utiliser la mΓme rotation que l’objet original" -#: ../src/widgets/toolbox.cpp:4828 +#: ../src/widgets/toolbox.cpp:4846 msgid "(high scale variation)" msgstr "(variation d’échelle forte)" -#: ../src/widgets/toolbox.cpp:4831 +#: ../src/widgets/toolbox.cpp:4849 msgctxt "Spray tool" msgid "Scale" msgstr "Γ‰chelle" -#: ../src/widgets/toolbox.cpp:4831 +#: ../src/widgets/toolbox.cpp:4849 msgctxt "Spray tool" msgid "Scale:" msgstr "Γ‰chelleΒ :" -#: ../src/widgets/toolbox.cpp:4833 +#: ../src/widgets/toolbox.cpp:4851 #, no-c-format msgid "Variation in the scale of the sprayed objects; 0% for the same scale than the original object" msgstr "Variation de l’échelle des objets pulvΓ©risΓ©sΒ ; 0Β % pour utiliser la mΓme taille que l’objet original" -#: ../src/widgets/toolbox.cpp:5007 +#: ../src/widgets/toolbox.cpp:5025 msgid "No preset" msgstr "Aucune prΓ©sΓ©lection" -#: ../src/widgets/toolbox.cpp:5025 +#: ../src/widgets/toolbox.cpp:5043 msgid "Save..." msgstr "Enregistrer sous..." #. Width -#: ../src/widgets/toolbox.cpp:5183 -#: ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:6263 msgid "(hairline)" msgstr "(sans Γ©paisseur)" -#: ../src/widgets/toolbox.cpp:5183 -#: ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:6263 msgid "(broad stroke)" msgstr " (trait large)" -#: ../src/widgets/toolbox.cpp:5186 -#: ../src/widgets/toolbox.cpp:6248 +#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:6266 msgid "Pen Width" msgstr "Largeur du stylo" -#: ../src/widgets/toolbox.cpp:5187 +#: ../src/widgets/toolbox.cpp:5205 msgid "The width of the calligraphic pen (relative to the visible canvas area)" msgstr "Largeur de la plume (relativement Γ la zone de travail visible)" #. Thinning -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed blows up stroke)" msgstr "(la vitesse gonfle le trait)" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight widening)" msgstr "(lΓ©ger Γ©largissement)" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(constant width)" msgstr "(largeur constante)" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight thinning, default)" msgstr "(lΓ©ger amincissement, dΓ©faut)" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed deflates stroke)" msgstr "(la vitesse affine le trait)" -#: ../src/widgets/toolbox.cpp:5203 +#: ../src/widgets/toolbox.cpp:5221 msgid "Stroke Thinning" msgstr "Amincissement du trait" -#: ../src/widgets/toolbox.cpp:5203 +#: ../src/widgets/toolbox.cpp:5221 msgid "Thinning:" msgstr "AmincissementΒ :" -#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:5222 msgid "How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 makes them broader, 0 makes width independent of velocity)" msgstr "Largeur du tracΓ© en fonction de la vΓ©locitΓ©. (>0 la vitesse du tracΓ© diminue sa largeur, <0 l’augmente, 0 ne l’influence pas)" #. Angle -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(left edge up)" msgstr "(bord gauche vers le haut)" -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(horizontal)" msgstr "(horizontal)" -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(right edge up)" msgstr "(bord droit vers le haut)" -#: ../src/widgets/toolbox.cpp:5219 +#: ../src/widgets/toolbox.cpp:5237 msgid "Pen Angle" msgstr "Angle du stylo" -#: ../src/widgets/toolbox.cpp:5219 +#: ../src/widgets/toolbox.cpp:5237 #: ../share/extensions/motion.inx.h:1 #: ../share/extensions/restack.inx.h:1 msgid "Angle:" msgstr "AngleΒ :" -#: ../src/widgets/toolbox.cpp:5220 +#: ../src/widgets/toolbox.cpp:5238 msgid "The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if fixation = 0)" msgstr "Angle de la plume (en degrΓ©s; 0 = horizontal; n’a pas d’effet si orientation = 0)" #. Fixation -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(perpendicular to stroke, \"brush\")" msgstr "(perpendiculaire au tracΓ©, « pinceauΒ Β»)" -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(almost fixed, default)" msgstr "(presque fixe, valeur par dΓ©faut)" -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(fixed by Angle, \"pen\")" msgstr "(fixΓ© par un angle, « styloΒ Β»)" -#: ../src/widgets/toolbox.cpp:5237 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation" msgstr "FixitΓ©" -#: ../src/widgets/toolbox.cpp:5237 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation:" msgstr "Fixité :" -#: ../src/widgets/toolbox.cpp:5238 +#: ../src/widgets/toolbox.cpp:5256 msgid "Angle behavior (0 = nib always perpendicular to stroke direction, 100 = fixed angle)" msgstr "Comportement de l’angle de la plume (0 = toujours perpendiculaire Γ la direction du tracΓ©, 100 = invariant)" #. Cap Rounding -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(blunt caps, default)" msgstr "(terminaisons planes, dΓ©faut)" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(slightly bulging)" msgstr "(lΓ©gΓ¨rement bombΓ©es)" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(approximately round)" msgstr "(approximativement arrondies)" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(long protruding caps)" msgstr "(terminaisons trΓ¨s proΓ©minentes)" -#: ../src/widgets/toolbox.cpp:5254 +#: ../src/widgets/toolbox.cpp:5272 msgid "Cap rounding" msgstr "Arrondi de la terminaison" -#: ../src/widgets/toolbox.cpp:5254 +#: ../src/widgets/toolbox.cpp:5272 msgid "Caps:" msgstr "TerminaisonsΒ :" -#: ../src/widgets/toolbox.cpp:5255 +#: ../src/widgets/toolbox.cpp:5273 msgid "Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = round caps)" msgstr "Augmenter ce paramΓ¨tre pour que les extrΓ©mitΓ©s du tracΓ© soient plus proΓ©minentes (0 = pas de terminaison, 1 = terminaison arrondie)" #. Tremor -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(smooth line)" msgstr "(ligne douce)" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(slight tremor)" msgstr "(lΓ©ger tremblement)" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(noticeable tremor)" msgstr "(tremblement sensible)" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(maximum tremor)" msgstr "(tremblement maximum)" -#: ../src/widgets/toolbox.cpp:5270 +#: ../src/widgets/toolbox.cpp:5288 msgid "Stroke Tremor" msgstr "Appliquer un tremblement au contour" -#: ../src/widgets/toolbox.cpp:5270 +#: ../src/widgets/toolbox.cpp:5288 msgid "Tremor:" msgstr "TremblementΒ :" -#: ../src/widgets/toolbox.cpp:5271 +#: ../src/widgets/toolbox.cpp:5289 msgid "Increase to make strokes rugged and trembling" msgstr "Augmenter ce paramΓ¨tre pour rendre la plume tremblante et irrΓ©guliΓ¨re" #. Wiggle -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(no wiggle)" msgstr "(pas d’agitation)" -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(slight deviation)" msgstr "(lΓ©gΓ¨res dΓ©viations)" -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(wild waves and curls)" msgstr "(grandes vagues et boucles)" -#: ../src/widgets/toolbox.cpp:5288 +#: ../src/widgets/toolbox.cpp:5306 msgid "Pen Wiggle" msgstr "Agitation du stylo" -#: ../src/widgets/toolbox.cpp:5288 +#: ../src/widgets/toolbox.cpp:5306 msgid "Wiggle:" msgstr "AgitationΒ :" -#: ../src/widgets/toolbox.cpp:5289 +#: ../src/widgets/toolbox.cpp:5307 msgid "Increase to make the pen waver and wiggle" msgstr "Augmenter ce paramΓ¨tre pour rendre la plume hΓ©sitante et agitΓ©e" #. Mass -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(no inertia)" msgstr "(aucune inertie)" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(slight smoothing, default)" msgstr "(lissage lΓ©ger, valeur par dΓ©faut)" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(noticeable lagging)" msgstr "(retard sensible)" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(maximum inertia)" msgstr "(inertie maximum)" -#: ../src/widgets/toolbox.cpp:5305 +#: ../src/widgets/toolbox.cpp:5323 msgid "Pen Mass" msgstr "Inertie du stylo" -#: ../src/widgets/toolbox.cpp:5305 +#: ../src/widgets/toolbox.cpp:5323 msgid "Mass:" msgstr "InertieΒ :" -#: ../src/widgets/toolbox.cpp:5306 +#: ../src/widgets/toolbox.cpp:5324 msgid "Increase to make the pen drag behind, as if slowed by inertia" msgstr "Augmenter ce paramΓ¨tre pour que la plume traΓ®ne, ralentie par son inertie" -#: ../src/widgets/toolbox.cpp:5321 +#: ../src/widgets/toolbox.cpp:5339 msgid "Trace Background" msgstr "Tracer selon le fond" -#: ../src/widgets/toolbox.cpp:5322 +#: ../src/widgets/toolbox.cpp:5340 msgid "Trace the lightness of the background by the width of the pen (white - minimum width, black - maximum width)" msgstr "Imiter la luminositΓ© de l’arriΓ¨re-plan avec l’épaisseur du trait (blanc - trait fin, noir - trait Γ©pais)" -#: ../src/widgets/toolbox.cpp:5335 +#: ../src/widgets/toolbox.cpp:5353 msgid "Use the pressure of the input device to alter the width of the pen" msgstr "Utiliser la pression du pΓ©riphΓ©rique d’entrΓ©e pour modifier la largeur de la plume" -#: ../src/widgets/toolbox.cpp:5347 +#: ../src/widgets/toolbox.cpp:5365 msgid "Tilt" msgstr "Inclinaison" -#: ../src/widgets/toolbox.cpp:5348 +#: ../src/widgets/toolbox.cpp:5366 msgid "Use the tilt of the input device to alter the angle of the pen's nib" msgstr "Utiliser l’inclinaison du pΓ©riphΓ©rique d’entrΓ©e pour modifier l’angle de la plume" -#: ../src/widgets/toolbox.cpp:5363 +#: ../src/widgets/toolbox.cpp:5381 msgid "Choose a preset" msgstr "Aucune prΓ©sΓ©lection" -#: ../src/widgets/toolbox.cpp:5452 +#: ../src/widgets/toolbox.cpp:5470 msgid "Arc: Change start/end" msgstr "ArcΒ : dΓ©placer dΓ©but/fin" -#: ../src/widgets/toolbox.cpp:5518 +#: ../src/widgets/toolbox.cpp:5536 msgid "Arc: Change open/closed" msgstr "ArcΒ : modifier ouvert/fermΓ©" -#: ../src/widgets/toolbox.cpp:5645 +#: ../src/widgets/toolbox.cpp:5663 msgid "Start:" msgstr "DΓ©butΒ :" -#: ../src/widgets/toolbox.cpp:5646 +#: ../src/widgets/toolbox.cpp:5664 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "Angle (en degrΓ©s) entre l’horizontale et le dΓ©but de l’arc" -#: ../src/widgets/toolbox.cpp:5658 +#: ../src/widgets/toolbox.cpp:5676 msgid "End:" msgstr "FinΒ :" -#: ../src/widgets/toolbox.cpp:5659 +#: ../src/widgets/toolbox.cpp:5677 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "Angle (en degrΓ©s) entre l’horizontale et la fin de l’arc" -#: ../src/widgets/toolbox.cpp:5675 +#: ../src/widgets/toolbox.cpp:5693 msgid "Closed arc" msgstr "Arc fermΓ©" -#: ../src/widgets/toolbox.cpp:5676 +#: ../src/widgets/toolbox.cpp:5694 msgid "Switch to segment (closed shape with two radii)" msgstr "Tracer un camembert (forme fermΓ©e entre deux rayons)" -#: ../src/widgets/toolbox.cpp:5682 +#: ../src/widgets/toolbox.cpp:5700 msgid "Open Arc" msgstr "Arc ouvert" -#: ../src/widgets/toolbox.cpp:5683 +#: ../src/widgets/toolbox.cpp:5701 msgid "Switch to arc (unclosed shape)" msgstr "Tracer un arc (courbe non fermΓ©e)" -#: ../src/widgets/toolbox.cpp:5706 +#: ../src/widgets/toolbox.cpp:5724 msgid "Make whole" msgstr "Refermer" -#: ../src/widgets/toolbox.cpp:5707 +#: ../src/widgets/toolbox.cpp:5725 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "Transformer en ellipse pleine (pas un arc ou un camembert)" -#: ../src/widgets/toolbox.cpp:5785 +#: ../src/widgets/toolbox.cpp:5803 msgid "Pick opacity" msgstr "Capturer l’opacitΓ©" -#: ../src/widgets/toolbox.cpp:5786 +#: ../src/widgets/toolbox.cpp:5804 msgid "Pick both the color and the alpha (transparency) under cursor; otherwise, pick only the visible color premultiplied by alpha" msgstr "Capturer Γ la fois la couleur et l’alpha (opacitΓ©) sous le curseur; Sinon, ne capturer que la couleur visible prΓ©multipliΓ©e par l’alpha" -#: ../src/widgets/toolbox.cpp:5789 +#: ../src/widgets/toolbox.cpp:5807 msgid "Pick" msgstr "Capturer" -#: ../src/widgets/toolbox.cpp:5798 +#: ../src/widgets/toolbox.cpp:5816 msgid "Assign opacity" msgstr "Appliquer l’opacitΓ©" -#: ../src/widgets/toolbox.cpp:5799 +#: ../src/widgets/toolbox.cpp:5817 msgid "If alpha was picked, assign it to selection as fill or stroke transparency" msgstr "Si l’alpha a Γ©tΓ© capturΓ©, l’appliquer comme transparence de remplissage ou de contour Γ la sΓ©lection" -#: ../src/widgets/toolbox.cpp:5802 +#: ../src/widgets/toolbox.cpp:5820 msgid "Assign" msgstr "Appliquer" -#: ../src/widgets/toolbox.cpp:5987 +#: ../src/widgets/toolbox.cpp:6005 msgid "Closed" msgstr "FermΓ©" -#: ../src/widgets/toolbox.cpp:5989 +#: ../src/widgets/toolbox.cpp:6007 msgid "Open start" msgstr "DΓ©but ouvert" -#: ../src/widgets/toolbox.cpp:5991 +#: ../src/widgets/toolbox.cpp:6009 msgid "Open end" msgstr "Fin ouverte" -#: ../src/widgets/toolbox.cpp:5993 +#: ../src/widgets/toolbox.cpp:6011 msgid "Open both" msgstr "Les deux ouverts" -#: ../src/widgets/toolbox.cpp:6052 +#: ../src/widgets/toolbox.cpp:6070 msgid "All inactive" msgstr "Tout inactif" -#: ../src/widgets/toolbox.cpp:6053 +#: ../src/widgets/toolbox.cpp:6071 msgid "No geometric tool is active" msgstr "Aucun outil gΓ©omΓ©trique n’est actif" -#: ../src/widgets/toolbox.cpp:6086 +#: ../src/widgets/toolbox.cpp:6104 msgid "Show limiting bounding box" msgstr "Montrer la boΓ®te englobante limite" -#: ../src/widgets/toolbox.cpp:6087 +#: ../src/widgets/toolbox.cpp:6105 msgid "Show bounding box (used to cut infinite lines)" msgstr "Affiche la boΓ®te englobante (utilisΓ© pour couper les lignes infinies)" -#: ../src/widgets/toolbox.cpp:6098 +#: ../src/widgets/toolbox.cpp:6116 msgid "Get limiting bounding box from selection" msgstr "Obtenir la boΓ®te englobante limite Γ partir de la sΓ©lection" -#: ../src/widgets/toolbox.cpp:6099 +#: ../src/widgets/toolbox.cpp:6117 msgid "Set limiting bounding box (used to cut infinite lines) to the bounding box of current selection" msgstr "DΓ©finir la boΓ®te englobante limite (utilisΓ©e pour couper les lignes infinies) Γ la boΓ®te englobante de la sΓ©lection" -#: ../src/widgets/toolbox.cpp:6111 +#: ../src/widgets/toolbox.cpp:6129 msgid "Choose a line segment type" msgstr "SΓ©lectionner un type de segment" -#: ../src/widgets/toolbox.cpp:6127 +#: ../src/widgets/toolbox.cpp:6145 msgid "Display measuring info" msgstr "Afficher les informations de mesure" -#: ../src/widgets/toolbox.cpp:6128 +#: ../src/widgets/toolbox.cpp:6146 msgid "Display measuring info for selected items" msgstr "Affiche les informations de mesure pour la sΓ©lection" -#: ../src/widgets/toolbox.cpp:6148 +#: ../src/widgets/toolbox.cpp:6166 msgid "Open LPE dialog" msgstr "Ouvrir la boΓ®te de dialogue des effets de chemin" -#: ../src/widgets/toolbox.cpp:6149 +#: ../src/widgets/toolbox.cpp:6167 msgid "Open LPE dialog (to adapt parameters numerically)" msgstr "Ouvrir la boΓ®te de dialogue des effets de chemin (pour adapter les paramΓ¨tres numΓ©riquement)" -#: ../src/widgets/toolbox.cpp:6214 +#: ../src/widgets/toolbox.cpp:6232 msgid "Delete objects touched by the eraser" msgstr "Effacer les objets en contact avec la gomme" -#: ../src/widgets/toolbox.cpp:6220 +#: ../src/widgets/toolbox.cpp:6238 msgid "Cut" msgstr "Couper" -#: ../src/widgets/toolbox.cpp:6221 +#: ../src/widgets/toolbox.cpp:6239 msgid "Cut out from objects" msgstr "Effacer une partie d’objet" -#: ../src/widgets/toolbox.cpp:6249 +#: ../src/widgets/toolbox.cpp:6267 msgid "The width of the eraser pen (relative to the visible canvas area)" msgstr "Largeur de la gomme (relativement Γ la zone de travail visible)" -#: ../src/widgets/toolbox.cpp:6489 +#: ../src/widgets/toolbox.cpp:6507 msgid "Text: Change font family" msgstr "TexteΒ : modifier la police" -#: ../src/widgets/toolbox.cpp:6546 +#: ../src/widgets/toolbox.cpp:6564 msgid "Text: Change font size" msgstr "TexteΒ : modifier la taille de police" -#: ../src/widgets/toolbox.cpp:6685 +#: ../src/widgets/toolbox.cpp:6703 msgid "Text: Change font style" msgstr "TexteΒ : modifier le style de la police" -#: ../src/widgets/toolbox.cpp:6764 +#: ../src/widgets/toolbox.cpp:6782 msgid "Text: Change superscript or subscript" msgstr "TexteΒ : passe en exposant ou en indice" -#: ../src/widgets/toolbox.cpp:6910 +#: ../src/widgets/toolbox.cpp:6928 msgid "Text: Change alignment" msgstr "TexteΒ : modifier l’alignement" -#: ../src/widgets/toolbox.cpp:6953 +#: ../src/widgets/toolbox.cpp:6971 msgid "Text: Change line-height" msgstr "TexteΒ : modifier la hauteur de ligne" -#: ../src/widgets/toolbox.cpp:7002 +#: ../src/widgets/toolbox.cpp:7020 msgid "Text: Change word-spacing" msgstr "TexteΒ : modifier l’espacement intermot" -#: ../src/widgets/toolbox.cpp:7044 +#: ../src/widgets/toolbox.cpp:7062 msgid "Text: Change letter-spacing" msgstr "TexteΒ : modifier l’interlettrage" -#: ../src/widgets/toolbox.cpp:7085 +#: ../src/widgets/toolbox.cpp:7103 msgid "Text: Change dx (kern)" msgstr "TexteΒ : modifier dx (crΓ©nage)" -#: ../src/widgets/toolbox.cpp:7119 +#: ../src/widgets/toolbox.cpp:7137 msgid "Text: Change dy" msgstr "TexteΒ : modifier dy" -#: ../src/widgets/toolbox.cpp:7154 +#: ../src/widgets/toolbox.cpp:7172 msgid "Text: Change rotate" msgstr "TexteΒ : modifier la rotation" -#: ../src/widgets/toolbox.cpp:7202 +#: ../src/widgets/toolbox.cpp:7220 msgid "Text: Change orientation" msgstr "TexteΒ : modifier l’orientation" -#: ../src/widgets/toolbox.cpp:7567 +#: ../src/widgets/toolbox.cpp:7585 msgid "Font Family" msgstr "Famille de police" -#: ../src/widgets/toolbox.cpp:7568 +#: ../src/widgets/toolbox.cpp:7586 msgid "Select Font Family (Alt-X to access)" msgstr "SΓ©lectionner une famille de police (Alt+X pour y accΓ©der)" @@ -23243,358 +23308,358 @@ msgstr "SΓ©lectionner une famille de police (Alt+X pour y accΓ©der)" #. Extra list width #. Cell layout #. Enable entry completion -#: ../src/widgets/toolbox.cpp:7575 +#: ../src/widgets/toolbox.cpp:7593 msgid "Font not found on system" msgstr "Police indisponible sur votre systΓ¨me" -#: ../src/widgets/toolbox.cpp:7608 +#: ../src/widgets/toolbox.cpp:7626 msgid "Font size (px)" msgstr "Taille de police (px)" #. Name -#: ../src/widgets/toolbox.cpp:7620 +#: ../src/widgets/toolbox.cpp:7638 msgid "Toggle Bold" msgstr "Inverser la graisse" #. Label -#: ../src/widgets/toolbox.cpp:7621 +#: ../src/widgets/toolbox.cpp:7639 msgid "Toggle bold or normal weight" msgstr "Basculer entre gras et normal" #. Name -#: ../src/widgets/toolbox.cpp:7633 +#: ../src/widgets/toolbox.cpp:7651 msgid "Toggle Italic/Oblique" msgstr "Inverser Italique/Oblique" #. Label -#: ../src/widgets/toolbox.cpp:7634 +#: ../src/widgets/toolbox.cpp:7652 msgid "Toggle italic/oblique style" msgstr "Basculer le style entre Italique/Oblique et normal" #. Name -#: ../src/widgets/toolbox.cpp:7646 +#: ../src/widgets/toolbox.cpp:7664 msgid "Toggle Superscript" msgstr "Inverser le mode exposant" #. Label -#: ../src/widgets/toolbox.cpp:7647 +#: ../src/widgets/toolbox.cpp:7665 msgid "Toggle superscript" msgstr "Inverser le mode exposant" #. Name -#: ../src/widgets/toolbox.cpp:7659 +#: ../src/widgets/toolbox.cpp:7677 msgid "Toggle Subscript" msgstr "Inverser le mode indice" #. Label -#: ../src/widgets/toolbox.cpp:7660 +#: ../src/widgets/toolbox.cpp:7678 msgid "Toggle subscript" msgstr "Inverser le mode indice" -#: ../src/widgets/toolbox.cpp:7677 -#: ../src/widgets/toolbox.cpp:7678 +#: ../src/widgets/toolbox.cpp:7695 +#: ../src/widgets/toolbox.cpp:7696 msgid "Align left" msgstr "Aligner Γ gauche" -#: ../src/widgets/toolbox.cpp:7685 -#: ../src/widgets/toolbox.cpp:7686 +#: ../src/widgets/toolbox.cpp:7703 +#: ../src/widgets/toolbox.cpp:7704 msgid "Align center" msgstr "Centrer" -#: ../src/widgets/toolbox.cpp:7693 -#: ../src/widgets/toolbox.cpp:7694 +#: ../src/widgets/toolbox.cpp:7711 +#: ../src/widgets/toolbox.cpp:7712 msgid "Align right" msgstr "Aligner Γ droite" -#: ../src/widgets/toolbox.cpp:7701 +#: ../src/widgets/toolbox.cpp:7719 msgid "Justify" msgstr "Justifier" -#: ../src/widgets/toolbox.cpp:7702 +#: ../src/widgets/toolbox.cpp:7720 msgid "Justify (only flowed text)" msgstr "Justifier (texte encadrΓ© seulement)" #. Name -#: ../src/widgets/toolbox.cpp:7708 +#: ../src/widgets/toolbox.cpp:7726 msgid "Alignment" msgstr "Alignement" #. Label -#: ../src/widgets/toolbox.cpp:7709 +#: ../src/widgets/toolbox.cpp:7727 msgid "Text alignment" msgstr "Alignement du texte" -#: ../src/widgets/toolbox.cpp:7736 +#: ../src/widgets/toolbox.cpp:7754 msgid "Horizontal" msgstr "Horizontal" -#: ../src/widgets/toolbox.cpp:7743 +#: ../src/widgets/toolbox.cpp:7761 msgid "Vertical" msgstr "Vertical" #. Label -#: ../src/widgets/toolbox.cpp:7750 +#: ../src/widgets/toolbox.cpp:7768 msgid "Text orientation" msgstr "Orientation du texte" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7773 +#: ../src/widgets/toolbox.cpp:7791 msgid "Smaller spacing" msgstr "Espacement plus faible" -#: ../src/widgets/toolbox.cpp:7773 -#: ../src/widgets/toolbox.cpp:7804 -#: ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7791 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgctxt "Text tool" msgid "Normal" msgstr "Normal" -#: ../src/widgets/toolbox.cpp:7773 +#: ../src/widgets/toolbox.cpp:7791 msgid "Larger spacing" msgstr "Espacement plus important" #. name -#: ../src/widgets/toolbox.cpp:7778 +#: ../src/widgets/toolbox.cpp:7796 msgid "Line Height" msgstr "Hauteur de ligne" #. label -#: ../src/widgets/toolbox.cpp:7779 +#: ../src/widgets/toolbox.cpp:7797 msgid "Line:" msgstr "LigneΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7780 +#: ../src/widgets/toolbox.cpp:7798 msgid "Spacing between lines (times font size)" msgstr "Espacement entre les lignes (nombre de fois la taille de la police)" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7804 -#: ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgid "Negative spacing" msgstr "Espacement nΓ©gatif" -#: ../src/widgets/toolbox.cpp:7804 -#: ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgid "Positive spacing" msgstr "Espacement positif" #. name -#: ../src/widgets/toolbox.cpp:7809 +#: ../src/widgets/toolbox.cpp:7827 msgid "Word spacing" msgstr "Espacement intermot" #. label -#: ../src/widgets/toolbox.cpp:7810 +#: ../src/widgets/toolbox.cpp:7828 msgid "Word:" msgstr "MotΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7811 +#: ../src/widgets/toolbox.cpp:7829 msgid "Spacing between words (px)" msgstr "Espacement entre les mots (px)" #. name -#: ../src/widgets/toolbox.cpp:7840 +#: ../src/widgets/toolbox.cpp:7858 msgid "Letter spacing" msgstr "Interlettrage" #. label -#: ../src/widgets/toolbox.cpp:7841 +#: ../src/widgets/toolbox.cpp:7859 msgid "Letter:" msgstr "LettreΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7842 +#: ../src/widgets/toolbox.cpp:7860 msgid "Spacing between letters (px)" msgstr "Espacement entre les lettres (px)" #. name -#: ../src/widgets/toolbox.cpp:7871 +#: ../src/widgets/toolbox.cpp:7889 msgid "Kerning" msgstr "CrΓ©nage" #. label -#: ../src/widgets/toolbox.cpp:7872 +#: ../src/widgets/toolbox.cpp:7890 msgid "Kern:" msgstr "CrΓ©nageΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7873 +#: ../src/widgets/toolbox.cpp:7891 msgid "Horizontal kerning (px)" msgstr "CrΓ©nage horizontal (px)" #. name -#: ../src/widgets/toolbox.cpp:7902 +#: ../src/widgets/toolbox.cpp:7920 msgid "Vertical Shift" msgstr "DΓ©calage vertical" #. label -#: ../src/widgets/toolbox.cpp:7903 +#: ../src/widgets/toolbox.cpp:7921 msgid "Vert:" msgstr "VerticalΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7904 +#: ../src/widgets/toolbox.cpp:7922 msgid "Vertical shift (px)" msgstr "DΓ©calage vertical (px)" #. name -#: ../src/widgets/toolbox.cpp:7933 +#: ../src/widgets/toolbox.cpp:7951 msgid "Letter rotation" msgstr "Rotation des caractΓ¨res" #. label -#: ../src/widgets/toolbox.cpp:7934 +#: ../src/widgets/toolbox.cpp:7952 msgid "Rot:" msgstr "RotationΒ :" #. short label -#: ../src/widgets/toolbox.cpp:7935 +#: ../src/widgets/toolbox.cpp:7953 msgid "Character rotation (degrees)" msgstr "Rotation des caractΓ¨res (degrΓ©s)" -#: ../src/widgets/toolbox.cpp:8050 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: orthogonal" msgstr "Type de connecteurΒ : orthogonal" -#: ../src/widgets/toolbox.cpp:8050 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: polyline" msgstr "Type de connecteurΒ : polyligne" -#: ../src/widgets/toolbox.cpp:8099 +#: ../src/widgets/toolbox.cpp:8117 msgid "Change connector curvature" msgstr "Modifier la courbure du connecteur" -#: ../src/widgets/toolbox.cpp:8150 +#: ../src/widgets/toolbox.cpp:8168 msgid "Change connector spacing" msgstr "Modifier la marge des connecteurs" -#: ../src/widgets/toolbox.cpp:8264 +#: ../src/widgets/toolbox.cpp:8282 msgid "EditMode" msgstr "ModeΓ‰dition" -#: ../src/widgets/toolbox.cpp:8265 +#: ../src/widgets/toolbox.cpp:8283 msgid "Switch between connection point editing and connector drawing mode" msgstr "Alterner entre le mode Γ‰dition de point de connexion et le mode TracΓ© de connecteur" -#: ../src/widgets/toolbox.cpp:8279 +#: ../src/widgets/toolbox.cpp:8297 msgid "Avoid" msgstr "Γ‰viter" -#: ../src/widgets/toolbox.cpp:8289 +#: ../src/widgets/toolbox.cpp:8307 msgid "Ignore" msgstr "Ignorer" -#: ../src/widgets/toolbox.cpp:8300 +#: ../src/widgets/toolbox.cpp:8318 msgid "Orthogonal" msgstr "Othogonal" -#: ../src/widgets/toolbox.cpp:8301 +#: ../src/widgets/toolbox.cpp:8319 msgid "Make connector orthogonal or polyline" msgstr "Rend les connecteurs orthogonaux ou polylignes" -#: ../src/widgets/toolbox.cpp:8315 +#: ../src/widgets/toolbox.cpp:8333 msgid "Connector Curvature" msgstr "Courbure du connecteur" -#: ../src/widgets/toolbox.cpp:8315 +#: ../src/widgets/toolbox.cpp:8333 msgid "Curvature:" msgstr "CourbureΒ :" -#: ../src/widgets/toolbox.cpp:8316 +#: ../src/widgets/toolbox.cpp:8334 msgid "The amount of connectors curvature" msgstr "QuantitΓ© de courbure des connecteurs" -#: ../src/widgets/toolbox.cpp:8326 +#: ../src/widgets/toolbox.cpp:8344 msgid "Connector Spacing" msgstr "Espacement des connecteurs" -#: ../src/widgets/toolbox.cpp:8326 +#: ../src/widgets/toolbox.cpp:8344 msgid "Spacing:" msgstr "EspacementΒ :" -#: ../src/widgets/toolbox.cpp:8327 +#: ../src/widgets/toolbox.cpp:8345 msgid "The amount of space left around objects by auto-routing connectors" msgstr "Espace laissΓ© autour des objets par les connecteurs routΓ©s automatiquement" -#: ../src/widgets/toolbox.cpp:8338 +#: ../src/widgets/toolbox.cpp:8356 msgid "Graph" msgstr "Graphe" -#: ../src/widgets/toolbox.cpp:8348 +#: ../src/widgets/toolbox.cpp:8366 msgid "Connector Length" msgstr "Longueur des connecteurs" -#: ../src/widgets/toolbox.cpp:8349 +#: ../src/widgets/toolbox.cpp:8367 msgid "Ideal length for connectors when layout is applied" msgstr "Longueur idΓ©ale pour les connecteurs aprΓ¨s routage" -#: ../src/widgets/toolbox.cpp:8361 +#: ../src/widgets/toolbox.cpp:8379 msgid "Downwards" msgstr "Vers le bas" -#: ../src/widgets/toolbox.cpp:8362 +#: ../src/widgets/toolbox.cpp:8380 msgid "Make connectors with end-markers (arrows) point downwards" msgstr "Faire que les connecteurs avec des marqueurs de fin (des flΓ¨ches) pointent vers le bas" -#: ../src/widgets/toolbox.cpp:8378 +#: ../src/widgets/toolbox.cpp:8396 msgid "Do not allow overlapping shapes" msgstr "Ne pas permettre que deux formes se chevauchent" -#: ../src/widgets/toolbox.cpp:8393 +#: ../src/widgets/toolbox.cpp:8411 msgid "New connection point" msgstr "Nouveau point de connexion" -#: ../src/widgets/toolbox.cpp:8394 +#: ../src/widgets/toolbox.cpp:8412 msgid "Add a new connection point to the currently selected item" msgstr "Ajoute un nouveau point de connexion Γ l’élΓ©ment sΓ©lectionnΓ©" -#: ../src/widgets/toolbox.cpp:8405 +#: ../src/widgets/toolbox.cpp:8423 msgid "Remove connection point" msgstr "Supprimer le point de connexion" -#: ../src/widgets/toolbox.cpp:8406 +#: ../src/widgets/toolbox.cpp:8424 msgid "Remove the currently selected connection point" msgstr "Supprime le point de connexion sΓ©lectionnΓ©" -#: ../src/widgets/toolbox.cpp:8508 +#: ../src/widgets/toolbox.cpp:8526 msgid "Fill by" msgstr "Type de remplissage" -#: ../src/widgets/toolbox.cpp:8509 +#: ../src/widgets/toolbox.cpp:8527 msgid "Fill by:" msgstr "Type de remplissageΒ :" -#: ../src/widgets/toolbox.cpp:8521 +#: ../src/widgets/toolbox.cpp:8539 msgid "Fill Threshold" msgstr "Seuil de remplissageΒ :" -#: ../src/widgets/toolbox.cpp:8522 +#: ../src/widgets/toolbox.cpp:8540 msgid "The maximum allowed difference between the clicked pixel and the neighboring pixels to be counted in the fill" msgstr "La diffΓ©rence maximale entre le pixel du clic et les pixels voisins pour qu’ils soient ajoutΓ©s dans le remplissage" -#: ../src/widgets/toolbox.cpp:8548 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by" msgstr "Agrandir/rΓ©trΓ©cir de" -#: ../src/widgets/toolbox.cpp:8548 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by:" msgstr "Agrandir/rΓ©trΓ©cir deΒ :" -#: ../src/widgets/toolbox.cpp:8549 +#: ../src/widgets/toolbox.cpp:8567 msgid "The amount to grow (positive) or shrink (negative) the created fill path" msgstr "Agrandit (si positif) ou rΓ©trΓ©cit (si nΓ©gatif) de cette quantitΓ© le chemin créé par remplissage." -#: ../src/widgets/toolbox.cpp:8574 +#: ../src/widgets/toolbox.cpp:8592 msgid "Close gaps" msgstr "Combler les vides" -#: ../src/widgets/toolbox.cpp:8575 +#: ../src/widgets/toolbox.cpp:8593 msgid "Close gaps:" msgstr "Combler les videsΒ :" -#: ../src/widgets/toolbox.cpp:8587 +#: ../src/widgets/toolbox.cpp:8605 msgid "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Restaurer les prΓ©fΓ©rences par dΓ©faut de l’outil de remplissage au seau (changez les valeurs par dΓ©faut dans Inkscape PrΓ©fΓ©rences>Outils)" @@ -24512,441 +24577,649 @@ msgstr "Nombre de dentsΒ :" msgid "Pressure angle (degrees):" msgstr "Angle d’appuiΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:1 -#: ../share/extensions/gcodetools_area.inx.h:1 -msgid "\"Create area offset\": creates several Inkscape path offsets to fill original path's area up to \"Area radius\" value. Outlines start from \"1/2 D\" up to \"Area width\" total width with \"D\" steps where D is taken from the nearest tool definition (\"Tool diameter\" value). Only one offset will be created if the \"Area width\" is equal to \"1/2 D\"." +#: ../share/extensions/gcodetools_about.inx.h:1 +msgid "About" +msgstr "Γ€ propos" + +#: ../share/extensions/gcodetools_about.inx.h:2 +#: ../share/extensions/gcodetools_area.inx.h:24 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 +#: ../share/extensions/gcodetools_dxf_points.inx.h:11 +#: ../share/extensions/gcodetools_engraving.inx.h:12 +#: ../share/extensions/gcodetools_graffiti.inx.h:13 +#: ../share/extensions/gcodetools_lathe.inx.h:16 +#: ../share/extensions/gcodetools_orientation_points.inx.h:3 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:4 +#: ../share/extensions/gcodetools_tools_library.inx.h:1 +msgid "Gcodetools" +msgstr "Programmation de commande numΓ©rique" + +#: ../share/extensions/gcodetools_about.inx.h:3 +#: ../share/extensions/gcodetools_area.inx.h:25 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 +#: ../share/extensions/gcodetools_dxf_points.inx.h:12 +#: ../share/extensions/gcodetools_engraving.inx.h:13 +#: ../share/extensions/gcodetools_graffiti.inx.h:14 +#: ../share/extensions/gcodetools_lathe.inx.h:17 +#: ../share/extensions/gcodetools_orientation_points.inx.h:4 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:5 +#: ../share/extensions/gcodetools_tools_library.inx.h:2 +msgid "Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed. Tutorials, manuals and support can be found at English support forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas, Chris Lusby Taylor. Gcodetools ver. 1.7" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:2 -#: ../share/extensions/gcodetools_orientation_points.inx.h:1 -msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" +#: ../share/extensions/gcodetools_about.inx.h:4 +msgid "Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode is a special format which is used in most of CNC machines. So Gcodetools allows you to use Inkscape as CAM program. It can be use with a lot of machone types: Mills Lathes Laser and Palsma cutters and engravers Mill engravers Plotters etc. To get more info visit developers page at http://www.cnc-club.ru/gcodetools" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:3 -#: ../share/extensions/gcodetools_orientation_points.inx.h:2 -msgid "3-points mode (move, rotate and mirror, different X/Y scale)" +#: ../share/extensions/gcodetools_area.inx.h:1 +msgid "\"Create area offset\": creates several Inkscape path offsets to fill original path's area up to \"Area radius\" value. Outlines start from \"1/2 D\" up to \"Area width\" total width with \"D\" steps where D is taken from the nearest tool definition (\"Tool diameter\" value). Only one offset will be created if the \"Area width\" is equal to \"1/2 D\"." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:4 #: ../share/extensions/gcodetools_area.inx.h:2 msgid "Action:" msgstr "ActionΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:5 #: ../share/extensions/gcodetools_area.inx.h:3 #: ../share/extensions/gcodetools_dxf_points.inx.h:1 -#: ../share/extensions/gcodetools_engraving.inx.h:1 +#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_graffiti.inx.h:3 #: ../share/extensions/gcodetools_lathe.inx.h:1 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:1 msgid "Add numeric suffix to filename" msgstr "Ajouter un suffixe numΓ©rique au nom de fichier" -#: ../share/extensions/gcodetools_all_in_one.inx.h:6 #: ../share/extensions/gcodetools_area.inx.h:4 #: ../share/extensions/gcodetools_dxf_points.inx.h:2 -#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_engraving.inx.h:3 +#: ../share/extensions/gcodetools_graffiti.inx.h:4 #: ../share/extensions/gcodetools_lathe.inx.h:2 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:2 msgid "Additional post-processor:" msgstr "PrΓ©-processeur supplΓ©mentaireΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:7 -msgid "All in one" -msgstr "Tout en un" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:8 #: ../share/extensions/gcodetools_area.inx.h:5 msgid "Area" msgstr "Aire" -#: ../share/extensions/gcodetools_all_in_one.inx.h:9 #: ../share/extensions/gcodetools_area.inx.h:6 -msgid "Area artefacts" +msgid "Area artifacts" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:10 #: ../share/extensions/gcodetools_area.inx.h:7 -#, fuzzy -msgid "Area width:" -msgstr "DΓ©finir la largeurΒ :" +msgid "Area fill anlge" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:11 #: ../share/extensions/gcodetools_area.inx.h:8 -msgid "Artefact diameter:" +msgid "Area fill shift" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:12 #: ../share/extensions/gcodetools_area.inx.h:9 +msgid "Area tool overlap (0..0.9):" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:10 +#, fuzzy +msgid "Area width:" +msgstr "DΓ©finir la largeurΒ :" + +#: ../share/extensions/gcodetools_area.inx.h:11 +#, fuzzy +msgid "Artifact diameter:" +msgstr "Coller le paramΓ¨tre du chemin" + +#: ../share/extensions/gcodetools_area.inx.h:12 #: ../share/extensions/gcodetools_lathe.inx.h:3 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:3 -msgid "Biarc interpolation tolerance is the maximum distance between path and its approximation. The segment will be split into two segments if the distance between path's segment and it's approximation exceeds biarc interpolation tolerance." +msgid "Biarc interpolation tolerance is the maximum distance between path and its approximation. The segment will be split into two segments if the distance between path's segment and its approximation exceeds biarc interpolation tolerance. For depth function c=color intensity from 0.0 (white) to 1.0 (black), d is the depth defined by orientation points, s - surface defined by orientation points." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:13 -#: ../share/extensions/gcodetools_area.inx.h:10 +#: ../share/extensions/gcodetools_area.inx.h:13 #: ../share/extensions/gcodetools_lathe.inx.h:4 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:4 #, fuzzy msgid "Biarc interpolation tolerance:" msgstr "Γ‰tapes d’interpolationΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:14 -#: ../share/extensions/gcodetools_dxf_points.inx.h:3 -msgid "Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used. Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value." +#: ../share/extensions/gcodetools_area.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:4 +#: ../share/extensions/gcodetools_graffiti.inx.h:5 +#: ../share/extensions/gcodetools_lathe.inx.h:5 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 +msgid "Comment Gcode:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:15 -#: ../share/extensions/gcodetools_dxf_points.inx.h:4 -msgid "Convert selection:" -msgstr "Convertir la sΓ©lectionΒ :" +#: ../share/extensions/gcodetools_area.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:7 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 +#, fuzzy +msgid "Cutting order" +msgstr "Contour en arΓte" -#: ../share/extensions/gcodetools_all_in_one.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:6 -msgid "DXF points" -msgstr "Points DXF" +#: ../share/extensions/gcodetools_area.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:8 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 +#, fuzzy +msgid "Depth function:" +msgstr "Fonction pour le rougeΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:17 -#: ../share/extensions/gcodetools_area.inx.h:11 -#: ../share/extensions/gcodetools_dxf_points.inx.h:7 -#: ../share/extensions/gcodetools_engraving.inx.h:3 -#: ../share/extensions/gcodetools_lathe.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 +#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_dxf_points.inx.h:6 +#: ../share/extensions/gcodetools_engraving.inx.h:5 +#: ../share/extensions/gcodetools_graffiti.inx.h:8 +#: ../share/extensions/gcodetools_lathe.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 msgid "Directory:" msgstr "DossierΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:18 -msgid "Draw additional graphics to debug engraving path:" +#: ../share/extensions/gcodetools_area.inx.h:18 +#: ../share/extensions/gcodetools_dxf_points.inx.h:7 +#: ../share/extensions/gcodetools_engraving.inx.h:8 +#: ../share/extensions/gcodetools_graffiti.inx.h:9 +#: ../share/extensions/gcodetools_lathe.inx.h:10 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 +msgid "Fast pre-penetrate" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:19 -#: ../share/extensions/gcodetools_engraving.inx.h:5 -msgid "Engraving" -msgstr "Gravure" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:20 -#: ../share/extensions/gcodetools_area.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:19 #: ../share/extensions/gcodetools_dxf_points.inx.h:8 -#: ../share/extensions/gcodetools_engraving.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 +#: ../share/extensions/gcodetools_engraving.inx.h:9 +#: ../share/extensions/gcodetools_graffiti.inx.h:10 +#: ../share/extensions/gcodetools_lathe.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 msgid "File:" msgstr "FichierΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:21 -#: ../share/extensions/gcodetools_area.inx.h:13 -#: ../share/extensions/gcodetools_dxf_points.inx.h:9 -#: ../share/extensions/gcodetools_engraving.inx.h:7 -#: ../share/extensions/gcodetools_lathe.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 -msgid "Full path to log file:" -msgstr "Chemin du fichier journalΒ :" +#: ../share/extensions/gcodetools_area.inx.h:20 +#, fuzzy +msgid "Fill area" +msgstr "Remplissage d’une zone bornΓ©e" -#: ../share/extensions/gcodetools_all_in_one.inx.h:22 -#: ../share/extensions/gcodetools_area.inx.h:14 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 -#: ../share/extensions/gcodetools_dxf_points.inx.h:10 -#: ../share/extensions/gcodetools_engraving.inx.h:8 -#: ../share/extensions/gcodetools_lathe.inx.h:11 -#: ../share/extensions/gcodetools_orientation_points.inx.h:3 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 -#: ../share/extensions/gcodetools_tools_library.inx.h:1 -msgid "Gcodetools" -msgstr "Programmation de commande numΓ©rique" +#: ../share/extensions/gcodetools_area.inx.h:21 +#, fuzzy +msgid "Filling method" +msgstr "MΓ©thode de divisionΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:23 -#: ../share/extensions/gcodetools_area.inx.h:15 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 -#: ../share/extensions/gcodetools_dxf_points.inx.h:11 -#: ../share/extensions/gcodetools_engraving.inx.h:9 -#: ../share/extensions/gcodetools_lathe.inx.h:12 -#: ../share/extensions/gcodetools_orientation_points.inx.h:4 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 -#: ../share/extensions/gcodetools_tools_library.inx.h:2 -msgid "Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed. Tutorials, manuals and support can be found at English support forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas. Gcodetools ver. 1.6.01" +#: ../share/extensions/gcodetools_area.inx.h:22 +#: ../share/extensions/gcodetools_dxf_points.inx.h:9 +#: ../share/extensions/gcodetools_engraving.inx.h:10 +#: ../share/extensions/gcodetools_graffiti.inx.h:11 +#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +msgid "Flip y axis and parameterize Gcode" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:24 -#: ../share/extensions/gcodetools_area.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:12 -#: ../share/extensions/gcodetools_engraving.inx.h:10 -#: ../share/extensions/gcodetools_lathe.inx.h:13 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 +#: ../share/extensions/gcodetools_area.inx.h:23 +#: ../share/extensions/gcodetools_dxf_points.inx.h:10 +#: ../share/extensions/gcodetools_engraving.inx.h:11 +#: ../share/extensions/gcodetools_graffiti.inx.h:12 +#: ../share/extensions/gcodetools_lathe.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 +msgid "Full path to log file:" +msgstr "Chemin du fichier journalΒ :" + +#: ../share/extensions/gcodetools_area.inx.h:26 +#: ../share/extensions/gcodetools_dxf_points.inx.h:13 +#: ../share/extensions/gcodetools_engraving.inx.h:14 +#: ../share/extensions/gcodetools_graffiti.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:18 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 msgid "Generate log file" msgstr "GΓ©nΓ©rer un fichier journal" -#: ../share/extensions/gcodetools_all_in_one.inx.h:26 -#: ../share/extensions/gcodetools_tools_library.inx.h:4 -msgid "Just check tools" +#: ../share/extensions/gcodetools_area.inx.h:27 +#: ../share/extensions/gcodetools_engraving.inx.h:15 +#: ../share/extensions/gcodetools_graffiti.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:19 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 +msgid "Get additional comments from object's properties" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:27 -#: ../share/extensions/gcodetools_area.inx.h:18 +#: ../share/extensions/gcodetools_area.inx.h:29 msgid "Maximum area cutting curves:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:28 -#: ../share/extensions/gcodetools_engraving.inx.h:12 -msgid "Maximum distance for engraving:" -msgstr "Distance maximum pour graverΒ :" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:29 -#: ../share/extensions/gcodetools_area.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:19 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:26 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 #, fuzzy msgid "Maximum splitting depth:" msgstr "Simplification des cheminsΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:30 -#: ../share/extensions/gcodetools_area.inx.h:20 -#: ../share/extensions/gcodetools_engraving.inx.h:13 -#: ../share/extensions/gcodetools_lathe.inx.h:20 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 +#: ../share/extensions/gcodetools_area.inx.h:31 +#: ../share/extensions/gcodetools_engraving.inx.h:18 +#: ../share/extensions/gcodetools_graffiti.inx.h:21 +#: ../share/extensions/gcodetools_lathe.inx.h:27 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 msgid "Minimum arc radius:" msgstr "Rayon d'arc minimumΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:31 -#: ../share/extensions/gcodetools_engraving.inx.h:14 -msgid "Number of sample points used to calculate distance:" -msgstr "" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:32 -#: ../share/extensions/gcodetools_area.inx.h:21 -#: ../share/extensions/gcodetools_engraving.inx.h:15 -#: ../share/extensions/gcodetools_lathe.inx.h:21 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 +#: ../share/extensions/gcodetools_area.inx.h:33 +#: ../share/extensions/gcodetools_engraving.inx.h:20 +#: ../share/extensions/gcodetools_graffiti.inx.h:23 +#: ../share/extensions/gcodetools_lathe.inx.h:30 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 msgid "Offset along Z axis:" msgstr "DΓ©calage sur l'axe ZΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:35 -#: ../share/extensions/gcodetools_orientation_points.inx.h:8 -msgid "Orientation points are used to calculate transformation (offset,scale,mirror,rotation in XY plane) of the path. 3-points mode only: do not put all three into one line (use 2-points mode instead). You can modify Z surface, Z depth values later using text tool (3rd coordinates). If there are no orientation points inside current layer they are taken from the upper layer. Do not ungroup orientation points! You can select them using double click to enter the group or by Ctrl+Click. Now press apply to create control points (independent set for each layer)." +#: ../share/extensions/gcodetools_area.inx.h:35 +#: ../share/extensions/gcodetools_dxf_points.inx.h:16 +#: ../share/extensions/gcodetools_engraving.inx.h:22 +#: ../share/extensions/gcodetools_graffiti.inx.h:28 +#: ../share/extensions/gcodetools_lathe.inx.h:33 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:23 +#, fuzzy +msgid "Parameterize Gcode" +msgstr "ParamΓ¨tres" + +#: ../share/extensions/gcodetools_area.inx.h:36 +#: ../share/extensions/gcodetools_lathe.inx.h:34 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:24 +msgid "Pass by Pass" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:36 -#: ../share/extensions/gcodetools_orientation_points.inx.h:9 -msgid "Orientation type:" -msgstr "Type d'orientationΒ :" +#: ../share/extensions/gcodetools_area.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:35 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:25 +#, fuzzy +msgid "Path by path" +msgstr "Coller le chemin" -#: ../share/extensions/gcodetools_all_in_one.inx.h:37 -#: ../share/extensions/gcodetools_area.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:23 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 +#: ../share/extensions/gcodetools_area.inx.h:38 +#: ../share/extensions/gcodetools_lathe.inx.h:36 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:26 msgid "Path to Gcode" msgstr "Chemin vers G-code" -#: ../share/extensions/gcodetools_all_in_one.inx.h:38 -#: ../share/extensions/gcodetools_area.inx.h:24 -#: ../share/extensions/gcodetools_dxf_points.inx.h:14 -#: ../share/extensions/gcodetools_engraving.inx.h:17 -#: ../share/extensions/gcodetools_lathe.inx.h:24 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 +#: ../share/extensions/gcodetools_area.inx.h:39 +#: ../share/extensions/gcodetools_dxf_points.inx.h:17 +#: ../share/extensions/gcodetools_engraving.inx.h:23 +#: ../share/extensions/gcodetools_graffiti.inx.h:29 +#: ../share/extensions/gcodetools_lathe.inx.h:37 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:27 msgid "Post-processor:" msgstr "Post-processeurΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:39 -#: ../share/extensions/gcodetools_area.inx.h:25 -#: ../share/extensions/gcodetools_dxf_points.inx.h:15 -#: ../share/extensions/gcodetools_engraving.inx.h:18 -#: ../share/extensions/gcodetools_lathe.inx.h:25 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 +#: ../share/extensions/gcodetools_area.inx.h:40 +#: ../share/extensions/gcodetools_dxf_points.inx.h:18 +#: ../share/extensions/gcodetools_engraving.inx.h:24 +#: ../share/extensions/gcodetools_graffiti.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:38 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:28 msgid "Preferences" msgstr "PrΓ©fΓ©rences" -#: ../share/extensions/gcodetools_all_in_one.inx.h:40 -#: ../share/extensions/gcodetools_area.inx.h:26 -#: ../share/extensions/gcodetools_engraving.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:26 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 +#: ../share/extensions/gcodetools_area.inx.h:41 +#: ../share/extensions/gcodetools_dxf_points.inx.h:19 +#: ../share/extensions/gcodetools_engraving.inx.h:25 +#: ../share/extensions/gcodetools_graffiti.inx.h:33 +#: ../share/extensions/gcodetools_lathe.inx.h:39 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:29 +msgid "Round all values to 4 digits" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:42 +#: ../share/extensions/gcodetools_engraving.inx.h:26 +#: ../share/extensions/gcodetools_graffiti.inx.h:34 +#: ../share/extensions/gcodetools_lathe.inx.h:40 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 #, fuzzy msgid "Scale along Z axis:" msgstr "Longueur de base de l’axe z" -#: ../share/extensions/gcodetools_all_in_one.inx.h:41 -#: ../share/extensions/gcodetools_area.inx.h:27 -#: ../share/extensions/gcodetools_engraving.inx.h:20 -#: ../share/extensions/gcodetools_lathe.inx.h:27 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 +#: ../share/extensions/gcodetools_area.inx.h:43 +#: ../share/extensions/gcodetools_engraving.inx.h:27 +#: ../share/extensions/gcodetools_graffiti.inx.h:35 +#: ../share/extensions/gcodetools_lathe.inx.h:41 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:31 msgid "Select all paths if nothing is selected" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:42 -#: ../share/extensions/gcodetools_tools_library.inx.h:5 -msgid "Selected tool type fills appropriate default values. You can change these values using the Text tool later on. The topmost (z order) tool in the active layer is used. If there is no tool inside the current layer it is taken from the upper layer. Press Apply to create new tool." +#: ../share/extensions/gcodetools_area.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:42 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:32 +msgid "Sort paths to reduse rapid distance" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:43 -#: ../share/extensions/gcodetools_engraving.inx.h:21 -#, fuzzy -msgid "Sharp angle tolerance:" -msgstr "TolΓ©rance maximale de finΒ :" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:44 -#: ../share/extensions/gcodetools_engraving.inx.h:22 -msgid "This function creates path to engrave sharp angles. Cutter's shape function is defined by the tool. Some simple shapes: cone....(45 degrees)...........: w cone....(height/diameter=10/3).: 10/3 w sphere..(\"r\" diameter).........: math.sqrt(max(0,r**2-w**2)) ellipse.(R1=r and R2=r*4r).....: math.sqrt(max(0,r**2-w**2))*4" +#: ../share/extensions/gcodetools_area.inx.h:46 +#: ../share/extensions/gcodetools_lathe.inx.h:43 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:33 +msgid "Subpath by subpath" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:45 -#: ../share/extensions/gcodetools_tools_library.inx.h:6 -msgid "Tools library" -msgstr "BibliothΓ¨que d'outils" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:46 -#: ../share/extensions/gcodetools_tools_library.inx.h:7 -msgid "Tools type:" -msgstr "Type d'outilsΒ : " - -#: ../share/extensions/gcodetools_all_in_one.inx.h:47 -#: ../share/extensions/gcodetools_area.inx.h:28 -#: ../share/extensions/gcodetools_dxf_points.inx.h:16 -#: ../share/extensions/gcodetools_engraving.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:28 -#: ../share/extensions/gcodetools_orientation_points.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 +#: ../share/extensions/gcodetools_area.inx.h:47 +#: ../share/extensions/gcodetools_dxf_points.inx.h:20 +#: ../share/extensions/gcodetools_engraving.inx.h:30 +#: ../share/extensions/gcodetools_graffiti.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:45 +#: ../share/extensions/gcodetools_orientation_points.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:34 msgid "Units (mm or in):" msgstr "UnitΓ© (mm ou in)Β :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:48 -#: ../share/extensions/gcodetools_area.inx.h:29 +#: ../share/extensions/gcodetools_area.inx.h:48 msgid "Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by colored arrows." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:49 -#: ../share/extensions/gcodetools_orientation_points.inx.h:11 -msgid "Z depth:" -msgstr "Profondeur sur l'axe ZΒ :" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:50 -#: ../share/extensions/gcodetools_area.inx.h:30 -#: ../share/extensions/gcodetools_dxf_points.inx.h:17 -#: ../share/extensions/gcodetools_engraving.inx.h:24 -#: ../share/extensions/gcodetools_lathe.inx.h:29 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 +#: ../share/extensions/gcodetools_area.inx.h:49 +#: ../share/extensions/gcodetools_dxf_points.inx.h:21 +#: ../share/extensions/gcodetools_engraving.inx.h:31 +#: ../share/extensions/gcodetools_graffiti.inx.h:39 +#: ../share/extensions/gcodetools_lathe.inx.h:46 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:35 msgid "Z safe height for G00 move over blank:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:51 -#: ../share/extensions/gcodetools_orientation_points.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:50 +msgid "Zig zag" +msgstr "Zig-zag" + +#: ../share/extensions/gcodetools_area.inx.h:51 +msgid "delete" +msgstr "supprimer" + +#: ../share/extensions/gcodetools_area.inx.h:53 +msgid "mark with an arrow" +msgstr "marquer avec une flΓ¨che" + +#: ../share/extensions/gcodetools_area.inx.h:54 #, fuzzy -msgid "Z surface:" -msgstr "Ordonner les cΓ΄tΓ©s sur l’axe Z parΒ :" +msgid "mark with style" +msgstr "Style de commutation" -#: ../share/extensions/gcodetools_all_in_one.inx.h:52 -#: ../share/extensions/gcodetools_dxf_points.inx.h:18 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:1 +msgid "Check for Gcodetools latest stable version and try to get the updates." +msgstr "VΓ©rifier si une nouvelle version est disponible pour mise Γ jour" + +#: ../share/extensions/gcodetools_check_for_updates.inx.h:2 +msgid "Check for updates" +msgstr "VΓ©rifier les mises Γ jour" + +#: ../share/extensions/gcodetools_dxf_points.inx.h:3 +msgid "Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used. Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value." +msgstr "" + +#: ../share/extensions/gcodetools_dxf_points.inx.h:4 +msgid "Convert selection:" +msgstr "Convertir la sΓ©lectionΒ :" + +#: ../share/extensions/gcodetools_dxf_points.inx.h:5 +msgid "DXF points" +msgstr "Points DXF" + +#: ../share/extensions/gcodetools_dxf_points.inx.h:22 msgid "clear dxfpoint sign" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:53 -#: ../share/extensions/gcodetools_tools_library.inx.h:8 -msgid "cone" -msgstr "cΓ΄ne" +#: ../share/extensions/gcodetools_dxf_points.inx.h:25 +msgid "set as dxfpoint and draw arrow" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:54 -#: ../share/extensions/gcodetools_tools_library.inx.h:9 -msgid "cylinder" -msgstr "Cylindre" +#: ../share/extensions/gcodetools_dxf_points.inx.h:26 +msgid "set as dxfpoint and save shape" +msgstr "dΓ©finir en tant que dxfpoint et enregistrer la forme" -#: ../share/extensions/gcodetools_all_in_one.inx.h:55 -#: ../share/extensions/gcodetools_tools_library.inx.h:10 -msgid "default" -msgstr "dΓ©faut" +#: ../share/extensions/gcodetools_engraving.inx.h:1 +msgid "Accuracy factor (2 low to 10 high):" +msgstr "Facteur de prΓ©cision (2 faible Γ 10 fort)Β :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:56 -#: ../share/extensions/gcodetools_area.inx.h:31 -msgid "delete" -msgstr "supprimer" +#: ../share/extensions/gcodetools_engraving.inx.h:6 +msgid "Draw additional graphics to see engraving path" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:57 -#: ../share/extensions/gcodetools_tools_library.inx.h:11 -msgid "lathe cutter" +#: ../share/extensions/gcodetools_engraving.inx.h:7 +msgid "Engraving" +msgstr "Gravure" + +#: ../share/extensions/gcodetools_engraving.inx.h:17 +#, fuzzy +msgid "Maximum distance for engraving (mm/inch):" +msgstr "Distance maximum pour graverΒ :" + +#: ../share/extensions/gcodetools_engraving.inx.h:28 +msgid "Smooth convex corners between this value and 180 degrees:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:58 -#: ../share/extensions/gcodetools_area.inx.h:32 -msgid "mark with an arrow" +#: ../share/extensions/gcodetools_engraving.inx.h:29 +msgid "This function creates path to engrave letters or any shape with sharp angles. Cutter's depth as a function of radius is defined by the tool. Depth may be any Python expression. For instance: cone....(45 degrees)......................: w cone....(height/diameter=10/3)..: 10*w/3 sphere..(radius r)...........................: math.sqrt(max(0,r**2-w**2)) ellipse.(minor axis r, major 4r).....: math.sqrt(max(0,r**2-w**2))*4" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:59 -#: ../share/extensions/gcodetools_area.inx.h:33 +#: ../share/extensions/gcodetools_graffiti.inx.h:1 +#: ../share/extensions/gcodetools_orientation_points.inx.h:1 +msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" +msgstr "" + +#: ../share/extensions/gcodetools_graffiti.inx.h:2 +#: ../share/extensions/gcodetools_orientation_points.inx.h:2 +msgid "3-points mode (move, rotate and mirror, different X/Y scale)" +msgstr "" + +#: ../share/extensions/gcodetools_graffiti.inx.h:6 +msgid "Create linearization preview" +msgstr "CrΓ©er un aperΓ§u de linΓ©arisation" + +#: ../share/extensions/gcodetools_graffiti.inx.h:7 +msgid "Create preview" +msgstr "CrΓ©er un aperΓ§u" + +#: ../share/extensions/gcodetools_graffiti.inx.h:17 +msgid "Graffiti" +msgstr "Graffiti" + +#: ../share/extensions/gcodetools_graffiti.inx.h:19 #, fuzzy -msgid "mark with style" -msgstr "Style de commutation" +msgid "Maximum segment length:" +msgstr "Longueur maximum de segment (px)Β :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:60 -#: ../share/extensions/gcodetools_tools_library.inx.h:12 +#: ../share/extensions/gcodetools_graffiti.inx.h:20 #, fuzzy -msgid "plasma" -msgstr "_Splash" +msgid "Minimal connector radius:" +msgstr "Rayon d'arc minimumΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:61 -#: ../share/extensions/gcodetools_dxf_points.inx.h:19 -msgid "set as dxfpoint and draw arrow" +#: ../share/extensions/gcodetools_graffiti.inx.h:26 +#: ../share/extensions/gcodetools_orientation_points.inx.h:7 +msgid "Orientation points are used to calculate transformation (offset,scale,mirror,rotation in XY plane) of the path. 3-points mode only: do not put all three into one line (use 2-points mode instead). You can modify Z surface, Z depth values later using text tool (3rd coordinates). If there are no orientation points inside current layer they are taken from the upper layer. Do not ungroup orientation points! You can select them using double click to enter the group or by Ctrl+Click. Now press apply to create control points (independent set for each layer)." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:62 -#: ../share/extensions/gcodetools_dxf_points.inx.h:20 -msgid "set as dxfpoint and save shape" -msgstr "dΓ©finir en tant que dxfpoint et enregistrer la forme" +#: ../share/extensions/gcodetools_graffiti.inx.h:27 +#: ../share/extensions/gcodetools_orientation_points.inx.h:8 +msgid "Orientation type:" +msgstr "Type d'orientationΒ :" -#: ../share/extensions/gcodetools_all_in_one.inx.h:63 -#: ../share/extensions/gcodetools_tools_library.inx.h:13 +#: ../share/extensions/gcodetools_graffiti.inx.h:31 +msgid "Preview's paint emmit (pts/s):" +msgstr "" + +#: ../share/extensions/gcodetools_graffiti.inx.h:32 +msgid "Preview's size (px):" +msgstr "Taille de l'aperΓ§u (px)Β :" + +#: ../share/extensions/gcodetools_graffiti.inx.h:36 #, fuzzy -msgid "tangent knife" -msgstr "DΓ©calage tangentiel" +msgid "Start position (x;y):" +msgstr "Disposition du composantΒ :" -#: ../share/extensions/gcodetools_check_for_updates.inx.h:1 -msgid "Check for Gcodetools latest stable version and try to get the updates." -msgstr "VΓ©rifier si une nouvelle version est disponible pour mise Γ jour" +#: ../share/extensions/gcodetools_graffiti.inx.h:38 +#: ../share/extensions/gcodetools_orientation_points.inx.h:10 +msgid "Z depth:" +msgstr "Profondeur sur l'axe ZΒ :" -#: ../share/extensions/gcodetools_check_for_updates.inx.h:2 -msgid "Check for updates" -msgstr "VΓ©rifier les mises Γ jour" +#: ../share/extensions/gcodetools_graffiti.inx.h:40 +#: ../share/extensions/gcodetools_orientation_points.inx.h:11 +#, fuzzy +msgid "Z surface:" +msgstr "Ordonner les cΓ΄tΓ©s sur l’axe Z parΒ :" -#: ../share/extensions/gcodetools_dxf_points.inx.h:5 -msgid "DXF Points" -msgstr "Points DXF" +#: ../share/extensions/gcodetools_graffiti.inx.h:41 +#: ../share/extensions/gcodetools_orientation_points.inx.h:12 +msgid "graffiti points" +msgstr "Points graffiti" -#: ../share/extensions/gcodetools_engraving.inx.h:4 -msgid "Draw additional graphics to debug engraving path" -msgstr "" +#: ../share/extensions/gcodetools_graffiti.inx.h:43 +#: ../share/extensions/gcodetools_orientation_points.inx.h:14 +#, fuzzy +msgid "in-out reference point" +msgstr "PrΓ©fΓ©rences des dΓ©gradΓ©s" -#: ../share/extensions/gcodetools_lathe.inx.h:5 +#: ../share/extensions/gcodetools_lathe.inx.h:6 #, fuzzy msgid "Create fine cut using:" msgstr "CrΓ©er de nouveaux objets avecΒ :" -#: ../share/extensions/gcodetools_lathe.inx.h:7 -msgid "File" -msgstr "Fichier" - -#: ../share/extensions/gcodetools_lathe.inx.h:8 +#: ../share/extensions/gcodetools_lathe.inx.h:12 #, fuzzy msgid "Fine cut count:" msgstr "Rechercher cette policeΒ :" -#: ../share/extensions/gcodetools_lathe.inx.h:9 +#: ../share/extensions/gcodetools_lathe.inx.h:13 #, fuzzy msgid "Fine cut width:" msgstr "Largeur de recouvrementΒ :" -#: ../share/extensions/gcodetools_lathe.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:21 msgid "Lathe" msgstr "Tour" -#: ../share/extensions/gcodetools_lathe.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:22 msgid "Lathe X axis remap:" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:17 +#: ../share/extensions/gcodetools_lathe.inx.h:23 msgid "Lathe Z axis remap:" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:24 +#, fuzzy +msgid "Lathe modify path" +msgstr "Modifer le chemin" + +#: ../share/extensions/gcodetools_lathe.inx.h:25 msgid "Lathe width:" msgstr "Largeur du tourΒ :" -#: ../share/extensions/gcodetools_orientation_points.inx.h:7 -msgid "Orientation points" -msgstr "Points d'orientation" +#: ../share/extensions/gcodetools_lathe.inx.h:28 +#, fuzzy +msgid "Move path" +msgstr "DΓ©placer les motifs" + +#: ../share/extensions/gcodetools_lathe.inx.h:44 +msgid "This function modifies path so it will be able to be cut with the rectangular cutter." +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:1 +msgid "-------------------------------------------------" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2 +#, fuzzy +msgid "Create in-out paths" +msgstr "CrΓ©er un chemin spirographique" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:3 +msgid "Do not add in-out reference points" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:7 +#, fuzzy +msgid "In-out path length:" +msgstr "Longueur du chemin" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:8 +msgid "In-out path max distance to reference point:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:9 +msgid "In-out path radius for round path:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:10 +msgid "In-out path type:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:11 +msgid "Maximum angle for corner (0-180 deg):" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:12 +#, fuzzy +msgid "Perpendicular" +msgstr "MΓ©diatrice" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 +#, fuzzy +msgid "Prepare corners" +msgstr "coin de page" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:14 +msgid "Prepare path for plasma or laser cuters" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:15 +#, fuzzy +msgid "Replace original path" +msgstr "Remplacer des polices" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:16 +#, fuzzy +msgid "Round" +msgstr "Arrondi" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:17 +#, fuzzy +msgid "Stepout distance for corners:" +msgstr "Aimanter aux coins des boΓ®tes englobantes" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:18 +#, fuzzy +msgid "Tangent" +msgstr "Magenta" + +#: ../share/extensions/gcodetools_tools_library.inx.h:4 +msgid "Just check tools" +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:5 +msgid "Selected tool type fills appropriate default values. You can change these values using the Text tool later on. The topmost (z order) tool in the active layer is used. If there is no tool inside the current layer it is taken from the upper layer. Press Apply to create new tool." +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:6 +msgid "Tools library" +msgstr "BibliothΓ¨que d'outils" + +#: ../share/extensions/gcodetools_tools_library.inx.h:7 +msgid "Tools type:" +msgstr "Type d'outilsΒ : " + +#: ../share/extensions/gcodetools_tools_library.inx.h:8 +msgid "cone" +msgstr "cΓ΄ne" + +#: ../share/extensions/gcodetools_tools_library.inx.h:9 +msgid "cylinder" +msgstr "Cylindre" + +#: ../share/extensions/gcodetools_tools_library.inx.h:10 +msgid "default" +msgstr "dΓ©faut" + +#: ../share/extensions/gcodetools_tools_library.inx.h:11 +msgid "graffiti" +msgstr "graffiti" + +#: ../share/extensions/gcodetools_tools_library.inx.h:12 +msgid "lathe cutter" +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:13 +#, fuzzy +msgid "plasma" +msgstr "_Splash" + +#: ../share/extensions/gcodetools_tools_library.inx.h:14 +#, fuzzy +msgid "tangent knife" +msgstr "DΓ©calage tangentiel" #: ../share/extensions/generate_voronoi.inx.h:1 msgid "Average size of cell (px):" @@ -27839,6 +28112,22 @@ msgstr "EntrΓ©e mΓ©tafichier Windows (*.wmf)" msgid "XAML Input" msgstr "EntrΓ©e XAML" +#~ msgid "Iconify" +#~ msgstr "Iconifier" +#~ msgid "Close" +#~ msgstr "Fermer" +#~ msgid "(invalid UTF-8 string)" +#~ msgstr "(chaΓ®ne UTF-8 invalide)" +#~ msgid "All in one" +#~ msgstr "Tout en un" + +#, fuzzy +#~ msgid "Sharp angle tolerance:" +#~ msgstr "TolΓ©rance maximale de finΒ :" +#~ msgid "DXF Points" +#~ msgstr "Points DXF" +#~ msgid "File" +#~ msgstr "Fichier" #~ msgid "center" #~ msgstr "centre" #~ msgid "Center" @@ -27858,10 +28147,6 @@ msgstr "EntrΓ©e XAML" #~ msgstr "Translucide" #~ msgid "Label:" #~ msgstr "Γ‰tiquetteΒ :" -#~ msgid "Iconify this dock" -#~ msgstr "Iconifier ce point d’attache" -#~ msgid "Close this dock" -#~ msgstr "Fermer ce point d’attache" #, fuzzy #~ msgid "Ancestor offset" @@ -28982,10 +29267,6 @@ msgstr "EntrΓ©e XAML" #, fuzzy #~ msgid "Area width" #~ msgstr "Γ‰paisseur du contour" - -#, fuzzy -#~ msgid "artefact diameter:" -#~ msgstr "Coller le paramΓ¨tre du chemin" #~ msgid "Spacing" #~ msgstr "Espacement" #~ msgid "Normal offset" diff --git a/po/inkscape.pot b/po/inkscape.pot index da52cee81..f044d695f 100644 --- a/po/inkscape.pot +++ b/po/inkscape.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-29 21:07+0200\n" +"POT-Creation-Date: 2011-07-10 19:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -118,48 +118,67 @@ msgstr "" msgid "Unable to find image data." msgstr "" -#: ../share/extensions/gcodetools.py:3087 +#: ../share/extensions/gcodetools.py:3317 +#: ../share/extensions/gcodetools.py:4522 +#: ../share/extensions/gcodetools.py:4695 +#: ../share/extensions/gcodetools.py:6228 +#: ../share/extensions/gcodetools.py:6423 +msgid "No paths are selected! Trying to work on all available paths." +msgstr "" + +#: ../share/extensions/gcodetools.py:3320 +msgid "Noting is selected. Please select something." +msgstr "" + +#: ../share/extensions/gcodetools.py:3860 msgid "" "Directory does not exist! Please specify existing directory at Preferences " "tab!" msgstr "" -#: ../share/extensions/gcodetools.py:3112 +#: ../share/extensions/gcodetools.py:3890 #, python-format msgid "" "Can not write to specified file!\n" "%s" msgstr "" -#: ../share/extensions/gcodetools.py:3240 +#: ../share/extensions/gcodetools.py:4036 #, python-format msgid "" "Orientation points for '%s' layer have not been found! Please add " "orientation points using Orientation tab!" msgstr "" -#: ../share/extensions/gcodetools.py:3246 +#: ../share/extensions/gcodetools.py:4043 #, python-format msgid "There are more than one orientation point groups in '%s' layer" msgstr "" -#: ../share/extensions/gcodetools.py:3277 -#: ../share/extensions/gcodetools.py:3279 +#: ../share/extensions/gcodetools.py:4074 +#: ../share/extensions/gcodetools.py:4076 msgid "" "Orientation points are wrong! (if there are two orientation points they " -"sould not be the same. If there are three orientation points they should not " -"be in a straight line.)" +"should not be the same. If there are three orientation points they should " +"not be in a straight line.)" msgstr "" -#: ../share/extensions/gcodetools.py:3398 +#: ../share/extensions/gcodetools.py:4246 #, python-format msgid "" "Warning! Found bad orientation points in '%s' layer. Resulting Gcode could " "be corrupt!" msgstr "" +#: ../share/extensions/gcodetools.py:4259 +#, python-format +msgid "" +"Warning! Found bad graffiti reference point in '%s' layer. Resulting Gcode " +"could be corrupt!" +msgstr "" + #. xgettext:no-pango-format -#: ../share/extensions/gcodetools.py:3412 +#: ../share/extensions/gcodetools.py:4280 msgid "" "This extension works with Paths and Dynamic Offsets and groups of them only! " "All other objects will be ignored!\n" @@ -169,85 +188,108 @@ msgid "" "and File->Import this file." msgstr "" -#: ../share/extensions/gcodetools.py:3469 +#: ../share/extensions/gcodetools.py:4286 +msgid "" +"Document has no layers! Add at least one layer using layers panel (Ctrl+Shift" +"+L)" +msgstr "" + +#: ../share/extensions/gcodetools.py:4290 +msgid "" +"Warning! There are some paths in the root of the document, but not in any " +"layer! Using bottom-most layer for them." +msgstr "" + +#: ../share/extensions/gcodetools.py:4367 #, python-format msgid "" "Warning! Tool's and default tool's parameter's (%s) types are not the same " "( type('%s') != type('%s') )." msgstr "" -#: ../share/extensions/gcodetools.py:3472 +#: ../share/extensions/gcodetools.py:4370 #, python-format msgid "Warning! Tool has parameter that default tool has not ( '%s': '%s' )." msgstr "" -#: ../share/extensions/gcodetools.py:3486 +#: ../share/extensions/gcodetools.py:4384 #, python-format msgid "Layer '%s' contains more than one tool!" msgstr "" -#: ../share/extensions/gcodetools.py:3489 +#: ../share/extensions/gcodetools.py:4387 #, python-format msgid "" "Can not find tool for '%s' layer! Please add one with Tools library tab!" msgstr "" -#: ../share/extensions/gcodetools.py:3592 -#: ../share/extensions/gcodetools.py:3673 -msgid "No paths are selected! Trying to work on all available paths." -msgstr "" - -#: ../share/extensions/gcodetools.py:3611 -#: ../share/extensions/gcodetools.py:3682 +#: ../share/extensions/gcodetools.py:4549 +#: ../share/extensions/gcodetools.py:4704 msgid "" -"Warning: One or more paths dont have 'd' parameter, try to Ungroup (Ctrl" +"Warning: One or more paths do not have 'd' parameter, try to Ungroup (Ctrl" "+Shift+G) and Object to Path (Ctrl+Shift+C)!" msgstr "" -#: ../share/extensions/gcodetools.py:3641 +#: ../share/extensions/gcodetools.py:4663 msgid "" -"Nothing is selected. Please select something to convert to drill point " +"Noting is selected. Please select something to convert to drill point " "(dxfpoint) or clear point sign." msgstr "" -#: ../share/extensions/gcodetools.py:3714 -#: ../share/extensions/gcodetools.py:3808 +#: ../share/extensions/gcodetools.py:4746 +#: ../share/extensions/gcodetools.py:4992 msgid "This extension requires at least one selected path." msgstr "" -#: ../share/extensions/gcodetools.py:3720 +#: ../share/extensions/gcodetools.py:4752 +#: ../share/extensions/gcodetools.py:4998 #, python-format msgid "Tool diameter must be > 0 but tool's diameter on '%s' layer is not!" msgstr "" -#: ../share/extensions/gcodetools.py:3731 +#: ../share/extensions/gcodetools.py:4763 +#: ../share/extensions/gcodetools.py:4952 +#: ../share/extensions/gcodetools.py:5007 msgid "Warning: omitting non-path" msgstr "" -#: ../share/extensions/gcodetools.py:4063 +#: ../share/extensions/gcodetools.py:5507 +msgid "Please select at least one path to engrave and run again." +msgstr "" + +#: ../share/extensions/gcodetools.py:5515 +msgid "Unknown unit selected. mm assumed" +msgstr "" + +#: ../share/extensions/gcodetools.py:5536 #, python-format -msgid "Tool '%s' has no shape!" +msgid "Tool '%s' has no shape. 45 degree cone assumed!" +msgstr "" + +#: ../share/extensions/gcodetools.py:5607 +#: ../share/extensions/gcodetools.py:5612 +msgid "csp_normalised_normal error. See log." msgstr "" -#: ../share/extensions/gcodetools.py:4073 +#: ../share/extensions/gcodetools.py:5800 msgid "No need to engrave sharp angles." msgstr "" -#: ../share/extensions/gcodetools.py:4086 +#: ../share/extensions/gcodetools.py:5844 msgid "" "Active layer already has orientation points! Remove them or select another " "layer!" msgstr "" -#: ../share/extensions/gcodetools.py:4134 +#: ../share/extensions/gcodetools.py:5889 msgid "Active layer already has a tool! Remove it or select another layer!" msgstr "" -#: ../share/extensions/gcodetools.py:4258 +#: ../share/extensions/gcodetools.py:6004 msgid "Selection is empty! Will compute whole drawing." msgstr "" -#: ../share/extensions/gcodetools.py:4318 +#: ../share/extensions/gcodetools.py:6058 msgid "" "Tutorials, manuals and support can be found at\n" "English support forum:\n" @@ -256,27 +298,29 @@ msgid "" "\thttp://www.cnc-club.ru/gcodetoolsru" msgstr "" -#: ../share/extensions/gcodetools.py:4363 +#: ../share/extensions/gcodetools.py:6103 msgid "Lathe X and Z axis remap should be 'X', 'Y' or 'Z'. Exiting..." msgstr "" -#: ../share/extensions/gcodetools.py:4366 +#: ../share/extensions/gcodetools.py:6106 msgid "Lathe X and Z axis remap should be the same. Exiting..." msgstr "" -#: ../share/extensions/gcodetools.py:4527 +#: ../share/extensions/gcodetools.py:6658 +#, python-format msgid "" -"Select one of the active tabs - Path to Gcode, Area, Engraving, DXF points, " -"Orientation, Offset, Lathe or Tools library." +"Select one of the action tabs - Path to Gcode, Area, Engraving, DXF points, " +"Orientation, Offset, Lathe or Tools library.\n" +" Current active tab id is %s" msgstr "" -#: ../share/extensions/gcodetools.py:4533 +#: ../share/extensions/gcodetools.py:6664 msgid "" "Orientation points have not been defined! A default set of orientation " "points has been automatically added." msgstr "" -#: ../share/extensions/gcodetools.py:4537 +#: ../share/extensions/gcodetools.py:6668 msgid "" "Cutting tool has not been defined! A default tool has been automatically " "added." @@ -342,28 +386,28 @@ msgid "" "Try using the procedure Path->Object to Path." msgstr "" -#: ../share/extensions/perspective.py:74 -#: ../share/extensions/summersnight.py:50 +#: ../share/extensions/perspective.py:75 +#: ../share/extensions/summersnight.py:51 msgid "" "This extension requires that the second selected path be four nodes long." msgstr "" -#: ../share/extensions/perspective.py:99 -#: ../share/extensions/summersnight.py:82 +#: ../share/extensions/perspective.py:101 +#: ../share/extensions/summersnight.py:84 msgid "" "The second selected object is a group, not a path.\n" "Try using the procedure Object->Ungroup." msgstr "" -#: ../share/extensions/perspective.py:101 -#: ../share/extensions/summersnight.py:84 +#: ../share/extensions/perspective.py:103 +#: ../share/extensions/summersnight.py:86 msgid "" "The second selected object is not a path.\n" "Try using the procedure Path->Object to Path." msgstr "" -#: ../share/extensions/perspective.py:104 -#: ../share/extensions/summersnight.py:87 +#: ../share/extensions/perspective.py:106 +#: ../share/extensions/summersnight.py:89 msgid "" "The first selected object is not a path.\n" "Try using the procedure Path->Object to Path." @@ -702,7 +746,7 @@ msgstr "" #. Pencil #: ../share/filters/filters.svg.h:1 -#: ../src/ui/dialog/inkscape-preferences.cpp:521 ../src/verbs.cpp:2520 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 ../src/verbs.cpp:2520 msgid "Pencil" msgstr "" @@ -723,8 +767,8 @@ msgstr "" msgid "Desaturate" msgstr "" -#: ../share/filters/filters.svg.h:1 ../src/dialogs/clonetiler.cpp:2509 -#: ../src/dialogs/clonetiler.cpp:2648 +#: ../share/filters/filters.svg.h:1 ../src/dialogs/clonetiler.cpp:2517 +#: ../src/dialogs/clonetiler.cpp:2656 #: ../src/extension/internal/bitmap/colorize.cpp:51 #: ../src/extension/internal/filter/abc.h:477 #: ../src/extension/internal/filter/abc.h:580 @@ -3773,11 +3817,11 @@ msgstr "" msgid "Select <b>at least one non-connector object</b>." msgstr "" -#: ../src/connector-context.cpp:1968 ../src/widgets/toolbox.cpp:8280 +#: ../src/connector-context.cpp:1968 ../src/widgets/toolbox.cpp:8298 msgid "Make connectors avoid selected objects" msgstr "" -#: ../src/connector-context.cpp:1969 ../src/widgets/toolbox.cpp:8290 +#: ../src/connector-context.cpp:1969 ../src/widgets/toolbox.cpp:8308 msgid "Make connectors ignore selected objects" msgstr "" @@ -3882,611 +3926,606 @@ msgstr "" msgid "_Symmetry" msgstr "" -#. TRANSLATORS: For the following 17 symmetry groups, see -#. * http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples); -#. * http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary); or -#. * http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary). -#. -#: ../src/dialogs/clonetiler.cpp:1821 -msgid "Select one of the 17 symmetry groups for the tiling" -msgstr "" - #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/dialogs/clonetiler.cpp:1832 +#: ../src/dialogs/clonetiler.cpp:1825 msgid "<b>P1</b>: simple translation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1833 +#: ../src/dialogs/clonetiler.cpp:1826 msgid "<b>P2</b>: 180° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1834 +#: ../src/dialogs/clonetiler.cpp:1827 msgid "<b>PM</b>: reflection" msgstr "" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/dialogs/clonetiler.cpp:1837 +#: ../src/dialogs/clonetiler.cpp:1830 msgid "<b>PG</b>: glide reflection" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1838 +#: ../src/dialogs/clonetiler.cpp:1831 msgid "<b>CM</b>: reflection + glide reflection" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1839 +#: ../src/dialogs/clonetiler.cpp:1832 msgid "<b>PMM</b>: reflection + reflection" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1840 +#: ../src/dialogs/clonetiler.cpp:1833 msgid "<b>PMG</b>: reflection + 180° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1841 +#: ../src/dialogs/clonetiler.cpp:1834 msgid "<b>PGG</b>: glide reflection + 180° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1842 +#: ../src/dialogs/clonetiler.cpp:1835 msgid "<b>CMM</b>: reflection + reflection + 180° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1843 +#: ../src/dialogs/clonetiler.cpp:1836 msgid "<b>P4</b>: 90° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1844 +#: ../src/dialogs/clonetiler.cpp:1837 msgid "<b>P4M</b>: 90° rotation + 45° reflection" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1845 +#: ../src/dialogs/clonetiler.cpp:1838 msgid "<b>P4G</b>: 90° rotation + 90° reflection" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1846 +#: ../src/dialogs/clonetiler.cpp:1839 msgid "<b>P3</b>: 120° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1847 +#: ../src/dialogs/clonetiler.cpp:1840 msgid "<b>P31M</b>: reflection + 120° rotation, dense" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1848 +#: ../src/dialogs/clonetiler.cpp:1841 msgid "<b>P3M1</b>: reflection + 120° rotation, sparse" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1849 +#: ../src/dialogs/clonetiler.cpp:1842 msgid "<b>P6</b>: 60° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1850 +#: ../src/dialogs/clonetiler.cpp:1843 msgid "<b>P6M</b>: reflection + 60° rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1878 +#: ../src/dialogs/clonetiler.cpp:1865 +msgid "Select one of the 17 symmetry groups for the tiling" +msgstr "" + +#: ../src/dialogs/clonetiler.cpp:1886 msgid "S_hift" msgstr "" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/dialogs/clonetiler.cpp:1888 +#: ../src/dialogs/clonetiler.cpp:1896 #, no-c-format msgid "<b>Shift X:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1896 +#: ../src/dialogs/clonetiler.cpp:1904 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1904 +#: ../src/dialogs/clonetiler.cpp:1912 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1910 +#: ../src/dialogs/clonetiler.cpp:1918 msgid "Randomize the horizontal shift by this percentage" msgstr "" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/dialogs/clonetiler.cpp:1920 +#: ../src/dialogs/clonetiler.cpp:1928 #, no-c-format msgid "<b>Shift Y:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1928 +#: ../src/dialogs/clonetiler.cpp:1936 #, no-c-format msgid "Vertical shift per row (in % of tile height)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1936 +#: ../src/dialogs/clonetiler.cpp:1944 #, no-c-format msgid "Vertical shift per column (in % of tile height)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1943 +#: ../src/dialogs/clonetiler.cpp:1951 msgid "Randomize the vertical shift by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1951 ../src/dialogs/clonetiler.cpp:2097 +#: ../src/dialogs/clonetiler.cpp:1959 ../src/dialogs/clonetiler.cpp:2105 msgid "<b>Exponent:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1958 +#: ../src/dialogs/clonetiler.cpp:1966 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1965 +#: ../src/dialogs/clonetiler.cpp:1973 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "" #. TRANSLATORS: "Alternate" is a verb here -#: ../src/dialogs/clonetiler.cpp:1973 ../src/dialogs/clonetiler.cpp:2137 -#: ../src/dialogs/clonetiler.cpp:2213 ../src/dialogs/clonetiler.cpp:2286 -#: ../src/dialogs/clonetiler.cpp:2332 ../src/dialogs/clonetiler.cpp:2454 +#: ../src/dialogs/clonetiler.cpp:1981 ../src/dialogs/clonetiler.cpp:2145 +#: ../src/dialogs/clonetiler.cpp:2221 ../src/dialogs/clonetiler.cpp:2294 +#: ../src/dialogs/clonetiler.cpp:2340 ../src/dialogs/clonetiler.cpp:2462 msgid "<small>Alternate:</small>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1979 +#: ../src/dialogs/clonetiler.cpp:1987 msgid "Alternate the sign of shifts for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1984 +#: ../src/dialogs/clonetiler.cpp:1992 msgid "Alternate the sign of shifts for each column" msgstr "" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:1991 ../src/dialogs/clonetiler.cpp:2155 -#: ../src/dialogs/clonetiler.cpp:2231 +#: ../src/dialogs/clonetiler.cpp:1999 ../src/dialogs/clonetiler.cpp:2163 +#: ../src/dialogs/clonetiler.cpp:2239 msgid "<small>Cumulate:</small>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:1997 +#: ../src/dialogs/clonetiler.cpp:2005 msgid "Cumulate the shifts for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2002 +#: ../src/dialogs/clonetiler.cpp:2010 msgid "Cumulate the shifts for each column" msgstr "" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:2009 +#: ../src/dialogs/clonetiler.cpp:2017 msgid "<small>Exclude tile:</small>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2015 +#: ../src/dialogs/clonetiler.cpp:2023 msgid "Exclude tile height in shift" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2020 +#: ../src/dialogs/clonetiler.cpp:2028 msgid "Exclude tile width in shift" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2029 +#: ../src/dialogs/clonetiler.cpp:2037 msgid "Sc_ale" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2037 +#: ../src/dialogs/clonetiler.cpp:2045 msgid "<b>Scale X:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2045 +#: ../src/dialogs/clonetiler.cpp:2053 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2053 +#: ../src/dialogs/clonetiler.cpp:2061 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2059 +#: ../src/dialogs/clonetiler.cpp:2067 msgid "Randomize the horizontal scale by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2067 +#: ../src/dialogs/clonetiler.cpp:2075 msgid "<b>Scale Y:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2075 +#: ../src/dialogs/clonetiler.cpp:2083 #, no-c-format msgid "Vertical scale per row (in % of tile height)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2083 +#: ../src/dialogs/clonetiler.cpp:2091 #, no-c-format msgid "Vertical scale per column (in % of tile height)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2089 +#: ../src/dialogs/clonetiler.cpp:2097 msgid "Randomize the vertical scale by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2103 +#: ../src/dialogs/clonetiler.cpp:2111 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2109 +#: ../src/dialogs/clonetiler.cpp:2117 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2117 +#: ../src/dialogs/clonetiler.cpp:2125 msgid "<b>Base:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2123 ../src/dialogs/clonetiler.cpp:2129 +#: ../src/dialogs/clonetiler.cpp:2131 ../src/dialogs/clonetiler.cpp:2137 msgid "" "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2143 +#: ../src/dialogs/clonetiler.cpp:2151 msgid "Alternate the sign of scales for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2148 +#: ../src/dialogs/clonetiler.cpp:2156 msgid "Alternate the sign of scales for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2161 +#: ../src/dialogs/clonetiler.cpp:2169 msgid "Cumulate the scales for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2166 +#: ../src/dialogs/clonetiler.cpp:2174 msgid "Cumulate the scales for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2175 +#: ../src/dialogs/clonetiler.cpp:2183 msgid "_Rotation" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2183 +#: ../src/dialogs/clonetiler.cpp:2191 msgid "<b>Angle:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2191 +#: ../src/dialogs/clonetiler.cpp:2199 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2199 +#: ../src/dialogs/clonetiler.cpp:2207 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2205 +#: ../src/dialogs/clonetiler.cpp:2213 msgid "Randomize the rotation angle by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2219 +#: ../src/dialogs/clonetiler.cpp:2227 msgid "Alternate the rotation direction for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2224 +#: ../src/dialogs/clonetiler.cpp:2232 msgid "Alternate the rotation direction for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2237 +#: ../src/dialogs/clonetiler.cpp:2245 msgid "Cumulate the rotation for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2242 +#: ../src/dialogs/clonetiler.cpp:2250 msgid "Cumulate the rotation for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2251 +#: ../src/dialogs/clonetiler.cpp:2259 msgid "_Blur & opacity" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2260 +#: ../src/dialogs/clonetiler.cpp:2268 msgid "<b>Blur:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2266 +#: ../src/dialogs/clonetiler.cpp:2274 msgid "Blur tiles by this percentage for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2272 +#: ../src/dialogs/clonetiler.cpp:2280 msgid "Blur tiles by this percentage for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2278 +#: ../src/dialogs/clonetiler.cpp:2286 msgid "Randomize the tile blur by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2292 +#: ../src/dialogs/clonetiler.cpp:2300 msgid "Alternate the sign of blur change for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2297 +#: ../src/dialogs/clonetiler.cpp:2305 msgid "Alternate the sign of blur change for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2306 +#: ../src/dialogs/clonetiler.cpp:2314 msgid "<b>Opacity:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2312 +#: ../src/dialogs/clonetiler.cpp:2320 msgid "Decrease tile opacity by this percentage for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2318 +#: ../src/dialogs/clonetiler.cpp:2326 msgid "Decrease tile opacity by this percentage for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2324 +#: ../src/dialogs/clonetiler.cpp:2332 msgid "Randomize the tile opacity by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2338 +#: ../src/dialogs/clonetiler.cpp:2346 msgid "Alternate the sign of opacity change for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2343 +#: ../src/dialogs/clonetiler.cpp:2351 msgid "Alternate the sign of opacity change for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2351 +#: ../src/dialogs/clonetiler.cpp:2359 msgid "Co_lor" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2356 +#: ../src/dialogs/clonetiler.cpp:2364 msgid "Initial color: " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2360 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "Initial color of tiled clones" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2360 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "" "Initial color for clones (works only if the original has unset fill or " "stroke)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2375 +#: ../src/dialogs/clonetiler.cpp:2383 msgid "<b>H:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2381 +#: ../src/dialogs/clonetiler.cpp:2389 msgid "Change the tile hue by this percentage for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2387 +#: ../src/dialogs/clonetiler.cpp:2395 msgid "Change the tile hue by this percentage for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2393 +#: ../src/dialogs/clonetiler.cpp:2401 msgid "Randomize the tile hue by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2402 +#: ../src/dialogs/clonetiler.cpp:2410 msgid "<b>S:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2408 +#: ../src/dialogs/clonetiler.cpp:2416 msgid "Change the color saturation by this percentage for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2414 +#: ../src/dialogs/clonetiler.cpp:2422 msgid "Change the color saturation by this percentage for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2420 +#: ../src/dialogs/clonetiler.cpp:2428 msgid "Randomize the color saturation by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2428 +#: ../src/dialogs/clonetiler.cpp:2436 msgid "<b>L:</b>" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2434 +#: ../src/dialogs/clonetiler.cpp:2442 msgid "Change the color lightness by this percentage for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2440 +#: ../src/dialogs/clonetiler.cpp:2448 msgid "Change the color lightness by this percentage for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2446 +#: ../src/dialogs/clonetiler.cpp:2454 msgid "Randomize the color lightness by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2460 +#: ../src/dialogs/clonetiler.cpp:2468 msgid "Alternate the sign of color changes for each row" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2465 +#: ../src/dialogs/clonetiler.cpp:2473 msgid "Alternate the sign of color changes for each column" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2473 +#: ../src/dialogs/clonetiler.cpp:2481 msgid "_Trace" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2480 +#: ../src/dialogs/clonetiler.cpp:2488 msgid "Trace the drawing under the tiles" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2484 +#: ../src/dialogs/clonetiler.cpp:2492 msgid "" "For each clone, pick a value from the drawing in that clone's location and " "apply it to the clone" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2498 +#: ../src/dialogs/clonetiler.cpp:2506 msgid "1. Pick from the drawing:" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2510 +#: ../src/dialogs/clonetiler.cpp:2518 msgid "Pick the visible color and opacity" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2517 ../src/dialogs/clonetiler.cpp:2658 +#: ../src/dialogs/clonetiler.cpp:2525 ../src/dialogs/clonetiler.cpp:2666 #: ../src/extension/internal/bitmap/opacity.cpp:37 -#: ../src/widgets/toolbox.cpp:4583 ../share/extensions/interp_att_g.inx.h:14 +#: ../src/widgets/toolbox.cpp:4601 ../share/extensions/interp_att_g.inx.h:14 msgid "Opacity" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2518 +#: ../src/dialogs/clonetiler.cpp:2526 msgid "Pick the total accumulated opacity" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2525 +#: ../src/dialogs/clonetiler.cpp:2533 msgid "R" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2526 +#: ../src/dialogs/clonetiler.cpp:2534 msgid "Pick the Red component of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2533 +#: ../src/dialogs/clonetiler.cpp:2541 msgid "G" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2534 +#: ../src/dialogs/clonetiler.cpp:2542 msgid "Pick the Green component of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2541 +#: ../src/dialogs/clonetiler.cpp:2549 msgid "B" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2542 +#: ../src/dialogs/clonetiler.cpp:2550 msgid "Pick the Blue component of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2549 +#: ../src/dialogs/clonetiler.cpp:2557 msgctxt "Clonetiler color hue" msgid "H" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2550 +#: ../src/dialogs/clonetiler.cpp:2558 msgid "Pick the hue of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2557 +#: ../src/dialogs/clonetiler.cpp:2565 msgctxt "Clonetiler color saturation" msgid "S" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2558 +#: ../src/dialogs/clonetiler.cpp:2566 msgid "Pick the saturation of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2565 +#: ../src/dialogs/clonetiler.cpp:2573 msgctxt "Clonetiler color lightness" msgid "L" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2566 +#: ../src/dialogs/clonetiler.cpp:2574 msgid "Pick the lightness of the color" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2576 +#: ../src/dialogs/clonetiler.cpp:2584 msgid "2. Tweak the picked value:" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2586 +#: ../src/dialogs/clonetiler.cpp:2594 msgid "Gamma-correct:" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2590 +#: ../src/dialogs/clonetiler.cpp:2598 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2597 +#: ../src/dialogs/clonetiler.cpp:2605 msgid "Randomize:" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2601 +#: ../src/dialogs/clonetiler.cpp:2609 msgid "Randomize the picked value by this percentage" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2608 +#: ../src/dialogs/clonetiler.cpp:2616 msgid "Invert:" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2612 +#: ../src/dialogs/clonetiler.cpp:2620 msgid "Invert the picked value" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2618 +#: ../src/dialogs/clonetiler.cpp:2626 msgid "3. Apply the value to the clones':" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2628 +#: ../src/dialogs/clonetiler.cpp:2636 msgid "Presence" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2631 +#: ../src/dialogs/clonetiler.cpp:2639 msgid "" "Each clone is created with the probability determined by the picked value in " "that point" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2638 +#: ../src/dialogs/clonetiler.cpp:2646 msgid "Size" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2641 +#: ../src/dialogs/clonetiler.cpp:2649 msgid "Each clone's size is determined by the picked value in that point" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2651 +#: ../src/dialogs/clonetiler.cpp:2659 msgid "" "Each clone is painted by the picked color (the original must have unset fill " "or stroke)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2661 +#: ../src/dialogs/clonetiler.cpp:2669 msgid "Each clone's opacity is determined by the picked value in that point" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2688 +#: ../src/dialogs/clonetiler.cpp:2696 msgid "How many rows in the tiling" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2708 +#: ../src/dialogs/clonetiler.cpp:2716 msgid "How many columns in the tiling" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2738 +#: ../src/dialogs/clonetiler.cpp:2746 msgid "Width of the rectangle to be filled" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2763 +#: ../src/dialogs/clonetiler.cpp:2771 msgid "Height of the rectangle to be filled" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2778 +#: ../src/dialogs/clonetiler.cpp:2786 msgid "Rows, columns: " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2779 +#: ../src/dialogs/clonetiler.cpp:2787 msgid "Create the specified number of rows and columns" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2788 +#: ../src/dialogs/clonetiler.cpp:2796 msgid "Width, height: " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2789 +#: ../src/dialogs/clonetiler.cpp:2797 msgid "Fill the specified width and height with the tiling" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2805 +#: ../src/dialogs/clonetiler.cpp:2813 msgid "Use saved size and position of the tile" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2808 +#: ../src/dialogs/clonetiler.cpp:2816 msgid "" "Pretend that the size and position of the tile are the same as the last time " "you tiled it (if any), instead of using the current size" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2832 +#: ../src/dialogs/clonetiler.cpp:2840 msgid " <b>_Create</b> " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2834 +#: ../src/dialogs/clonetiler.cpp:2842 msgid "Create and tile the clones of the selection" msgstr "" @@ -4495,28 +4534,28 @@ msgstr "" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/dialogs/clonetiler.cpp:2849 +#: ../src/dialogs/clonetiler.cpp:2857 msgid " _Unclump " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2850 +#: ../src/dialogs/clonetiler.cpp:2858 msgid "Spread out clones to reduce clumping; can be applied repeatedly" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2856 +#: ../src/dialogs/clonetiler.cpp:2864 msgid " Re_move " msgstr "" -#: ../src/dialogs/clonetiler.cpp:2857 +#: ../src/dialogs/clonetiler.cpp:2865 msgid "Remove existing tiled clones of the selected object (siblings only)" msgstr "" -#: ../src/dialogs/clonetiler.cpp:2873 +#: ../src/dialogs/clonetiler.cpp:2881 msgid " R_eset " msgstr "" #. TRANSLATORS: "change" is a noun here -#: ../src/dialogs/clonetiler.cpp:2875 +#: ../src/dialogs/clonetiler.cpp:2883 msgid "" "Reset all shifts, scales, rotates, opacity and color changes in the dialog " "to zero" @@ -4594,8 +4633,8 @@ msgstr "" msgid "_Height:" msgstr "" -#: ../src/dialogs/export.cpp:512 ../src/ui/dialog/inkscape-preferences.cpp:836 -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/dialogs/export.cpp:512 ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "dpi" msgstr "" @@ -4756,7 +4795,7 @@ msgid "Search paths, lines, polylines" msgstr "" #: ../src/dialogs/find.cpp:604 ../src/ui/dialog/find.cpp:78 -#: ../src/widgets/toolbox.cpp:2335 +#: ../src/widgets/toolbox.cpp:2340 msgid "Paths" msgstr "" @@ -5066,9 +5105,9 @@ msgstr "" #: ../src/extension/internal/bitmap/raise.cpp:41 #: ../src/extension/internal/bitmap/sample.cpp:40 #: ../src/extension/internal/bluredge.cpp:136 -#: ../src/extension/internal/filter/abc.h:574 ../src/widgets/toolbox.cpp:4377 -#: ../src/widgets/toolbox.cpp:4691 ../src/widgets/toolbox.cpp:5186 -#: ../src/widgets/toolbox.cpp:6248 ../share/extensions/foldablebox.inx.h:9 +#: ../src/extension/internal/filter/abc.h:574 ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:6266 ../share/extensions/foldablebox.inx.h:9 msgid "Width:" msgstr "" @@ -5196,11 +5235,11 @@ msgstr "" msgid "Justify lines" msgstr "" -#: ../src/dialogs/text-edit.cpp:304 ../src/widgets/toolbox.cpp:7737 +#: ../src/dialogs/text-edit.cpp:304 ../src/widgets/toolbox.cpp:7755 msgid "Horizontal text" msgstr "" -#: ../src/dialogs/text-edit.cpp:318 ../src/widgets/toolbox.cpp:7744 +#: ../src/dialogs/text-edit.cpp:318 ../src/widgets/toolbox.cpp:7762 msgid "Vertical text" msgstr "" @@ -5208,15 +5247,15 @@ msgstr "" msgid "Line spacing:" msgstr "" -#: ../src/dialogs/text-edit.cpp:407 ../src/menus-skeleton.h:237 +#: ../src/dialogs/text-edit.cpp:389 ../src/menus-skeleton.h:237 msgid "_Text" msgstr "" -#: ../src/dialogs/text-edit.cpp:454 +#: ../src/dialogs/text-edit.cpp:436 msgid "Set as _default" msgstr "" -#: ../src/dialogs/text-edit.cpp:713 ../src/text-context.cpp:1518 +#: ../src/dialogs/text-edit.cpp:695 ../src/text-context.cpp:1518 msgid "Set text style" msgstr "" @@ -5224,8 +5263,8 @@ msgstr "" #. * text has been entered) to get a preview of the font. Choose #. * some representative characters that users of your locale will be #. * interested in. -#: ../src/dialogs/text-edit.cpp:750 ../src/dialogs/text-edit.cpp:896 -#: ../src/dialogs/text-edit.cpp:949 +#: ../src/dialogs/text-edit.cpp:732 ../src/dialogs/text-edit.cpp:868 +#: ../src/dialogs/text-edit.cpp:921 msgid "AaBbCcIiPpQq12369$€¢?.;/()" msgstr "" @@ -5290,8 +5329,8 @@ msgid "Attribute name" msgstr "" #. TRANSLATORS: "Set" is a verb here -#: ../src/dialogs/xml-tree.cpp:524 ../src/widgets/sp-attribute-widget.cpp:159 -#: ../src/widgets/sp-attribute-widget.cpp:765 +#: ../src/dialogs/xml-tree.cpp:524 ../src/widgets/sp-attribute-widget.cpp:157 +#: ../src/widgets/sp-attribute-widget.cpp:759 msgid "Set attribute" msgstr "" @@ -5346,8 +5385,8 @@ msgid "_Origin X:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:358 ../src/display/canvas-grid.cpp:676 -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "X coordinate of grid origin" msgstr "" @@ -5356,8 +5395,8 @@ msgid "O_rigin Y:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:360 ../src/display/canvas-grid.cpp:678 -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Y coordinate of grid origin" msgstr "" @@ -5366,29 +5405,29 @@ msgid "Spacing _Y:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:362 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Base length of z-axis" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:364 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 -#: ../src/widgets/toolbox.cpp:3690 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle X:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:364 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 msgid "Angle of x-axis" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 -#: ../src/widgets/toolbox.cpp:3769 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle Z:" msgstr "" #: ../src/display/canvas-axonomgrid.cpp:366 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 msgid "Angle of z-axis" msgstr "" @@ -5471,12 +5510,12 @@ msgid "Spacing _X:" msgstr "" #: ../src/display/canvas-grid.cpp:680 -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Distance between vertical grid lines" msgstr "" #: ../src/display/canvas-grid.cpp:682 -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 msgid "Distance between horizontal grid lines" msgstr "" @@ -5490,7 +5529,7 @@ msgstr "" #. TRANSLATORS: undefined target for snapping #: ../src/display/snap-indicator.cpp:70 ../src/display/snap-indicator.cpp:73 -#: ../src/display/snap-indicator.cpp:158 ../src/display/snap-indicator.cpp:161 +#: ../src/display/snap-indicator.cpp:161 ../src/display/snap-indicator.cpp:164 msgid "UNDEFINED" msgstr "" @@ -5587,86 +5626,90 @@ msgid "corner" msgstr "" #: ../src/display/snap-indicator.cpp:145 -msgid "text baseline" +msgid "text anchor" msgstr "" #: ../src/display/snap-indicator.cpp:148 -msgid "constrained angle" +msgid "text baseline" msgstr "" #: ../src/display/snap-indicator.cpp:151 +msgid "constrained angle" +msgstr "" + +#: ../src/display/snap-indicator.cpp:154 msgid "constraint" msgstr "" -#: ../src/display/snap-indicator.cpp:164 +#: ../src/display/snap-indicator.cpp:167 msgid "Bounding box corner" msgstr "" -#: ../src/display/snap-indicator.cpp:167 +#: ../src/display/snap-indicator.cpp:170 msgid "Bounding box midpoint" msgstr "" -#: ../src/display/snap-indicator.cpp:170 +#: ../src/display/snap-indicator.cpp:173 msgid "Bounding box side midpoint" msgstr "" -#: ../src/display/snap-indicator.cpp:173 ../src/ui/tool/node.cpp:1231 +#: ../src/display/snap-indicator.cpp:176 ../src/ui/tool/node.cpp:1231 msgid "Smooth node" msgstr "" -#: ../src/display/snap-indicator.cpp:176 ../src/ui/tool/node.cpp:1230 +#: ../src/display/snap-indicator.cpp:179 ../src/ui/tool/node.cpp:1230 msgid "Cusp node" msgstr "" -#: ../src/display/snap-indicator.cpp:179 +#: ../src/display/snap-indicator.cpp:182 msgid "Line midpoint" msgstr "" -#: ../src/display/snap-indicator.cpp:182 +#: ../src/display/snap-indicator.cpp:185 msgid "Object midpoint" msgstr "" -#: ../src/display/snap-indicator.cpp:185 +#: ../src/display/snap-indicator.cpp:188 msgid "Object rotation center" msgstr "" -#: ../src/display/snap-indicator.cpp:189 +#: ../src/display/snap-indicator.cpp:192 msgid "Handle" msgstr "" -#: ../src/display/snap-indicator.cpp:192 +#: ../src/display/snap-indicator.cpp:195 msgid "Path intersection" msgstr "" -#: ../src/display/snap-indicator.cpp:195 +#: ../src/display/snap-indicator.cpp:198 msgid "Guide" msgstr "" -#: ../src/display/snap-indicator.cpp:198 +#: ../src/display/snap-indicator.cpp:201 msgid "Guide origin" msgstr "" -#: ../src/display/snap-indicator.cpp:201 +#: ../src/display/snap-indicator.cpp:204 msgid "Convex hull corner" msgstr "" -#: ../src/display/snap-indicator.cpp:204 +#: ../src/display/snap-indicator.cpp:207 msgid "Quadrant point" msgstr "" -#: ../src/display/snap-indicator.cpp:207 +#: ../src/display/snap-indicator.cpp:210 msgid "Corner" msgstr "" -#: ../src/display/snap-indicator.cpp:210 -msgid "Text baseline" +#: ../src/display/snap-indicator.cpp:213 +msgid "Text anchor" msgstr "" -#: ../src/display/snap-indicator.cpp:213 +#: ../src/display/snap-indicator.cpp:216 msgid "Multiple of grid spacing" msgstr "" -#: ../src/display/snap-indicator.cpp:244 +#: ../src/display/snap-indicator.cpp:247 msgid " to " msgstr "" @@ -5909,7 +5952,7 @@ msgid "" "this extension." msgstr "" -#: ../src/extension/implementation/script.cpp:989 +#: ../src/extension/implementation/script.cpp:990 msgid "" "Inkscape has received additional data from the script executed. The script " "did not return an error, but this may indicate the results will not be as " @@ -5936,7 +5979,7 @@ msgstr "" #: ../src/extension/internal/bitmap/adaptiveThreshold.cpp:42 #: ../src/extension/internal/filter/color.h:540 #: ../src/extension/internal/filter/experimental.h:355 -#: ../src/widgets/gradient-vector.cpp:825 +#: ../src/widgets/gradient-vector.cpp:824 #: ../share/extensions/printing-marks.inx.h:9 msgid "Offset:" msgstr "" @@ -6131,7 +6174,7 @@ msgstr "" #: ../src/extension/internal/bitmap/cycleColormap.cpp:38 #: ../src/extension/internal/bitmap/spread.cpp:38 #: ../src/extension/internal/bitmap/unsharpmask.cpp:44 -#: ../src/widgets/toolbox.cpp:4783 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount:" msgstr "" @@ -6299,7 +6342,7 @@ msgstr "" #: ../src/extension/internal/bitmap/opacity.cpp:39 #: ../src/ui/dialog/filter-effects-dialog.cpp:2240 -#: ../src/widgets/toolbox.cpp:5778 +#: ../src/widgets/toolbox.cpp:5796 msgid "Opacity:" msgstr "" @@ -6402,9 +6445,9 @@ msgstr "" #: ../src/extension/internal/bitmap/threshold.cpp:39 #: ../src/extension/internal/bitmap/unsharpmask.cpp:45 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 #: ../src/ui/dialog/tracedialog.cpp:420 ../src/ui/dialog/tracedialog.cpp:453 -#: ../src/ui/dialog/tracedialog.cpp:596 ../src/widgets/toolbox.cpp:8521 +#: ../src/ui/dialog/tracedialog.cpp:596 ../src/widgets/toolbox.cpp:8539 msgid "Threshold:" msgstr "" @@ -6648,7 +6691,7 @@ msgstr "" #: ../src/extension/internal/filter/morphology.h:61 #: ../src/extension/internal/filter/shadows.h:76 #: ../src/extension/internal/filter/snow.h:38 -#: ../src/ui/dialog/inkscape-preferences.cpp:801 +#: ../src/ui/dialog/inkscape-preferences.cpp:802 msgid "Filters" msgstr "" @@ -6740,7 +6783,7 @@ msgstr "" #: ../src/extension/internal/filter/abc.h:240 #: ../src/extension/internal/filter/abc.h:378 #: ../src/extension/internal/filter/abc.h:818 -msgid "Lightning color" +msgid "Lighting color" msgstr "" #: ../src/extension/internal/filter/abc.h:311 @@ -6899,7 +6942,7 @@ msgstr "" #: ../src/extension/internal/filter/color.h:616 #: ../src/extension/internal/filter/color.h:784 #: ../src/extension/internal/filter/color.h:797 ../src/filter-enums.cpp:51 -#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:597 msgid "Normal" msgstr "" @@ -7209,7 +7252,7 @@ msgid "Clean-up:" msgstr "" #: ../src/extension/internal/filter/experimental.h:237 -#: ../src/widgets/toolbox.cpp:8348 +#: ../src/widgets/toolbox.cpp:8366 msgid "Length:" msgstr "" @@ -7367,11 +7410,11 @@ msgstr "" #: ../share/extensions/color_randomize.inx.h:6 #: ../share/extensions/dots.inx.h:5 ../share/extensions/dxf_input.inx.h:15 #: ../share/extensions/dxf_outlines.inx.h:9 -#: ../share/extensions/gcodetools_all_in_one.inx.h:33 -#: ../share/extensions/gcodetools_area.inx.h:22 -#: ../share/extensions/gcodetools_engraving.inx.h:16 -#: ../share/extensions/gcodetools_lathe.inx.h:22 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 +#: ../share/extensions/gcodetools_area.inx.h:34 +#: ../share/extensions/gcodetools_engraving.inx.h:21 +#: ../share/extensions/gcodetools_graffiti.inx.h:24 +#: ../share/extensions/gcodetools_lathe.inx.h:32 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 #: ../share/extensions/generate_voronoi.inx.h:7 #: ../share/extensions/gimp_xcf.inx.h:4 #: ../share/extensions/interp_att_g.inx.h:15 @@ -7509,9 +7552,9 @@ msgid "Render" msgstr "" #: ../src/extension/internal/grid.cpp:211 -#: ../src/ui/dialog/document-properties.cpp:120 -#: ../src/ui/dialog/inkscape-preferences.cpp:1082 -#: ../src/widgets/toolbox.cpp:2415 +#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/inkscape-preferences.cpp:1083 +#: ../src/widgets/toolbox.cpp:2430 msgid "Grids" msgstr "" @@ -8005,7 +8048,7 @@ msgid "Luminance to Alpha" msgstr "" #. File -#: ../src/filter-enums.cpp:70 ../src/interface.cpp:852 ../src/verbs.cpp:2244 +#: ../src/filter-enums.cpp:70 ../src/interface.cpp:848 ../src/verbs.cpp:2244 #: ../share/extensions/jessyInk_mouseHandler.inx.h:1 #: ../share/extensions/jessyInk_transitions.inx.h:2 msgid "Default" @@ -8057,16 +8100,21 @@ msgid "Wrap" msgstr "" #: ../src/filter-enums.cpp:94 ../src/live_effects/lpe-ruler.cpp:34 -#: ../src/ui/dialog/document-properties.cpp:327 #: ../src/ui/dialog/filter-effects-dialog.cpp:477 -#: ../src/ui/dialog/inkscape-preferences.cpp:267 -#: ../src/ui/dialog/inkscape-preferences.cpp:433 -#: ../src/ui/dialog/inkscape-preferences.cpp:595 -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 -#: ../src/ui/dialog/inkscape-preferences.cpp:1297 +#: ../src/ui/dialog/inkscape-preferences.cpp:268 +#: ../src/ui/dialog/inkscape-preferences.cpp:434 +#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 #: ../src/ui/dialog/input.cpp:607 ../src/ui/dialog/input.cpp:608 #: ../src/ui/dialog/input.cpp:1269 ../src/verbs.cpp:2241 -#: ../src/widgets/stroke-style.cpp:366 ../src/widgets/toolbox.cpp:4153 +#: ../src/widgets/stroke-style.cpp:366 ../src/widgets/toolbox.cpp:4171 +#: ../share/extensions/gcodetools_area.inx.h:32 +#: ../share/extensions/gcodetools_dxf_points.inx.h:15 +#: ../share/extensions/gcodetools_engraving.inx.h:19 +#: ../share/extensions/gcodetools_graffiti.inx.h:22 +#: ../share/extensions/gcodetools_lathe.inx.h:29 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 #: ../share/extensions/grid_polar.inx.h:18 #: ../share/extensions/guides_creator.inx.h:15 #: ../share/extensions/scour.inx.h:16 @@ -8074,21 +8122,21 @@ msgid "None" msgstr "" #: ../src/filter-enums.cpp:100 ../src/flood-context.cpp:241 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:403 #: ../src/widgets/sp-color-scales.cpp:404 msgid "Red" msgstr "" #: ../src/filter-enums.cpp:101 ../src/flood-context.cpp:242 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:406 #: ../src/widgets/sp-color-scales.cpp:407 msgid "Green" msgstr "" #: ../src/filter-enums.cpp:102 ../src/flood-context.cpp:243 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:409 #: ../src/widgets/sp-color-scales.cpp:410 msgid "Blue" @@ -8126,26 +8174,26 @@ msgstr "" msgid "Visible Colors" msgstr "" -#: ../src/flood-context.cpp:244 ../src/widgets/sp-color-icc-selector.cpp:229 -#: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/flood-context.cpp:244 ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:429 -#: ../src/widgets/sp-color-scales.cpp:430 ../src/widgets/toolbox.cpp:4535 +#: ../src/widgets/sp-color-scales.cpp:430 ../src/widgets/toolbox.cpp:4553 #: ../share/extensions/color_randomize.inx.h:4 msgid "Hue" msgstr "" -#: ../src/flood-context.cpp:245 ../src/ui/dialog/inkscape-preferences.cpp:898 -#: ../src/widgets/sp-color-icc-selector.cpp:229 +#: ../src/flood-context.cpp:245 ../src/ui/dialog/inkscape-preferences.cpp:899 #: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:432 -#: ../src/widgets/sp-color-scales.cpp:433 ../src/widgets/toolbox.cpp:4551 +#: ../src/widgets/sp-color-scales.cpp:433 ../src/widgets/toolbox.cpp:4569 #: ../share/extensions/color_randomize.inx.h:8 msgid "Saturation" msgstr "" -#: ../src/flood-context.cpp:246 ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/flood-context.cpp:246 ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:435 -#: ../src/widgets/sp-color-scales.cpp:436 ../src/widgets/toolbox.cpp:4567 +#: ../src/widgets/sp-color-scales.cpp:436 ../src/widgets/toolbox.cpp:4585 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "" @@ -8295,7 +8343,7 @@ msgstr[0] "" msgstr[1] "" #: ../src/gradient-context.cpp:390 ../src/gradient-context.cpp:483 -#: ../src/ui/dialog/swatches.cpp:182 ../src/widgets/gradient-vector.cpp:742 +#: ../src/ui/dialog/swatches.cpp:182 ../src/widgets/gradient-vector.cpp:741 msgid "Add gradient stop" msgstr "" @@ -8307,30 +8355,30 @@ msgstr "" msgid "Create default gradient" msgstr "" -#: ../src/gradient-context.cpp:590 +#: ../src/gradient-context.cpp:592 msgid "<b>Draw around</b> handles to select them" msgstr "" -#: ../src/gradient-context.cpp:699 +#: ../src/gradient-context.cpp:701 msgid "<b>Ctrl</b>: snap gradient angle" msgstr "" -#: ../src/gradient-context.cpp:700 +#: ../src/gradient-context.cpp:702 msgid "<b>Shift</b>: draw gradient around the starting point" msgstr "" -#: ../src/gradient-context.cpp:820 +#: ../src/gradient-context.cpp:822 msgid "Invert gradient" msgstr "" -#: ../src/gradient-context.cpp:937 +#: ../src/gradient-context.cpp:939 #, c-format msgid "<b>Gradient</b> for %d object; with <b>Ctrl</b> to snap angle" msgid_plural "<b>Gradient</b> for %d objects; with <b>Ctrl</b> to snap angle" msgstr[0] "" msgstr[1] "" -#: ../src/gradient-context.cpp:941 +#: ../src/gradient-context.cpp:943 msgid "Select <b>objects</b> on which to create gradient." msgstr "" @@ -8342,7 +8390,7 @@ msgstr "" msgid "Move gradient handle" msgstr "" -#: ../src/gradient-drag.cpp:988 ../src/widgets/gradient-vector.cpp:773 +#: ../src/gradient-drag.cpp:988 ../src/widgets/gradient-vector.cpp:772 msgid "Delete gradient stop" msgstr "" @@ -8399,9 +8447,9 @@ msgid "Unit" msgstr "" #. Add the units menu. -#: ../src/helper/units.cpp:37 ../src/widgets/select-toolbar.cpp:514 -#: ../src/widgets/toolbox.cpp:1597 ../src/widgets/toolbox.cpp:3420 -#: ../src/widgets/toolbox.cpp:6138 ../src/widgets/toolbox.cpp:8540 +#: ../src/helper/units.cpp:37 ../src/widgets/select-toolbar.cpp:521 +#: ../src/widgets/toolbox.cpp:1597 ../src/widgets/toolbox.cpp:3438 +#: ../src/widgets/toolbox.cpp:6156 ../src/widgets/toolbox.cpp:8558 #: ../share/extensions/dxf_outlines.inx.h:10 msgid "Units" msgstr "" @@ -8462,7 +8510,7 @@ msgstr "" msgid "Percent" msgstr "" -#: ../src/helper/units.cpp:42 ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/helper/units.cpp:42 ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "%" msgstr "" @@ -8476,6 +8524,13 @@ msgstr "" #: ../src/helper/units.cpp:43 ../src/ui/widget/selected-style.cpp:298 #: ../share/extensions/dxf_outlines.inx.h:15 ../share/extensions/gears.inx.h:9 +#: ../share/extensions/gcodetools_area.inx.h:55 +#: ../share/extensions/gcodetools_dxf_points.inx.h:24 +#: ../share/extensions/gcodetools_engraving.inx.h:33 +#: ../share/extensions/gcodetools_graffiti.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:48 +#: ../share/extensions/gcodetools_orientation_points.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:37 msgid "mm" msgstr "" @@ -8514,6 +8569,13 @@ msgstr "" #: ../src/helper/units.cpp:46 ../share/extensions/dxf_outlines.inx.h:13 #: ../share/extensions/gears.inx.h:8 +#: ../share/extensions/gcodetools_area.inx.h:52 +#: ../share/extensions/gcodetools_dxf_points.inx.h:23 +#: ../share/extensions/gcodetools_engraving.inx.h:32 +#: ../share/extensions/gcodetools_graffiti.inx.h:42 +#: ../share/extensions/gcodetools_lathe.inx.h:47 +#: ../share/extensions/gcodetools_orientation_points.inx.h:13 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:36 msgid "in" msgstr "" @@ -8598,117 +8660,117 @@ msgstr "" #. sp_ui_menu_append_check_item_from_verb(m, view, _("_Menu"), _("Show or hide the menu bar"), "menu", #. checkitem_toggled, checkitem_update, 0); -#: ../src/interface.cpp:830 +#: ../src/interface.cpp:826 msgid "_Commands Bar" msgstr "" -#: ../src/interface.cpp:830 +#: ../src/interface.cpp:826 msgid "Show or hide the Commands bar (under the menu)" msgstr "" -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:828 msgid "Sn_ap Controls Bar" msgstr "" -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:828 msgid "Show or hide the snapping controls" msgstr "" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:830 msgid "T_ool Controls Bar" msgstr "" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:830 msgid "Show or hide the Tool Controls bar" msgstr "" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:832 msgid "_Toolbox" msgstr "" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:832 msgid "Show or hide the main toolbox (on the left)" msgstr "" -#: ../src/interface.cpp:842 +#: ../src/interface.cpp:838 msgid "_Palette" msgstr "" -#: ../src/interface.cpp:842 +#: ../src/interface.cpp:838 msgid "Show or hide the color palette" msgstr "" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:840 msgid "_Statusbar" msgstr "" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:840 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "" -#: ../src/interface.cpp:852 +#: ../src/interface.cpp:848 msgid "Default interface setup" msgstr "" -#: ../src/interface.cpp:853 ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1437 +#: ../src/interface.cpp:849 ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1437 #: ../share/extensions/color_custom.inx.h:10 #: ../share/extensions/markers_strokepaint.inx.h:5 msgid "Custom" msgstr "" -#: ../src/interface.cpp:853 +#: ../src/interface.cpp:849 msgid "Set the custom task" msgstr "" -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:850 msgid "Wide" msgstr "" -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:850 msgid "Setup for widescreen work" msgstr "" -#: ../src/interface.cpp:951 +#: ../src/interface.cpp:947 #, c-format msgid "Verb \"%s\" Unknown" msgstr "" -#: ../src/interface.cpp:993 +#: ../src/interface.cpp:989 msgid "Open _Recent" msgstr "" #. TRANSLATORS: #%s is the id of the group e.g. <g id="#g7">, not a number. -#: ../src/interface.cpp:1098 +#: ../src/interface.cpp:1094 #, c-format msgid "Enter group #%s" msgstr "" -#: ../src/interface.cpp:1109 +#: ../src/interface.cpp:1105 msgid "Go to parent" msgstr "" -#: ../src/interface.cpp:1200 ../src/interface.cpp:1286 -#: ../src/interface.cpp:1389 ../src/ui/widget/selected-style.cpp:469 +#: ../src/interface.cpp:1196 ../src/interface.cpp:1282 +#: ../src/interface.cpp:1385 ../src/ui/widget/selected-style.cpp:469 msgid "Drop color" msgstr "" -#: ../src/interface.cpp:1239 ../src/interface.cpp:1349 +#: ../src/interface.cpp:1235 ../src/interface.cpp:1345 msgid "Drop color on gradient" msgstr "" -#: ../src/interface.cpp:1402 +#: ../src/interface.cpp:1398 msgid "Could not parse SVG data" msgstr "" -#: ../src/interface.cpp:1441 +#: ../src/interface.cpp:1437 msgid "Drop SVG" msgstr "" -#: ../src/interface.cpp:1475 +#: ../src/interface.cpp:1471 msgid "Drop bitmap image" msgstr "" -#: ../src/interface.cpp:1567 +#: ../src/interface.cpp:1563 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">A file named \"%s\" already exists. Do " @@ -8717,7 +8779,7 @@ msgid "" "The file already exists in \"%s\". Replacing it will overwrite its contents." msgstr "" -#: ../src/interface.cpp:1574 ../share/extensions/web-set-att.inx.h:7 +#: ../src/interface.cpp:1570 ../share/extensions/web-set-att.inx.h:7 #: ../share/extensions/web-transmit-att.inx.h:7 msgid "Replace" msgstr "" @@ -8763,12 +8825,12 @@ msgstr "" msgid "Dockbar style to show items on it" msgstr "" -#: ../src/libgdl/gdl-dock-item-grip.c:386 -msgid "Iconify" +#: ../src/libgdl/gdl-dock-item-grip.c:379 +msgid "Iconify this dock" msgstr "" -#: ../src/libgdl/gdl-dock-item-grip.c:388 -msgid "Close" +#: ../src/libgdl/gdl-dock-item-grip.c:381 +msgid "Close this dock" msgstr "" #: ../src/libgdl/gdl-dock-item-grip.c:703 @@ -8781,138 +8843,138 @@ msgid "Dockitem which 'owns' this grip" msgstr "" #. Name -#: ../src/libgdl/gdl-dock-item.c:286 ../src/widgets/toolbox.cpp:7749 -#: ../share/extensions/gcodetools_all_in_one.inx.h:34 +#: ../src/libgdl/gdl-dock-item.c:297 ../src/widgets/toolbox.cpp:7767 +#: ../share/extensions/gcodetools_graffiti.inx.h:25 #: ../share/extensions/gcodetools_orientation_points.inx.h:6 msgid "Orientation" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:287 +#: ../src/libgdl/gdl-dock-item.c:298 msgid "Orientation of the docking item" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:302 +#: ../src/libgdl/gdl-dock-item.c:313 msgid "Resizable" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:303 -msgid "If set, the dock item can be resized when docked in a panel" +#: ../src/libgdl/gdl-dock-item.c:314 +msgid "If set, the dock item can be resized when docked in a GtkPanel widget" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:310 +#: ../src/libgdl/gdl-dock-item.c:321 msgid "Item behavior" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:311 +#: ../src/libgdl/gdl-dock-item.c:322 msgid "" "General behavior for the dock item (i.e. whether it can float, if it's " "locked, etc.)" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:319 ../src/libgdl/gdl-dock-master.c:151 +#: ../src/libgdl/gdl-dock-item.c:330 ../src/libgdl/gdl-dock-master.c:153 msgid "Locked" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:320 +#: ../src/libgdl/gdl-dock-item.c:331 msgid "" "If set, the dock item cannot be dragged around and it doesn't show a grip" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:328 +#: ../src/libgdl/gdl-dock-item.c:339 msgid "Preferred width" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:329 +#: ../src/libgdl/gdl-dock-item.c:340 msgid "Preferred width for the dock item" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:335 +#: ../src/libgdl/gdl-dock-item.c:346 msgid "Preferred height" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:336 +#: ../src/libgdl/gdl-dock-item.c:347 msgid "Preferred height for the dock item" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:615 +#: ../src/libgdl/gdl-dock-item.c:664 #, c-format msgid "" "You can't add a dock object (%p of type %s) inside a %s. Use a GdlDock or " "some other compound dock object." msgstr "" -#: ../src/libgdl/gdl-dock-item.c:622 +#: ../src/libgdl/gdl-dock-item.c:671 #, c-format msgid "" "Attempting to add a widget with type %s to a %s, but it can only contain one " "widget at a time; it already contains a widget of type %s" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:1346 ../src/libgdl/gdl-dock-item.c:1391 +#: ../src/libgdl/gdl-dock-item.c:1392 ../src/libgdl/gdl-dock-item.c:1442 #, c-format msgid "Unsupported docking strategy %s in dock object of type %s" msgstr "" #. UnLock menuitem -#: ../src/libgdl/gdl-dock-item.c:1481 +#: ../src/libgdl/gdl-dock-item.c:1553 msgid "UnLock" msgstr "" #. Hide menuitem. -#: ../src/libgdl/gdl-dock-item.c:1488 +#: ../src/libgdl/gdl-dock-item.c:1560 msgid "Hide" msgstr "" #. Lock menuitem -#: ../src/libgdl/gdl-dock-item.c:1493 +#: ../src/libgdl/gdl-dock-item.c:1565 msgid "Lock" msgstr "" -#: ../src/libgdl/gdl-dock-item.c:1728 +#: ../src/libgdl/gdl-dock-item.c:1829 #, c-format msgid "Attempt to bind an unbound item %p" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:144 ../src/libgdl/gdl-dock.c:183 +#: ../src/libgdl/gdl-dock-master.c:146 ../src/libgdl/gdl-dock.c:183 msgid "Default title" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:145 +#: ../src/libgdl/gdl-dock-master.c:147 msgid "Default title for newly created floating docks" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:152 +#: ../src/libgdl/gdl-dock-master.c:154 msgid "" "If is set to 1, all the dock items bound to the master are locked; if it's " "0, all are unlocked; -1 indicates inconsistency among the items" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:160 ../src/libgdl/gdl-switcher.c:702 +#: ../src/libgdl/gdl-dock-master.c:162 ../src/libgdl/gdl-switcher.c:692 msgid "Switcher Style" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:161 ../src/libgdl/gdl-switcher.c:703 +#: ../src/libgdl/gdl-dock-master.c:163 ../src/libgdl/gdl-switcher.c:693 msgid "Switcher buttons style" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:168 +#: ../src/libgdl/gdl-dock-master.c:170 msgid "Expand direction" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:169 +#: ../src/libgdl/gdl-dock-master.c:171 msgid "" "Allow the master's dock items to expand their container dock objects in the " "given direction" msgstr "" -#: ../src/libgdl/gdl-dock-master.c:805 +#: ../src/libgdl/gdl-dock-master.c:807 #, c-format msgid "" "master %p: unable to add object %p[%s] to the hash. There already is an " "item with that name (%p)." msgstr "" -#: ../src/libgdl/gdl-dock-master.c:978 +#: ../src/libgdl/gdl-dock-master.c:979 #, c-format msgid "" "The new dock controller %p is automatic. Only manual dock objects should be " @@ -8921,7 +8983,7 @@ msgstr "" #: ../src/libgdl/gdl-dock-notebook.c:134 #: ../src/ui/dialog/align-and-distribute.cpp:1034 -#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/document-properties.cpp:116 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1429 #: ../src/widgets/desktop-widget.cpp:1725 #: ../share/extensions/voronoi2svg.inx.h:8 @@ -8972,26 +9034,26 @@ msgstr "" msgid "Dock master this dock object is bound to" msgstr "" -#: ../src/libgdl/gdl-dock-object.c:438 +#: ../src/libgdl/gdl-dock-object.c:462 #, c-format msgid "" "Call to gdl_dock_object_dock in a dock object %p (object type is %s) which " "hasn't implemented this method" msgstr "" -#: ../src/libgdl/gdl-dock-object.c:568 +#: ../src/libgdl/gdl-dock-object.c:595 #, c-format msgid "" "Dock operation requested in a non-bound object %p. The application might " "crash" msgstr "" -#: ../src/libgdl/gdl-dock-object.c:575 +#: ../src/libgdl/gdl-dock-object.c:602 #, c-format msgid "Cannot dock %p to %p because they belong to different masters" msgstr "" -#: ../src/libgdl/gdl-dock-object.c:617 +#: ../src/libgdl/gdl-dock-object.c:644 #, c-format msgid "" "Attempt to bind to %p an already bound dock object %p (current master: %p)" @@ -9005,87 +9067,87 @@ msgstr "" msgid "Position of the divider in pixels" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:143 +#: ../src/libgdl/gdl-dock-placeholder.c:144 msgid "Sticky" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:144 +#: ../src/libgdl/gdl-dock-placeholder.c:145 msgid "" "Whether the placeholder will stick to its host or move up the hierarchy when " "the host is redocked" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:151 +#: ../src/libgdl/gdl-dock-placeholder.c:152 msgid "Host" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:152 +#: ../src/libgdl/gdl-dock-placeholder.c:153 msgid "The dock object this placeholder is attached to" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:159 +#: ../src/libgdl/gdl-dock-placeholder.c:160 msgid "Next placement" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:160 +#: ../src/libgdl/gdl-dock-placeholder.c:161 msgid "" "The position an item will be docked to our host if a request is made to dock " "to us" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:169 ../src/libgdl/gdl-dock.c:190 -#: ../src/widgets/toolbox.cpp:3359 ../src/widgets/toolbox.cpp:4377 -#: ../src/widgets/toolbox.cpp:4691 ../share/extensions/interp_att_g.inx.h:28 +#: ../src/libgdl/gdl-dock-placeholder.c:170 ../src/libgdl/gdl-dock.c:190 +#: ../src/widgets/toolbox.cpp:3377 ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 ../share/extensions/interp_att_g.inx.h:28 msgid "Width" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:170 +#: ../src/libgdl/gdl-dock-placeholder.c:171 msgid "Width for the widget when it's attached to the placeholder" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:177 ../src/libgdl/gdl-dock.c:198 -#: ../src/widgets/toolbox.cpp:3376 ../share/extensions/interp_att_g.inx.h:7 +#: ../src/libgdl/gdl-dock-placeholder.c:178 ../src/libgdl/gdl-dock.c:198 +#: ../src/widgets/toolbox.cpp:3394 ../share/extensions/interp_att_g.inx.h:7 msgid "Height" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:178 +#: ../src/libgdl/gdl-dock-placeholder.c:179 msgid "Height for the widget when it's attached to the placeholder" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:184 +#: ../src/libgdl/gdl-dock-placeholder.c:185 msgid "Floating Toplevel" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:185 +#: ../src/libgdl/gdl-dock-placeholder.c:186 msgid "Whether the placeholder is standing in for a floating toplevel dock" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:191 +#: ../src/libgdl/gdl-dock-placeholder.c:192 msgid "X-Coordinate" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:192 -msgid "X coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:193 +msgid "X-Coordinate for dock when floating" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:198 +#: ../src/libgdl/gdl-dock-placeholder.c:199 msgid "Y-Coordinate" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:199 -msgid "Y coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:200 +msgid "Y-Coordinate for dock when floating" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:497 +#: ../src/libgdl/gdl-dock-placeholder.c:498 msgid "Attempt to dock a dock object to an unbound placeholder" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:625 +#: ../src/libgdl/gdl-dock-placeholder.c:626 #, c-format msgid "Got a detach signal from an object (%p) who is not our host %p" msgstr "" -#: ../src/libgdl/gdl-dock-placeholder.c:650 +#: ../src/libgdl/gdl-dock-placeholder.c:651 #, c-format msgid "" "Something weird happened while getting the child placement for %p from " @@ -9096,8 +9158,8 @@ msgstr "" msgid "Dockitem which 'owns' this tablabel" msgstr "" -#: ../src/libgdl/gdl-dock.c:175 ../src/ui/dialog/inkscape-preferences.cpp:590 -#: ../src/ui/dialog/inkscape-preferences.cpp:611 +#: ../src/libgdl/gdl-dock.c:175 ../src/ui/dialog/inkscape-preferences.cpp:591 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 msgid "Floating" msgstr "" @@ -9133,7 +9195,7 @@ msgstr "" msgid "Y coordinate for a floating dock" msgstr "" -#: ../src/libgdl/gdl-dock.c:501 +#: ../src/libgdl/gdl-dock.c:486 #, c-format msgid "Dock #%d" msgstr "" @@ -9847,11 +9909,11 @@ msgstr "" msgid "Both" msgstr "" -#: ../src/live_effects/lpe-ruler.cpp:35 ../src/widgets/toolbox.cpp:5645 +#: ../src/live_effects/lpe-ruler.cpp:35 ../src/widgets/toolbox.cpp:5663 msgid "Start" msgstr "" -#: ../src/live_effects/lpe-ruler.cpp:36 ../src/widgets/toolbox.cpp:5658 +#: ../src/live_effects/lpe-ruler.cpp:36 ../src/widgets/toolbox.cpp:5676 msgid "End" msgstr "" @@ -10942,7 +11004,7 @@ msgstr "" msgid "Unique URI to a related document" msgstr "" -#: ../src/rdf.cpp:263 ../src/ui/dialog/inkscape-preferences.cpp:1316 +#: ../src/rdf.cpp:263 ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "Language:" msgstr "" @@ -11106,7 +11168,7 @@ msgstr "" #: ../src/selection-chemistry.cpp:328 ../src/text-context.cpp:1026 #: ../src/ui/dialog/swatches.cpp:204 ../src/ui/dialog/swatches.cpp:267 -#: ../src/widgets/toolbox.cpp:1385 ../src/widgets/toolbox.cpp:6213 +#: ../src/widgets/toolbox.cpp:1385 ../src/widgets/toolbox.cpp:6231 msgid "Delete" msgstr "" @@ -11460,8 +11522,8 @@ msgstr "" #. Ellipse #: ../src/selection-describer.cpp:48 ../src/selection-describer.cpp:73 -#: ../src/ui/dialog/inkscape-preferences.cpp:509 ../src/verbs.cpp:2514 -#: ../src/widgets/toolbox.cpp:4156 +#: ../src/ui/dialog/inkscape-preferences.cpp:510 ../src/verbs.cpp:2514 +#: ../src/widgets/toolbox.cpp:4174 msgid "Ellipse" msgstr "" @@ -11477,7 +11539,7 @@ msgstr "" msgid "Path" msgstr "" -#: ../src/selection-describer.cpp:60 ../src/widgets/toolbox.cpp:2997 +#: ../src/selection-describer.cpp:60 ../src/widgets/toolbox.cpp:3015 msgid "Polygon" msgstr "" @@ -11487,13 +11549,13 @@ msgstr "" #. Rectangle #: ../src/selection-describer.cpp:64 -#: ../src/ui/dialog/inkscape-preferences.cpp:499 ../src/verbs.cpp:2510 +#: ../src/ui/dialog/inkscape-preferences.cpp:500 ../src/verbs.cpp:2510 msgid "Rectangle" msgstr "" #. 3D box #: ../src/selection-describer.cpp:66 -#: ../src/ui/dialog/inkscape-preferences.cpp:504 ../src/verbs.cpp:2512 +#: ../src/ui/dialog/inkscape-preferences.cpp:505 ../src/verbs.cpp:2512 msgid "3D Box" msgstr "" @@ -11503,7 +11565,7 @@ msgstr "" #. this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool"); #. Text #: ../src/selection-describer.cpp:68 -#: ../src/ui/dialog/inkscape-preferences.cpp:558 ../src/verbs.cpp:2526 +#: ../src/ui/dialog/inkscape-preferences.cpp:559 ../src/verbs.cpp:2526 #: ../share/extensions/lorem_ipsum.inx.h:7 #: ../share/extensions/replace_font.inx.h:10 ../share/extensions/split.inx.h:6 #: ../share/extensions/text_braille.inx.h:2 @@ -11524,19 +11586,21 @@ msgid "Clone" msgstr "" #: ../src/selection-describer.cpp:75 +#: ../share/extensions/gcodetools_lathe.inx.h:31 msgid "Offset path" msgstr "" #. Spiral #: ../src/selection-describer.cpp:77 -#: ../src/ui/dialog/inkscape-preferences.cpp:517 ../src/verbs.cpp:2518 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 ../src/verbs.cpp:2518 +#: ../share/extensions/gcodetools_area.inx.h:45 msgid "Spiral" msgstr "" #. Star #: ../src/selection-describer.cpp:79 -#: ../src/ui/dialog/inkscape-preferences.cpp:513 ../src/verbs.cpp:2516 -#: ../src/widgets/toolbox.cpp:3004 +#: ../src/ui/dialog/inkscape-preferences.cpp:514 ../src/verbs.cpp:2516 +#: ../src/widgets/toolbox.cpp:3022 msgid "Star" msgstr "" @@ -11787,16 +11851,16 @@ msgstr "" msgid "at %d degrees, through (%s,%s)" msgstr "" -#: ../src/sp-image.cpp:1132 +#: ../src/sp-image.cpp:1133 msgid "embedded" msgstr "" -#: ../src/sp-image.cpp:1140 +#: ../src/sp-image.cpp:1141 #, c-format msgid "<b>Image with bad reference</b>: %s" msgstr "" -#: ../src/sp-image.cpp:1141 +#: ../src/sp-image.cpp:1142 #, c-format msgid "<b>Image</b> %d × %d: %s" msgstr "" @@ -12119,11 +12183,11 @@ msgstr "" msgid "<b>Nothing selected!</b> Select objects to spray." msgstr "" -#: ../src/spray-context.cpp:781 ../src/widgets/toolbox.cpp:4741 +#: ../src/spray-context.cpp:781 ../src/widgets/toolbox.cpp:4759 msgid "Spray with copies" msgstr "" -#: ../src/spray-context.cpp:785 ../src/widgets/toolbox.cpp:4748 +#: ../src/spray-context.cpp:785 ../src/widgets/toolbox.cpp:4766 msgid "Spray with clones" msgstr "" @@ -12842,12 +12906,12 @@ msgstr "" #: ../src/ui/dialog/align-and-distribute.cpp:512 #: ../src/ui/dialog/align-and-distribute.cpp:894 -#: ../src/widgets/toolbox.cpp:8377 +#: ../src/widgets/toolbox.cpp:8395 msgid "Remove overlaps" msgstr "" #: ../src/ui/dialog/align-and-distribute.cpp:543 -#: ../src/widgets/toolbox.cpp:8170 +#: ../src/widgets/toolbox.cpp:8188 msgid "Arrange connector network" msgstr "" @@ -12876,7 +12940,7 @@ msgid "Rearrange" msgstr "" #: ../src/ui/dialog/align-and-distribute.cpp:895 -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2332 msgid "Nodes" msgstr "" @@ -12977,7 +13041,7 @@ msgid "Distribute baselines of texts vertically" msgstr "" #: ../src/ui/dialog/align-and-distribute.cpp:986 -#: ../src/widgets/toolbox.cpp:8339 +#: ../src/widgets/toolbox.cpp:8357 msgid "Nicely arrange selected connector network" msgstr "" @@ -13064,7 +13128,7 @@ msgstr "" #. #. ----------- #: ../src/ui/dialog/calligraphic-profile-rename.cpp:52 -#: ../src/ui/dialog/inkscape-preferences.cpp:1242 +#: ../src/ui/dialog/inkscape-preferences.cpp:1243 msgid "Save" msgstr "" @@ -13078,27 +13142,27 @@ msgstr "" msgid "Change color definition" msgstr "" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove stroke color" msgstr "" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove fill color" msgstr "" -#: ../src/ui/dialog/color-item.cpp:704 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set stroke color to none" msgstr "" -#: ../src/ui/dialog/color-item.cpp:704 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set fill color to none" msgstr "" -#: ../src/ui/dialog/color-item.cpp:720 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set stroke color from swatch" msgstr "" -#: ../src/ui/dialog/color-item.cpp:720 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set fill color from swatch" msgstr "" @@ -13131,344 +13195,340 @@ msgid "<b>License</b>" msgstr "" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "Show page _border" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "If set, rectangular page border is shown" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "Border on _top of drawing" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "If set, border is always on top of the drawing" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "_Show border shadow" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "If set, page border shows a shadow on its right and lower side" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Back_ground:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Background color" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "" "Color and transparency of the page background (also used for bitmap export)" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Border _color:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Page border color" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Color of the page border" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:98 +#: ../src/ui/dialog/document-properties.cpp:96 msgid "Default _units:" msgstr "" #. --------------------------------------------------------------- #. General snap options -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show _guides" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show or hide guides" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:103 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "_Snap guides while dragging" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:103 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "" "While dragging a guide, snap to object nodes or bounding box corners ('Snap " "to nodes' or 'snap to bounding box corners' must be enabled; only a small " "part of the guide near the cursor will snap)" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guide co_lor:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guideline color" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Color of guidelines" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "_Highlight color:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Highlighted guideline color" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Color of a guideline when it is under mouse" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:107 msgctxt "Grid" msgid "_New" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Create new grid." msgstr "" -#: ../src/ui/dialog/document-properties.cpp:110 +#: ../src/ui/dialog/document-properties.cpp:108 msgctxt "Grid" msgid "_Remove" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:110 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Remove selected grid." msgstr "" -#: ../src/ui/dialog/document-properties.cpp:119 -#: ../src/widgets/toolbox.cpp:2424 +#: ../src/ui/dialog/document-properties.cpp:117 +#: ../src/widgets/toolbox.cpp:2439 msgid "Guides" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:121 ../src/verbs.cpp:2597 +#: ../src/ui/dialog/document-properties.cpp:119 ../src/verbs.cpp:2597 msgid "Snap" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:122 +#: ../src/ui/dialog/document-properties.cpp:120 msgid "Color Management" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:123 +#: ../src/ui/dialog/document-properties.cpp:121 msgid "Scripting" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:221 +#: ../src/ui/dialog/document-properties.cpp:219 msgid "<b>General</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:223 +#: ../src/ui/dialog/document-properties.cpp:221 msgid "<b>Border</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:225 +#: ../src/ui/dialog/document-properties.cpp:223 msgid "<b>Page Size</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:253 +#: ../src/ui/dialog/document-properties.cpp:251 msgid "<b>Guides</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap _distance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap only when _closer than:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:272 -#: ../src/ui/dialog/document-properties.cpp:278 -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:270 +#: ../src/ui/dialog/document-properties.cpp:276 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Always snap" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:273 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Snapping distance, in screen pixels, for snapping to objects" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:273 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Always snap to objects, regardless of their distance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:274 +#: ../src/ui/dialog/document-properties.cpp:272 msgid "" "If set, objects only snap to another object when it's within the range " "specified below" msgstr "" #. Options for snapping to grids -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap d_istance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap only when c_loser than:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:279 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Snapping distance, in screen pixels, for snapping to grid" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:279 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Always snap to grids, regardless of the distance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:280 +#: ../src/ui/dialog/document-properties.cpp:278 msgid "" "If set, objects only snap to a grid line when it's within the range " "specified below" msgstr "" #. Options for snapping to guides -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap dist_ance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap only when close_r than:" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:285 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Snapping distance, in screen pixels, for snapping to guides" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:285 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Always snap to guides, regardless of the distance" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:286 +#: ../src/ui/dialog/document-properties.cpp:284 msgid "" "If set, objects only snap to a guide when it's within the range specified " "below" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:290 +#: ../src/ui/dialog/document-properties.cpp:288 msgid "<b>Snap to objects</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:292 +#: ../src/ui/dialog/document-properties.cpp:290 msgid "<b>Snap to grids</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:294 +#: ../src/ui/dialog/document-properties.cpp:292 msgid "<b>Snap to guides</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:323 -msgid "(invalid UTF-8 string)" -msgstr "" - #. TODO check if this next line was sometimes needed. It being there caused an assertion. #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:432 ../src/verbs.cpp:2763 +#: ../src/ui/dialog/document-properties.cpp:406 ../src/verbs.cpp:2763 msgid "Link Color Profile" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:525 +#: ../src/ui/dialog/document-properties.cpp:499 msgid "Remove linked color profile" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:539 +#: ../src/ui/dialog/document-properties.cpp:513 msgid "<b>Linked Color Profiles:</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:541 +#: ../src/ui/dialog/document-properties.cpp:515 msgid "<b>Available Color Profiles:</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:543 +#: ../src/ui/dialog/document-properties.cpp:517 msgid "Link Profile" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:574 +#: ../src/ui/dialog/document-properties.cpp:548 msgid "Profile Name" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:607 +#: ../src/ui/dialog/document-properties.cpp:581 msgid "External scripts" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:608 +#: ../src/ui/dialog/document-properties.cpp:582 msgid "Embedded scripts" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:614 +#: ../src/ui/dialog/document-properties.cpp:588 msgid "<b>External script files:</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:616 +#: ../src/ui/dialog/document-properties.cpp:590 msgid "Add" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:639 +#: ../src/ui/dialog/document-properties.cpp:613 msgid "Filename" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:648 +#: ../src/ui/dialog/document-properties.cpp:622 msgid "<b>Embedded script files:</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:650 +#: ../src/ui/dialog/document-properties.cpp:624 msgid "New" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:672 +#: ../src/ui/dialog/document-properties.cpp:646 msgid "Script id" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:678 +#: ../src/ui/dialog/document-properties.cpp:652 msgid "<b>Content:</b>" msgstr "" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:741 +#: ../src/ui/dialog/document-properties.cpp:715 msgid "Add external script..." msgstr "" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:758 +#: ../src/ui/dialog/document-properties.cpp:732 msgid "Add embedded script..." msgstr "" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:788 +#: ../src/ui/dialog/document-properties.cpp:762 msgid "Remove external script" msgstr "" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:820 +#: ../src/ui/dialog/document-properties.cpp:794 msgid "Remove embedded script" msgstr "" #. TODO repr->set_content(_EmbeddedContent.get_buffer()->get_text()); #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:903 +#: ../src/ui/dialog/document-properties.cpp:877 msgid "Edit embedded script" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:988 +#: ../src/ui/dialog/document-properties.cpp:962 msgid "<b>Creation</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:989 +#: ../src/ui/dialog/document-properties.cpp:963 msgid "<b>Defined grids</b>" msgstr "" -#: ../src/ui/dialog/document-properties.cpp:1200 +#: ../src/ui/dialog/document-properties.cpp:1174 msgid "Remove grid" msgstr "" @@ -13483,14 +13543,16 @@ msgstr "" #: ../share/extensions/draw_from_triangle.inx.h:20 #: ../share/extensions/dxf_input.inx.h:11 #: ../share/extensions/dxf_outlines.inx.h:8 -#: ../share/extensions/gcodetools_all_in_one.inx.h:25 -#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_about.inx.h:5 +#: ../share/extensions/gcodetools_area.inx.h:28 #: ../share/extensions/gcodetools_check_for_updates.inx.h:5 -#: ../share/extensions/gcodetools_dxf_points.inx.h:13 -#: ../share/extensions/gcodetools_engraving.inx.h:11 -#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_dxf_points.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:16 +#: ../share/extensions/gcodetools_graffiti.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:20 #: ../share/extensions/gcodetools_orientation_points.inx.h:5 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:6 #: ../share/extensions/gcodetools_tools_library.inx.h:3 #: ../share/extensions/generate_voronoi.inx.h:6 #: ../share/extensions/gimp_xcf.inx.h:3 @@ -13874,8 +13936,8 @@ msgid "Height of filter effects region" msgstr "" #: ../src/ui/dialog/filter-effects-dialog.cpp:2190 -#: ../src/widgets/toolbox.cpp:4125 ../src/widgets/toolbox.cpp:4503 -#: ../src/widgets/toolbox.cpp:4761 ../src/widgets/toolbox.cpp:6226 +#: ../src/widgets/toolbox.cpp:4143 ../src/widgets/toolbox.cpp:4521 +#: ../src/widgets/toolbox.cpp:4779 ../src/widgets/toolbox.cpp:6244 #: ../share/extensions/extrude.inx.h:4 ../share/extensions/triangle.inx.h:9 msgid "Mode:" msgstr "" @@ -15003,8 +15065,8 @@ msgstr "" msgid "_X:" msgstr "" -#: ../src/ui/dialog/guides.cpp:44 ../src/widgets/sp-color-icc-selector.cpp:217 -#: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/ui/dialog/guides.cpp:44 ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:462 msgid "_Y:" msgstr "" @@ -15057,596 +15119,596 @@ msgstr "" msgid "Selection only or whole document" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:177 +#: ../src/ui/dialog/inkscape-preferences.cpp:178 msgid "Mouse" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 msgid "Grab sensitivity:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 -#: ../src/ui/dialog/inkscape-preferences.cpp:182 -#: ../src/ui/dialog/inkscape-preferences.cpp:198 -#: ../src/ui/dialog/inkscape-preferences.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 msgid "pixels" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:181 msgid "" "How close on the screen you need to be to an object to be able to grab it " "with mouse (in screen pixels)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:182 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 msgid "Click/drag threshold:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:184 msgid "" "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:185 +#: ../src/ui/dialog/inkscape-preferences.cpp:186 msgid "Use pressure-sensitive tablet (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:187 +#: ../src/ui/dialog/inkscape-preferences.cpp:188 msgid "" "Use the capabilities of a tablet or other pressure-sensitive device. Disable " "this only if you have problems with the tablet (you can still use it as a " "mouse)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:189 +#: ../src/ui/dialog/inkscape-preferences.cpp:190 msgid "Switch tool based on tablet device (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:191 +#: ../src/ui/dialog/inkscape-preferences.cpp:192 msgid "" "Change tool as different devices are used on the tablet (pen, eraser, mouse)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:196 +#: ../src/ui/dialog/inkscape-preferences.cpp:197 msgid "Scrolling" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:198 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 msgid "Mouse wheel scrolls by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:200 msgid "" "One mouse wheel notch scrolls by this distance in screen pixels " "(horizontally with Shift)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:200 +#: ../src/ui/dialog/inkscape-preferences.cpp:201 msgid "Ctrl+arrows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 msgid "Scroll by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:205 +#: ../src/ui/dialog/inkscape-preferences.cpp:206 msgid "Acceleration:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:206 +#: ../src/ui/dialog/inkscape-preferences.cpp:207 msgid "" "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no " "acceleration)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:207 +#: ../src/ui/dialog/inkscape-preferences.cpp:208 msgid "Autoscrolling" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:209 +#: ../src/ui/dialog/inkscape-preferences.cpp:210 msgid "Speed:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:210 +#: ../src/ui/dialog/inkscape-preferences.cpp:211 msgid "" "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn " "autoscroll off)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:213 +#: ../src/ui/dialog/inkscape-preferences.cpp:214 msgid "" "How far (in screen pixels) you need to be from the canvas edge to trigger " "autoscroll; positive is outside the canvas, negative is within the canvas" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:214 +#: ../src/ui/dialog/inkscape-preferences.cpp:215 msgid "Left mouse button pans when Space is pressed" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:216 +#: ../src/ui/dialog/inkscape-preferences.cpp:217 msgid "" "When on, pressing and holding Space and dragging with left mouse button pans " "canvas (as in Adobe Illustrator); when off, Space temporarily switches to " "Selector tool (default)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:217 +#: ../src/ui/dialog/inkscape-preferences.cpp:218 msgid "Mouse wheel zooms by default" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:219 +#: ../src/ui/dialog/inkscape-preferences.cpp:220 msgid "" "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when " "off, it zooms with Ctrl and scrolls without Ctrl" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:225 +#: ../src/ui/dialog/inkscape-preferences.cpp:226 msgid "Enable snap indicator" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:227 +#: ../src/ui/dialog/inkscape-preferences.cpp:228 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:230 +#: ../src/ui/dialog/inkscape-preferences.cpp:231 msgid "Delay (in ms):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:231 +#: ../src/ui/dialog/inkscape-preferences.cpp:232 msgid "" "Postpone snapping as long as the mouse is moving, and then wait an " "additional fraction of a second. This additional delay is specified here. " "When set to zero or to a very small number, snapping will be immediate." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:233 +#: ../src/ui/dialog/inkscape-preferences.cpp:234 msgid "Only snap the node closest to the pointer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:235 +#: ../src/ui/dialog/inkscape-preferences.cpp:236 msgid "" "Only try to snap the node that is initially closest to the mouse pointer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:238 +#: ../src/ui/dialog/inkscape-preferences.cpp:239 msgid "Weight factor:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:239 +#: ../src/ui/dialog/inkscape-preferences.cpp:240 msgid "" "When multiple snap solutions are found, then Inkscape can either prefer the " "closest transformation (when set to 0), or prefer the node that was " "initially the closest to the pointer (when set to 1)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:241 +#: ../src/ui/dialog/inkscape-preferences.cpp:242 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:243 +#: ../src/ui/dialog/inkscape-preferences.cpp:244 msgid "" "When dragging a knot along a constraint line, then snap the position of the " "mouse pointer instead of snapping the projection of the knot onto the " "constraint line" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:245 +#: ../src/ui/dialog/inkscape-preferences.cpp:246 msgid "Snapping" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:250 +#: ../src/ui/dialog/inkscape-preferences.cpp:251 msgid "Steps" msgstr "" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:254 +#: ../src/ui/dialog/inkscape-preferences.cpp:255 msgid "Arrow keys move by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:255 +#: ../src/ui/dialog/inkscape-preferences.cpp:256 msgid "" "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:258 +#: ../src/ui/dialog/inkscape-preferences.cpp:259 msgid "> and < scale by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:259 +#: ../src/ui/dialog/inkscape-preferences.cpp:260 msgid "Pressing > or < scales selection up or down by this increment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:261 +#: ../src/ui/dialog/inkscape-preferences.cpp:262 msgid "Inset/Outset by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:263 msgid "Inset and Outset commands displace the path by this distance" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:263 +#: ../src/ui/dialog/inkscape-preferences.cpp:264 msgid "Compass-like display of angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:265 +#: ../src/ui/dialog/inkscape-preferences.cpp:266 msgid "" "When on, angles are displayed with 0 at north, 0 to 360 range, positive " "clockwise; otherwise with 0 at east, -180 to 180 range, positive " "counterclockwise" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "Rotation snaps every:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "degrees" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:272 +#: ../src/ui/dialog/inkscape-preferences.cpp:273 msgid "" "Rotating with Ctrl pressed snaps every that much degrees; also, pressing " "[ or ] rotates by this amount" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:273 +#: ../src/ui/dialog/inkscape-preferences.cpp:274 msgid "Relative snapping of guideline angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:275 +#: ../src/ui/dialog/inkscape-preferences.cpp:276 msgid "" "When on, the snap angles when rotating a guideline will be relative to the " "original angle" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "Zoom in/out by:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:278 +#: ../src/ui/dialog/inkscape-preferences.cpp:279 msgid "" "Zoom tool click, +/- keys, and middle click zoom in and out by this " "multiplier" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:284 +#: ../src/ui/dialog/inkscape-preferences.cpp:285 msgid "Show selection cue" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:285 +#: ../src/ui/dialog/inkscape-preferences.cpp:286 msgid "" "Whether selected objects display a selection cue (the same as in selector)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:291 +#: ../src/ui/dialog/inkscape-preferences.cpp:292 msgid "Enable gradient editing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:292 +#: ../src/ui/dialog/inkscape-preferences.cpp:293 msgid "Whether selected objects display gradient editing controls" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:297 +#: ../src/ui/dialog/inkscape-preferences.cpp:298 msgid "Conversion to guides uses edges instead of bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:298 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "" "Converting an object to guides places these along the object's true edges " "(imitating the object's shape), not along the bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "Ctrl+click dot size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "times current stroke width" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:306 +#: ../src/ui/dialog/inkscape-preferences.cpp:307 msgid "Size of dots created with Ctrl+click (relative to current stroke width)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:321 +#: ../src/ui/dialog/inkscape-preferences.cpp:322 msgid "<b>No objects selected</b> to take the style from." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:331 msgid "" "<b>More than one object selected.</b> Cannot take style from multiple " "objects." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:363 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "Style of new objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:366 msgid "Last used style" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Apply the style you last set on an object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:372 +#: ../src/ui/dialog/inkscape-preferences.cpp:373 msgid "This tool's own style:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:376 +#: ../src/ui/dialog/inkscape-preferences.cpp:377 msgid "" "Each tool may store its own style to apply to the newly created objects. Use " "the button below to set it." msgstr "" #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:380 +#: ../src/ui/dialog/inkscape-preferences.cpp:381 msgid "Take from selection" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 msgid "This tool's style of new objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:392 +#: ../src/ui/dialog/inkscape-preferences.cpp:393 msgid "Remember the style of the (first) selected object as this tool's style" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:397 +#: ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "Tools" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:400 +#: ../src/ui/dialog/inkscape-preferences.cpp:401 msgid "Bounding box to use" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:401 +#: ../src/ui/dialog/inkscape-preferences.cpp:402 msgid "Visual bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:403 +#: ../src/ui/dialog/inkscape-preferences.cpp:404 msgid "This bounding box includes stroke width, markers, filter margins, etc." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:404 +#: ../src/ui/dialog/inkscape-preferences.cpp:405 msgid "Geometric bounding box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:406 +#: ../src/ui/dialog/inkscape-preferences.cpp:407 msgid "This bounding box includes only the bare path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:408 +#: ../src/ui/dialog/inkscape-preferences.cpp:409 msgid "Conversion to guides" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:409 +#: ../src/ui/dialog/inkscape-preferences.cpp:410 msgid "Keep objects after conversion to guides" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:411 +#: ../src/ui/dialog/inkscape-preferences.cpp:412 msgid "" "When converting an object to guides, don't delete the object after the " "conversion" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:412 +#: ../src/ui/dialog/inkscape-preferences.cpp:413 msgid "Treat groups as a single object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:414 +#: ../src/ui/dialog/inkscape-preferences.cpp:415 msgid "" "Treat groups as a single object during conversion to guides rather than " "converting each child separately" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:416 +#: ../src/ui/dialog/inkscape-preferences.cpp:417 msgid "Average all sketches" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:417 +#: ../src/ui/dialog/inkscape-preferences.cpp:418 msgid "Width is in absolute units" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:418 +#: ../src/ui/dialog/inkscape-preferences.cpp:419 msgid "Select new path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:419 +#: ../src/ui/dialog/inkscape-preferences.cpp:420 msgid "Don't attach connectors to text objects" msgstr "" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:422 +#: ../src/ui/dialog/inkscape-preferences.cpp:423 msgid "Selector" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:425 +#: ../src/ui/dialog/inkscape-preferences.cpp:426 msgid "When transforming, show" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:426 +#: ../src/ui/dialog/inkscape-preferences.cpp:427 msgid "Objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:428 +#: ../src/ui/dialog/inkscape-preferences.cpp:429 msgid "Show the actual objects when moving or transforming" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:429 +#: ../src/ui/dialog/inkscape-preferences.cpp:430 msgid "Box outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:431 +#: ../src/ui/dialog/inkscape-preferences.cpp:432 msgid "Show only a box outline of the objects when moving or transforming" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:432 +#: ../src/ui/dialog/inkscape-preferences.cpp:433 msgid "Per-object selection cue" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:435 +#: ../src/ui/dialog/inkscape-preferences.cpp:436 msgid "No per-object selection indication" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 +#: ../src/ui/dialog/inkscape-preferences.cpp:437 msgid "Mark" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:438 +#: ../src/ui/dialog/inkscape-preferences.cpp:439 msgid "Each selected object has a diamond mark in the top left corner" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:439 +#: ../src/ui/dialog/inkscape-preferences.cpp:440 msgid "Box" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:441 +#: ../src/ui/dialog/inkscape-preferences.cpp:442 msgid "Each selected object displays its bounding box" msgstr "" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:444 +#: ../src/ui/dialog/inkscape-preferences.cpp:445 msgid "Node" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 +#: ../src/ui/dialog/inkscape-preferences.cpp:448 msgid "Path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:448 +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Path outline color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:449 +#: ../src/ui/dialog/inkscape-preferences.cpp:450 msgid "Selects the color used for showing the path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:450 +#: ../src/ui/dialog/inkscape-preferences.cpp:451 msgid "Always show outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:452 msgid "Show outlines for all paths, not only invisible paths" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:452 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Update outline when dragging nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:454 msgid "" "Update the outline when dragging or transforming nodes; if this is off, the " "outline will only update when completing a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:454 +#: ../src/ui/dialog/inkscape-preferences.cpp:455 msgid "Update paths when dragging nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:455 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "" "Update paths when dragging or transforming nodes; if this is off, paths will " "only be updated when completing a drag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:456 +#: ../src/ui/dialog/inkscape-preferences.cpp:457 msgid "Show path direction on outlines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:457 +#: ../src/ui/dialog/inkscape-preferences.cpp:458 msgid "" "Visualize the direction of selected paths by drawing small arrows in the " "middle of each outline segment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Show temporary path outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:460 msgid "When hovering over a path, briefly flash its outline" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:460 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "Show temporary outline for selected paths" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:461 +#: ../src/ui/dialog/inkscape-preferences.cpp:462 msgid "Show temporary outline even when a path is selected for editing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "Flash time:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "" "Specifies how long the path outline will be visible after a mouse-over (in " "milliseconds); specify 0 to have the outline shown until mouse leaves the " "path" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:464 +#: ../src/ui/dialog/inkscape-preferences.cpp:465 msgid "Editing preferences" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:465 +#: ../src/ui/dialog/inkscape-preferences.cpp:466 msgid "Show transform handles for single nodes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:466 +#: ../src/ui/dialog/inkscape-preferences.cpp:467 msgid "Show transform handles even when only a single node is selected" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:467 +#: ../src/ui/dialog/inkscape-preferences.cpp:468 msgid "Deleting nodes preserves shape" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:468 +#: ../src/ui/dialog/inkscape-preferences.cpp:469 msgid "" "Move handles next to deleted nodes to resemble original shape; hold Ctrl to " "get the other behavior" msgstr "" #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:471 ../src/verbs.cpp:2506 +#: ../src/ui/dialog/inkscape-preferences.cpp:472 ../src/verbs.cpp:2506 msgid "Tweak" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:472 +#: ../src/ui/dialog/inkscape-preferences.cpp:473 msgid "Object paint style" msgstr "" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:477 ../src/verbs.cpp:2508 +#: ../src/ui/dialog/inkscape-preferences.cpp:478 ../src/verbs.cpp:2508 msgid "Spray" msgstr "" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:482 ../src/verbs.cpp:2530 +#: ../src/ui/dialog/inkscape-preferences.cpp:483 ../src/verbs.cpp:2530 #: ../src/widgets/desktop-widget.cpp:493 msgid "Zoom" msgstr "" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:487 ../src/verbs.cpp:2532 +#: ../src/ui/dialog/inkscape-preferences.cpp:488 ../src/verbs.cpp:2532 #: ../share/extensions/measure.inx.h:6 msgid "Measure" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:489 +#: ../src/ui/dialog/inkscape-preferences.cpp:490 msgid "Ignore first and last points" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:490 +#: ../src/ui/dialog/inkscape-preferences.cpp:491 msgid "" "The start and end of the measurement tool's control line will not be " "considered for calculating lengths. Only lengths between actual curve " @@ -15654,252 +15716,252 @@ msgid "" msgstr "" #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:493 +#: ../src/ui/dialog/inkscape-preferences.cpp:494 msgid "Shapes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Sketch mode" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "" "If on, the sketch result will be the normal average of all sketches made, " "instead of averaging the old result with the new sketch" msgstr "" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:530 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 #: ../src/ui/dialog/input.cpp:1184 ../src/verbs.cpp:2522 msgid "Pen" msgstr "" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:536 ../src/verbs.cpp:2524 +#: ../src/ui/dialog/inkscape-preferences.cpp:537 ../src/verbs.cpp:2524 msgid "Calligraphy" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:540 +#: ../src/ui/dialog/inkscape-preferences.cpp:541 msgid "" "If on, pen width is in absolute units (px) independent of zoom; otherwise " "pen width depends on zoom so that it looks the same at any zoom" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:542 +#: ../src/ui/dialog/inkscape-preferences.cpp:543 msgid "" "If on, each newly created object will be selected (deselecting previous " "selection)" msgstr "" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:544 ../src/verbs.cpp:2538 +#: ../src/ui/dialog/inkscape-preferences.cpp:545 ../src/verbs.cpp:2538 msgid "Paint Bucket" msgstr "" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:549 ../src/verbs.cpp:2542 +#: ../src/ui/dialog/inkscape-preferences.cpp:550 ../src/verbs.cpp:2542 msgid "Eraser" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 +#: ../src/ui/dialog/inkscape-preferences.cpp:564 msgid "Show font samples in the drop-down list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:564 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "" "Show font samples alongside font names in the drop-down list in Text bar" msgstr "" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:569 ../src/verbs.cpp:2528 +#: ../src/ui/dialog/inkscape-preferences.cpp:570 ../src/verbs.cpp:2528 msgid "Gradient" msgstr "" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:573 ../src/verbs.cpp:2536 +#: ../src/ui/dialog/inkscape-preferences.cpp:574 ../src/verbs.cpp:2536 msgid "Connector" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:576 +#: ../src/ui/dialog/inkscape-preferences.cpp:577 msgid "If on, connector attachment points will not be shown for text objects" msgstr "" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:578 ../src/verbs.cpp:2534 +#: ../src/ui/dialog/inkscape-preferences.cpp:579 ../src/verbs.cpp:2534 msgid "Dropper" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:585 +#: ../src/ui/dialog/inkscape-preferences.cpp:586 msgid "Save and restore window geometry for each document" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:586 +#: ../src/ui/dialog/inkscape-preferences.cpp:587 msgid "Remember and use last window's geometry" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:587 +#: ../src/ui/dialog/inkscape-preferences.cpp:588 msgid "Don't save window geometry" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:589 -#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:590 +#: ../src/ui/dialog/inkscape-preferences.cpp:610 msgid "Dockable" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:592 +#: ../src/ui/dialog/inkscape-preferences.cpp:593 msgid "Dialogs are hidden in taskbar" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:593 +#: ../src/ui/dialog/inkscape-preferences.cpp:594 msgid "Zoom when window is resized" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:594 +#: ../src/ui/dialog/inkscape-preferences.cpp:595 msgid "Show close button on dialogs" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:597 +#: ../src/ui/dialog/inkscape-preferences.cpp:598 msgid "Aggressive" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:599 +#: ../src/ui/dialog/inkscape-preferences.cpp:600 msgid "Saving window geometry (size and position)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:601 +#: ../src/ui/dialog/inkscape-preferences.cpp:602 msgid "Let the window manager determine placement of all windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:603 +#: ../src/ui/dialog/inkscape-preferences.cpp:604 msgid "" "Remember and use the last window's geometry (saves geometry to user " "preferences)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:605 +#: ../src/ui/dialog/inkscape-preferences.cpp:606 msgid "" "Save and restore window geometry for each document (saves geometry in the " "document)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 +#: ../src/ui/dialog/inkscape-preferences.cpp:608 msgid "Dialog behavior (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:614 +#: ../src/ui/dialog/inkscape-preferences.cpp:615 msgid "Dialogs on top:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:618 msgid "Dialogs are treated as regular windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:619 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Dialogs stay on top of document windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:621 +#: ../src/ui/dialog/inkscape-preferences.cpp:622 msgid "Same as Normal but may work better with some window managers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:625 +#: ../src/ui/dialog/inkscape-preferences.cpp:626 msgid "Dialog Transparency" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:628 msgid "Opacity when focused:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:630 msgid "Opacity when unfocused:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:631 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 msgid "Time of opacity change animation:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:634 +#: ../src/ui/dialog/inkscape-preferences.cpp:635 msgid "Miscellaneous" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:638 msgid "Whether dialog windows are to be hidden in the window manager taskbar" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:640 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "" "Zoom drawing when document window is resized, to keep the same area visible " "(this is the default which can be changed in any window using the button " "above the right scrollbar)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:643 msgid "Whether dialog windows have a close button (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:643 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Windows" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:648 +#: ../src/ui/dialog/inkscape-preferences.cpp:649 msgid "Move in parallel" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:651 msgid "Stay unmoved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:652 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Move according to transform" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:654 +#: ../src/ui/dialog/inkscape-preferences.cpp:655 msgid "Are unlinked" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:656 +#: ../src/ui/dialog/inkscape-preferences.cpp:657 msgid "Are deleted" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:659 +#: ../src/ui/dialog/inkscape-preferences.cpp:660 msgid "Moving original: clones and linked offsets" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:661 +#: ../src/ui/dialog/inkscape-preferences.cpp:662 msgid "Clones are translated by the same vector as their original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:663 +#: ../src/ui/dialog/inkscape-preferences.cpp:664 msgid "Clones preserve their positions when their original is moved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:665 +#: ../src/ui/dialog/inkscape-preferences.cpp:666 msgid "" "Each clone moves according to the value of its transform= attribute; for " "example, a rotated clone will move in a different direction than its original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:667 msgid "Deleting original: clones" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:669 msgid "Orphaned clones are converted to regular objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:670 +#: ../src/ui/dialog/inkscape-preferences.cpp:671 msgid "Orphaned clones are deleted along with their original" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:672 +#: ../src/ui/dialog/inkscape-preferences.cpp:673 msgid "Duplicating original+clones/linked offset" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:675 msgid "Relink duplicated clones" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:677 msgid "" "When duplicating a selection containing both a clone and its original " "(possibly in groups), relink the duplicated clone to the duplicated original " @@ -15907,974 +15969,974 @@ msgid "" msgstr "" #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:679 +#: ../src/ui/dialog/inkscape-preferences.cpp:680 msgid "Clones" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:685 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:686 +#: ../src/ui/dialog/inkscape-preferences.cpp:687 msgid "" "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:687 +#: ../src/ui/dialog/inkscape-preferences.cpp:688 msgid "Remove clippath/mask object after applying" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:689 +#: ../src/ui/dialog/inkscape-preferences.cpp:690 msgid "" "After applying, remove the object used as the clipping path or mask from the " "drawing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:692 msgid "Before applying" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:694 msgid "Do not group clipped/masked objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:694 +#: ../src/ui/dialog/inkscape-preferences.cpp:695 msgid "Enclose every clipped/masked object in its own group" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:695 +#: ../src/ui/dialog/inkscape-preferences.cpp:696 msgid "Put all clipped/masked objects into one group" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 +#: ../src/ui/dialog/inkscape-preferences.cpp:699 msgid "Apply clippath/mask to every object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:701 +#: ../src/ui/dialog/inkscape-preferences.cpp:702 msgid "Apply clippath/mask to groups containing single object" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:704 +#: ../src/ui/dialog/inkscape-preferences.cpp:705 msgid "Apply clippath/mask to group containing all objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:706 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "After releasing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:708 +#: ../src/ui/dialog/inkscape-preferences.cpp:709 msgid "Ungroup automatically created groups" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:710 +#: ../src/ui/dialog/inkscape-preferences.cpp:711 msgid "Ungroup groups created when setting clip/mask" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:712 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "Clippaths and masks" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:717 -#: ../src/widgets/select-toolbar.cpp:554 +#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/widgets/select-toolbar.cpp:561 msgid "Scale stroke width" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/ui/dialog/inkscape-preferences.cpp:719 msgid "Scale rounded corners in rectangles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:719 +#: ../src/ui/dialog/inkscape-preferences.cpp:720 msgid "Transform gradients" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:720 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Transform patterns" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:722 msgid "Optimized" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:722 +#: ../src/ui/dialog/inkscape-preferences.cpp:723 msgid "Preserved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:725 -#: ../src/widgets/select-toolbar.cpp:555 +#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/widgets/select-toolbar.cpp:562 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:727 -#: ../src/widgets/select-toolbar.cpp:566 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 +#: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:729 -#: ../src/widgets/select-toolbar.cpp:577 +#: ../src/ui/dialog/inkscape-preferences.cpp:730 +#: ../src/widgets/select-toolbar.cpp:584 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:731 -#: ../src/widgets/select-toolbar.cpp:588 +#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/widgets/select-toolbar.cpp:595 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/ui/dialog/inkscape-preferences.cpp:733 msgid "Store transformation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:734 +#: ../src/ui/dialog/inkscape-preferences.cpp:735 msgid "" "If possible, apply transformation to objects without adding a transform= " "attribute" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:736 +#: ../src/ui/dialog/inkscape-preferences.cpp:737 msgid "Always store transformation as a transform= attribute on objects" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:738 +#: ../src/ui/dialog/inkscape-preferences.cpp:739 msgid "Transforms" msgstr "" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:744 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:769 msgid "Best quality (slowest)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:770 +#: ../src/ui/dialog/inkscape-preferences.cpp:747 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Better quality (slower)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:773 msgid "Average quality" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:750 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 msgid "Lower quality (faster)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:752 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Lowest quality (fastest)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:755 +#: ../src/ui/dialog/inkscape-preferences.cpp:756 msgid "Gaussian blur quality for display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:757 -#: ../src/ui/dialog/inkscape-preferences.cpp:781 +#: ../src/ui/dialog/inkscape-preferences.cpp:758 +#: ../src/ui/dialog/inkscape-preferences.cpp:782 msgid "" "Best quality, but display may be very slow at high zooms (bitmap export " "always uses best quality)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:759 -#: ../src/ui/dialog/inkscape-preferences.cpp:783 +#: ../src/ui/dialog/inkscape-preferences.cpp:760 +#: ../src/ui/dialog/inkscape-preferences.cpp:784 msgid "Better quality, but slower display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:761 -#: ../src/ui/dialog/inkscape-preferences.cpp:785 +#: ../src/ui/dialog/inkscape-preferences.cpp:762 +#: ../src/ui/dialog/inkscape-preferences.cpp:786 msgid "Average quality, acceptable display speed" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:763 -#: ../src/ui/dialog/inkscape-preferences.cpp:787 +#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:788 msgid "Lower quality (some artifacts), but display is faster" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:765 -#: ../src/ui/dialog/inkscape-preferences.cpp:789 +#: ../src/ui/dialog/inkscape-preferences.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:790 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:779 +#: ../src/ui/dialog/inkscape-preferences.cpp:780 msgid "Filter effects quality for display" msgstr "" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:792 +#: ../src/ui/dialog/inkscape-preferences.cpp:793 msgid "Show filter primitives infobox" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:794 +#: ../src/ui/dialog/inkscape-preferences.cpp:795 msgid "" "Show icons and descriptions for the filter primitives available at the " "filter effects dialog" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 msgid "Number of Threads:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "(requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:800 msgid "" "Configure number of processors/threads to use with rendering of gaussian blur" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:807 +#: ../src/ui/dialog/inkscape-preferences.cpp:808 msgid "Select in all layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:808 +#: ../src/ui/dialog/inkscape-preferences.cpp:809 msgid "Select only within current layer" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:809 +#: ../src/ui/dialog/inkscape-preferences.cpp:810 msgid "Select in current layer and sublayers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:810 +#: ../src/ui/dialog/inkscape-preferences.cpp:811 msgid "Ignore hidden objects and layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:811 +#: ../src/ui/dialog/inkscape-preferences.cpp:812 msgid "Ignore locked objects and layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:812 +#: ../src/ui/dialog/inkscape-preferences.cpp:813 msgid "Deselect upon layer change" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:814 +#: ../src/ui/dialog/inkscape-preferences.cpp:815 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:816 +#: ../src/ui/dialog/inkscape-preferences.cpp:817 msgid "Make keyboard selection commands work on objects in all layers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:818 +#: ../src/ui/dialog/inkscape-preferences.cpp:819 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:820 +#: ../src/ui/dialog/inkscape-preferences.cpp:821 msgid "" "Make keyboard selection commands work on objects in current layer and all " "its sublayers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:822 +#: ../src/ui/dialog/inkscape-preferences.cpp:823 msgid "" "Uncheck this to be able to select objects that are hidden (either by " "themselves or by being in a hidden layer)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:824 +#: ../src/ui/dialog/inkscape-preferences.cpp:825 msgid "" "Uncheck this to be able to select objects that are locked (either by " "themselves or by being in a locked layer)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:827 +#: ../src/ui/dialog/inkscape-preferences.cpp:828 msgid "" "Uncheck this to be able to keep the current objects selected when the " "current layer changes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:829 +#: ../src/ui/dialog/inkscape-preferences.cpp:830 msgid "Selecting" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:836 +#: ../src/ui/dialog/inkscape-preferences.cpp:837 msgid "Default export resolution:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:838 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:840 msgid "Open Clip Art Library Server Name:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:840 +#: ../src/ui/dialog/inkscape-preferences.cpp:841 msgid "" "The server name of the Open Clip Art Library webdav server; it's used by the " "Import and Export to OCAL function" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:842 +#: ../src/ui/dialog/inkscape-preferences.cpp:843 msgid "Open Clip Art Library Username:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:844 msgid "The username used to log into Open Clip Art Library" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 +#: ../src/ui/dialog/inkscape-preferences.cpp:846 msgid "Open Clip Art Library Password:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:846 +#: ../src/ui/dialog/inkscape-preferences.cpp:847 msgid "The password used to log into Open Clip Art Library" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:848 +#: ../src/ui/dialog/inkscape-preferences.cpp:849 msgid "Import/Export" msgstr "" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Perceptual" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Relative Colorimetric" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Absolute Colorimetric" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:903 msgid "(Note: Color management has been disabled in this build)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:906 +#: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Display adjustment" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:916 +#: ../src/ui/dialog/inkscape-preferences.cpp:917 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" "Searched directories:%s" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:917 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "Display profile:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Retrieve profile from display" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Retrieve profiles from those attached to displays" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Display rendering intent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 +#: ../src/ui/dialog/inkscape-preferences.cpp:934 msgid "The rendering intent to use to calibrate display output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 +#: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "Proofing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:938 msgid "Simulate output on screen" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:939 +#: ../src/ui/dialog/inkscape-preferences.cpp:940 msgid "Simulates output of target device" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:941 +#: ../src/ui/dialog/inkscape-preferences.cpp:942 msgid "Mark out of gamut colors" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:944 msgid "Highlights colors that are out of gamut for the target device" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:948 +#: ../src/ui/dialog/inkscape-preferences.cpp:949 msgid "Out of gamut warning color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:949 +#: ../src/ui/dialog/inkscape-preferences.cpp:950 msgid "Selects the color used for out of gamut warning" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:951 +#: ../src/ui/dialog/inkscape-preferences.cpp:952 msgid "Device profile:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:952 +#: ../src/ui/dialog/inkscape-preferences.cpp:953 msgid "The ICC profile to use to simulate device output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:955 +#: ../src/ui/dialog/inkscape-preferences.cpp:956 msgid "Device rendering intent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:956 +#: ../src/ui/dialog/inkscape-preferences.cpp:957 msgid "The rendering intent to use to calibrate device output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:958 +#: ../src/ui/dialog/inkscape-preferences.cpp:959 msgid "Black point compensation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:960 +#: ../src/ui/dialog/inkscape-preferences.cpp:961 msgid "Enables black point compensation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:962 +#: ../src/ui/dialog/inkscape-preferences.cpp:963 msgid "Preserve black" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:967 +#: ../src/ui/dialog/inkscape-preferences.cpp:968 msgid "(LittleCMS 1.15 or later required)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:969 +#: ../src/ui/dialog/inkscape-preferences.cpp:970 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 -#: ../src/widgets/sp-color-icc-selector.cpp:297 -#: ../src/widgets/sp-color-icc-selector.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:983 +#: ../src/widgets/sp-color-icc-selector.cpp:304 +#: ../src/widgets/sp-color-icc-selector.cpp:577 msgid "<none>" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1027 +#: ../src/ui/dialog/inkscape-preferences.cpp:1028 msgid "Color management" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1032 +#: ../src/ui/dialog/inkscape-preferences.cpp:1033 msgid "Major grid line emphasizing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1034 +#: ../src/ui/dialog/inkscape-preferences.cpp:1035 msgid "Don't emphasize gridlines when zoomed out" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1035 +#: ../src/ui/dialog/inkscape-preferences.cpp:1036 msgid "" "If set and zoomed out, the gridlines will be shown in normal color instead " "of major grid line color" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1037 +#: ../src/ui/dialog/inkscape-preferences.cpp:1038 msgid "Default grid settings" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1043 -#: ../src/ui/dialog/inkscape-preferences.cpp:1064 +#: ../src/ui/dialog/inkscape-preferences.cpp:1044 +#: ../src/ui/dialog/inkscape-preferences.cpp:1065 msgid "Grid units:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "Origin X:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Origin Y:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Spacing X:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Spacing Y:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1053 #: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Grid line color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Color used for normal grid lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1077 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 #: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Major grid line color:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Color used for major (highlighted) grid lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1058 -#: ../src/ui/dialog/inkscape-preferences.cpp:1080 +#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1081 msgid "Major grid line every:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1060 msgid "Show dots instead of lines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1060 +#: ../src/ui/dialog/inkscape-preferences.cpp:1061 msgid "If set, display dots at gridpoints instead of gridlines" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1087 +#: ../src/ui/dialog/inkscape-preferences.cpp:1088 msgid "Use named colors" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1089 msgid "" "If set, write the CSS name of the color when available (e.g. 'red' or " "'magenta') instead of the numeric value" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1090 +#: ../src/ui/dialog/inkscape-preferences.cpp:1091 msgid "XML formatting" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1092 +#: ../src/ui/dialog/inkscape-preferences.cpp:1093 msgid "Inline attributes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1093 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "Put attributes on the same line as the element tag" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "Indent, spaces:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "" "The number of spaces to use for indenting nested elements; set to 0 for no " "indentation" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "Path data" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1100 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "Allow relative coordinates" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1101 +#: ../src/ui/dialog/inkscape-preferences.cpp:1102 msgid "If set, relative coordinates may be used in path data" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1103 +#: ../src/ui/dialog/inkscape-preferences.cpp:1104 msgid "Force repeat commands" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1104 +#: ../src/ui/dialog/inkscape-preferences.cpp:1105 msgid "" "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead " "of 'L 1,2 3,4')" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1106 +#: ../src/ui/dialog/inkscape-preferences.cpp:1107 msgid "Numbers" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Numeric precision:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Significant figures of the values written to the SVG file" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "Minimum exponent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "" "The smallest number written to SVG is 10 to the power of this exponent; " "anything smaller is written as zero" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1114 +#: ../src/ui/dialog/inkscape-preferences.cpp:1115 msgid "SVG output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "System default" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Albanian (sq)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Amharic (am)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Arabic (ar)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Armenian (hy)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Azerbaijani (az)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Basque (eu)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Belarusian (be)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bulgarian (bg)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bengali (bn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Breton (br)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Catalan (ca)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Valencian Catalan (ca@valencia)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Chinese/China (zh_CN)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Chinese/Taiwan (zh_TW)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Croatian (hr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Czech (cs)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Danish (da)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dutch (nl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dzongkha (dz)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "German (de)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Greek (el)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English (en)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English/Australia (en_AU)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Canada (en_CA)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Great Britain (en_GB)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "Pig Latin (en_US@piglatin)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Esperanto (eo)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Estonian (et)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Farsi (fa)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Finnish (fi)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "French (fr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Irish (ga)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Galician (gl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hebrew (he)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hungarian (hu)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Indonesian (id)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Italian (it)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Japanese (ja)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Khmer (km)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Kinyarwanda (rw)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Korean (ko)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Lithuanian (lt)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Macedonian (mk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Mongolian (mn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Nepali (ne)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian BokmΓ¥l (nb)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian Nynorsk (nn)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Panjabi (pa)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Polish (pl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese (pt)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese/Brazil (pt_BR)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Romanian (ro)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Russian (ru)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian (sr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian in Latin script (sr@latin)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovak (sk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovenian (sl)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish (es)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish/Mexico (es_MX)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Swedish (sv)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Telugu (te_IN)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Thai (th)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Turkish (tr)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Ukrainian (uk)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Vietnamese (vi)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1163 msgid "Language (requires restart):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1163 +#: ../src/ui/dialog/inkscape-preferences.cpp:1164 msgid "Set the language for menus and number formats" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Large" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Small" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Smaller" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1169 +#: ../src/ui/dialog/inkscape-preferences.cpp:1170 msgid "Toolbox icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Set the size for the tool icons (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/ui/dialog/inkscape-preferences.cpp:1174 msgid "Control bar icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1175 msgid "" "Set the size for the icons in tools' control bars to use (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Secondary toolbar icon size:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1178 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 msgid "" "Set the size for the icons in secondary toolbars to use (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/ui/dialog/inkscape-preferences.cpp:1182 msgid "Work-around color sliders not drawing" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 msgid "" "When on, will attempt to work around bugs in certain GTK themes drawing " "color sliders" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1189 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 msgid "Clear list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "Maximum documents in Open Recent:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1195 +#: ../src/ui/dialog/inkscape-preferences.cpp:1196 msgid "" "Set the maximum length of the Open Recent list in the File menu, or clear " "the list" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1199 msgid "Zoom correction factor (in %):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 +#: ../src/ui/dialog/inkscape-preferences.cpp:1200 msgid "" "Adjust the slider until the length of the ruler on your screen matches its " "real length. This information is used when zooming to 1:1, 1:2, etc., to " "display objects in their true sizes" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Enable dynamic relayout for incomplete sections" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "" "When on, will allow dynamic layout of components that are not completely " "finished being refactored" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "Interface" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +#: ../src/ui/dialog/inkscape-preferences.cpp:1214 msgid "Use current directory for \"Save As ...\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1215 +#: ../src/ui/dialog/inkscape-preferences.cpp:1216 msgid "" "When this option is on, the \"Save as...\" and \"Save a Copy\" dialogs will " "always open in the directory where the currently open document is; when it's " @@ -16882,228 +16944,228 @@ msgid "" msgstr "" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1220 msgid "Enable autosave (requires restart)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1220 +#: ../src/ui/dialog/inkscape-preferences.cpp:1221 msgid "" "Automatically save the current document(s) at a given interval, thus " "minimizing loss in case of a crash" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes):" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes) at which document will be autosaved" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgctxt "Filesystem" msgid "Path:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "The directory where autosaves will be written" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Maximum number of autosaves:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "" "Maximum number of autosaved files; use this to limit the storage space used" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "2x2" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "4x4" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "8x8" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "16x16" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1252 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "Oversample bitmaps:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 +#: ../src/ui/dialog/inkscape-preferences.cpp:1256 msgid "Automatically reload bitmaps" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Automatically reload linked images when file is changed on disk" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1260 msgid "Bitmap editor:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "Resolution for Create Bitmap Copy:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1262 +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 msgid "Resolution used by the Create Bitmap Copy command" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1264 +#: ../src/ui/dialog/inkscape-preferences.cpp:1265 msgid "Bitmaps" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Set the main spell check language" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1320 +#: ../src/ui/dialog/inkscape-preferences.cpp:1321 msgid "Second language:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "" "Set the second spell check language; checking will only stop on words " "unknown in ALL chosen languages" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1324 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Third language:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1325 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "" "Set the third spell check language; checking will only stop on words unknown " "in ALL chosen languages" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1327 +#: ../src/ui/dialog/inkscape-preferences.cpp:1328 msgid "Ignore words with digits" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1329 +#: ../src/ui/dialog/inkscape-preferences.cpp:1330 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1331 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Ignore words in ALL CAPITALS" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1333 +#: ../src/ui/dialog/inkscape-preferences.cpp:1334 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1335 +#: ../src/ui/dialog/inkscape-preferences.cpp:1336 msgid "Spellcheck" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +#: ../src/ui/dialog/inkscape-preferences.cpp:1355 msgid "Add label comments to printing output" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "" "When on, a comment will be added to the raw print output, marking the " "rendered output for an object with its label" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1359 msgid "Prevent sharing of gradient definitions" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1360 +#: ../src/ui/dialog/inkscape-preferences.cpp:1361 msgid "" "When on, shared gradient definitions are automatically forked on change; " "uncheck to allow sharing of gradient definitions so that editing one object " "may affect other objects using the same gradient" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1363 +#: ../src/ui/dialog/inkscape-preferences.cpp:1364 msgid "Simplification threshold:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1364 +#: ../src/ui/dialog/inkscape-preferences.cpp:1365 msgid "" "How strong is the Node tool's Simplify command by default. If you invoke " "this command several times in quick succession, it will act more and more " "aggressively; invoking it again after a pause restores the default threshold." msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "Latency skew:" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1368 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 msgid "" "Factor by which the event clock is skewed from the actual time (0.9766 on " "some systems)" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1370 +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgid "Pre-render named icons" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1372 +#: ../src/ui/dialog/inkscape-preferences.cpp:1373 msgid "" "When on, named icons will be rendered before displaying the ui. This is for " "working around bugs in GTK+ named icon notification" msgstr "" #. TRANSLATORS: following strings are paths in Inkscape preferences - Misc - System info -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 +#: ../src/ui/dialog/inkscape-preferences.cpp:1379 msgid "User config: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1382 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 msgid "User data: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1386 +#: ../src/ui/dialog/inkscape-preferences.cpp:1387 msgid "User cache: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1390 +#: ../src/ui/dialog/inkscape-preferences.cpp:1391 msgid "System config: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 msgid "System data: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1397 msgid "PIXMAP: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1401 msgid "DATA: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "UI: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1414 msgid "Icon theme: " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "System info" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "General system information" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 +#: ../src/ui/dialog/inkscape-preferences.cpp:1431 msgid "Misc" msgstr "" @@ -17837,8 +17899,8 @@ msgstr "" #. # end multiple scan #. ## end mode page -#: ../src/ui/dialog/tracedialog.cpp:563 ../src/widgets/toolbox.cpp:4502 -#: ../src/widgets/toolbox.cpp:4760 +#: ../src/ui/dialog/tracedialog.cpp:563 ../src/widgets/toolbox.cpp:4520 +#: ../src/widgets/toolbox.cpp:4778 msgid "Mode" msgstr "" @@ -18809,13 +18871,13 @@ msgid "No stroke" msgstr "" #: ../src/ui/widget/selected-style.cpp:167 -#: ../src/ui/widget/style-swatch.cpp:277 ../src/widgets/paint-selector.cpp:237 +#: ../src/ui/widget/style-swatch.cpp:277 ../src/widgets/paint-selector.cpp:233 msgid "Pattern" msgstr "" #: ../src/ui/widget/selected-style.cpp:170 #: ../src/ui/widget/style-swatch.cpp:279 -#: ../src/widgets/paint-selector.cpp:1025 +#: ../src/widgets/paint-selector.cpp:1021 msgid "Pattern fill" msgstr "" @@ -18939,7 +19001,7 @@ msgid "White" msgstr "" #: ../src/ui/widget/selected-style.cpp:237 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/widgets/sp-color-icc-selector.cpp:232 #: ../src/widgets/sp-color-scales.cpp:466 #: ../src/widgets/sp-color-scales.cpp:467 msgid "Black" @@ -21194,17 +21256,17 @@ msgid "Set pattern on stroke" msgstr "" #. Family frame -#: ../src/widgets/font-selector.cpp:150 +#: ../src/widgets/font-selector.cpp:143 msgid "Font family" msgstr "" #. Style frame -#: ../src/widgets/font-selector.cpp:181 +#: ../src/widgets/font-selector.cpp:174 msgctxt "Font selector" msgid "Style" msgstr "" -#: ../src/widgets/font-selector.cpp:219 ../share/extensions/dots.inx.h:2 +#: ../src/widgets/font-selector.cpp:212 ../share/extensions/dots.inx.h:2 msgid "Font size:" msgstr "" @@ -21253,11 +21315,11 @@ msgstr "" msgid "Edit the stops of the gradient" msgstr "" -#: ../src/widgets/gradient-toolbar.cpp:543 ../src/widgets/toolbox.cpp:2899 -#: ../src/widgets/toolbox.cpp:2979 ../src/widgets/toolbox.cpp:3303 -#: ../src/widgets/toolbox.cpp:3341 ../src/widgets/toolbox.cpp:3959 -#: ../src/widgets/toolbox.cpp:3983 ../src/widgets/toolbox.cpp:5607 -#: ../src/widgets/toolbox.cpp:5636 +#: ../src/widgets/gradient-toolbar.cpp:543 ../src/widgets/toolbox.cpp:2917 +#: ../src/widgets/toolbox.cpp:2997 ../src/widgets/toolbox.cpp:3321 +#: ../src/widgets/toolbox.cpp:3359 ../src/widgets/toolbox.cpp:3977 +#: ../src/widgets/toolbox.cpp:4001 ../src/widgets/toolbox.cpp:5625 +#: ../src/widgets/toolbox.cpp:5654 msgid "<b>New:</b>" msgstr "" @@ -21284,15 +21346,15 @@ msgstr "" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("<b>Average:</b>")); -#: ../src/widgets/gradient-toolbar.cpp:622 ../src/widgets/toolbox.cpp:2901 -#: ../src/widgets/toolbox.cpp:3311 ../src/widgets/toolbox.cpp:3329 -#: ../src/widgets/toolbox.cpp:3961 ../src/widgets/toolbox.cpp:3972 -#: ../src/widgets/toolbox.cpp:5610 ../src/widgets/toolbox.cpp:5621 +#: ../src/widgets/gradient-toolbar.cpp:622 ../src/widgets/toolbox.cpp:2919 +#: ../src/widgets/toolbox.cpp:3329 ../src/widgets/toolbox.cpp:3347 +#: ../src/widgets/toolbox.cpp:3979 ../src/widgets/toolbox.cpp:3990 +#: ../src/widgets/toolbox.cpp:5628 ../src/widgets/toolbox.cpp:5639 msgid "<b>Change:</b>" msgstr "" #: ../src/widgets/gradient-vector.cpp:275 -#: ../src/widgets/paint-selector.cpp:912 ../src/widgets/stroke-style.cpp:421 +#: ../src/widgets/paint-selector.cpp:908 ../src/widgets/stroke-style.cpp:421 msgid "No document selected" msgstr "" @@ -21308,233 +21370,233 @@ msgstr "" msgid "No stops in gradient" msgstr "" -#: ../src/widgets/gradient-vector.cpp:667 +#: ../src/widgets/gradient-vector.cpp:666 msgid "Change gradient stop offset" msgstr "" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:806 +#: ../src/widgets/gradient-vector.cpp:805 msgid "Add stop" msgstr "" -#: ../src/widgets/gradient-vector.cpp:809 +#: ../src/widgets/gradient-vector.cpp:808 msgid "Add another control stop to gradient" msgstr "" -#: ../src/widgets/gradient-vector.cpp:811 +#: ../src/widgets/gradient-vector.cpp:810 msgid "Delete stop" msgstr "" -#: ../src/widgets/gradient-vector.cpp:814 +#: ../src/widgets/gradient-vector.cpp:813 msgid "Delete current control stop from gradient" msgstr "" #. TRANSLATORS: "Stop" means: a "phase" of a gradient -#: ../src/widgets/gradient-vector.cpp:870 +#: ../src/widgets/gradient-vector.cpp:869 msgid "Stop Color" msgstr "" -#: ../src/widgets/gradient-vector.cpp:900 +#: ../src/widgets/gradient-vector.cpp:899 msgid "Gradient editor" msgstr "" -#: ../src/widgets/gradient-vector.cpp:1188 +#: ../src/widgets/gradient-vector.cpp:1187 msgid "Change gradient stop color" msgstr "" -#: ../src/widgets/paint-selector.cpp:229 ../src/widgets/paint-selector.cpp:612 +#: ../src/widgets/paint-selector.cpp:225 ../src/widgets/paint-selector.cpp:608 msgid "No paint" msgstr "" -#: ../src/widgets/paint-selector.cpp:231 ../src/widgets/paint-selector.cpp:676 +#: ../src/widgets/paint-selector.cpp:227 ../src/widgets/paint-selector.cpp:672 msgid "Flat color" msgstr "" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:233 ../src/widgets/paint-selector.cpp:739 +#: ../src/widgets/paint-selector.cpp:229 ../src/widgets/paint-selector.cpp:735 msgid "Linear gradient" msgstr "" -#: ../src/widgets/paint-selector.cpp:235 ../src/widgets/paint-selector.cpp:742 +#: ../src/widgets/paint-selector.cpp:231 ../src/widgets/paint-selector.cpp:738 msgid "Radial gradient" msgstr "" -#: ../src/widgets/paint-selector.cpp:239 +#: ../src/widgets/paint-selector.cpp:235 msgid "Swatch" msgstr "" -#: ../src/widgets/paint-selector.cpp:241 +#: ../src/widgets/paint-selector.cpp:237 msgid "Unset paint (make it undefined so it can be inherited)" msgstr "" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:253 +#: ../src/widgets/paint-selector.cpp:249 msgid "" "Any path self-intersections or subpaths create holes in the fill (fill-rule: " "evenodd)" msgstr "" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:264 +#: ../src/widgets/paint-selector.cpp:260 msgid "" "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" msgstr "" -#: ../src/widgets/paint-selector.cpp:579 +#: ../src/widgets/paint-selector.cpp:575 msgid "No objects" msgstr "" -#: ../src/widgets/paint-selector.cpp:590 +#: ../src/widgets/paint-selector.cpp:586 msgid "Multiple styles" msgstr "" -#: ../src/widgets/paint-selector.cpp:601 +#: ../src/widgets/paint-selector.cpp:597 msgid "Paint is undefined" msgstr "" -#: ../src/widgets/paint-selector.cpp:1012 +#: ../src/widgets/paint-selector.cpp:1008 msgid "" "Use the <b>Node tool</b> to adjust position, scale, and rotation of the " "pattern on canvas. Use <b>Object > Pattern > Objects to Pattern</b> to " "create a new pattern from selection." msgstr "" -#: ../src/widgets/paint-selector.cpp:1100 +#: ../src/widgets/paint-selector.cpp:1096 msgid "Swatch fill" msgstr "" -#: ../src/widgets/select-toolbar.cpp:249 +#: ../src/widgets/select-toolbar.cpp:256 msgid "Transform by toolbar" msgstr "" -#: ../src/widgets/select-toolbar.cpp:322 +#: ../src/widgets/select-toolbar.cpp:329 msgid "Now <b>stroke width</b> is <b>scaled</b> when objects are scaled." msgstr "" -#: ../src/widgets/select-toolbar.cpp:324 +#: ../src/widgets/select-toolbar.cpp:331 msgid "Now <b>stroke width</b> is <b>not scaled</b> when objects are scaled." msgstr "" -#: ../src/widgets/select-toolbar.cpp:335 +#: ../src/widgets/select-toolbar.cpp:342 msgid "" "Now <b>rounded rectangle corners</b> are <b>scaled</b> when rectangles are " "scaled." msgstr "" -#: ../src/widgets/select-toolbar.cpp:337 +#: ../src/widgets/select-toolbar.cpp:344 msgid "" "Now <b>rounded rectangle corners</b> are <b>not scaled</b> when rectangles " "are scaled." msgstr "" -#: ../src/widgets/select-toolbar.cpp:348 +#: ../src/widgets/select-toolbar.cpp:355 msgid "" "Now <b>gradients</b> are <b>transformed</b> along with their objects when " "those are transformed (moved, scaled, rotated, or skewed)." msgstr "" -#: ../src/widgets/select-toolbar.cpp:350 +#: ../src/widgets/select-toolbar.cpp:357 msgid "" "Now <b>gradients</b> remain <b>fixed</b> when objects are transformed " "(moved, scaled, rotated, or skewed)." msgstr "" -#: ../src/widgets/select-toolbar.cpp:361 +#: ../src/widgets/select-toolbar.cpp:368 msgid "" "Now <b>patterns</b> are <b>transformed</b> along with their objects when " "those are transformed (moved, scaled, rotated, or skewed)." msgstr "" -#: ../src/widgets/select-toolbar.cpp:363 +#: ../src/widgets/select-toolbar.cpp:370 msgid "" "Now <b>patterns</b> remain <b>fixed</b> when objects are transformed (moved, " "scaled, rotated, or skewed)." msgstr "" #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X position" msgstr "" -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X:" msgstr "" -#: ../src/widgets/select-toolbar.cpp:478 +#: ../src/widgets/select-toolbar.cpp:485 msgid "Horizontal coordinate of selection" msgstr "" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y position" msgstr "" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y:" msgstr "" -#: ../src/widgets/select-toolbar.cpp:484 +#: ../src/widgets/select-toolbar.cpp:491 msgid "Vertical coordinate of selection" msgstr "" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "Width" msgstr "" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "W:" msgstr "" -#: ../src/widgets/select-toolbar.cpp:490 +#: ../src/widgets/select-toolbar.cpp:497 msgid "Width of selection" msgstr "" -#: ../src/widgets/select-toolbar.cpp:497 +#: ../src/widgets/select-toolbar.cpp:504 msgid "Lock width and height" msgstr "" -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:505 msgid "When locked, change both width and height by the same proportion" msgstr "" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "Height" msgstr "" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "H:" msgstr "" -#: ../src/widgets/select-toolbar.cpp:509 +#: ../src/widgets/select-toolbar.cpp:516 msgid "Height of selection" msgstr "" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "Affect:" msgstr "" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "" "Control whether or not to scale stroke widths, scale rectangle corners, " "transform gradient fills, and transform pattern fills with the object" msgstr "" -#: ../src/widgets/select-toolbar.cpp:565 +#: ../src/widgets/select-toolbar.cpp:572 msgid "Scale rounded corners" msgstr "" -#: ../src/widgets/select-toolbar.cpp:576 +#: ../src/widgets/select-toolbar.cpp:583 msgid "Move gradients" msgstr "" -#: ../src/widgets/select-toolbar.cpp:587 +#: ../src/widgets/select-toolbar.cpp:594 msgid "Move patterns" msgstr "" @@ -21542,95 +21604,95 @@ msgstr "" msgid "System" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:105 +#: ../src/widgets/sp-color-icc-selector.cpp:106 msgid "CMS" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:402 msgid "_R:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:213 #: ../src/widgets/sp-color-icc-selector.cpp:214 +#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-scales.cpp:405 msgid "_G:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:408 msgid "_B:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:428 msgid "_H:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:431 msgid "_S:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:434 msgid "_L:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:456 msgid "_C:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:459 msgid "_M:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:217 +#: ../src/widgets/sp-color-icc-selector.cpp:218 #: ../src/widgets/sp-color-scales.cpp:465 msgid "_K:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/widgets/sp-color-icc-selector.cpp:229 msgid "Gray" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:457 #: ../src/widgets/sp-color-scales.cpp:458 msgid "Cyan" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:460 #: ../src/widgets/sp-color-scales.cpp:461 msgid "Magenta" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:463 #: ../src/widgets/sp-color-scales.cpp:464 msgid "Yellow" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:287 +#: ../src/widgets/sp-color-icc-selector.cpp:294 msgid "Fix" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:290 +#: ../src/widgets/sp-color-icc-selector.cpp:297 msgid "Fix RGB fallback to match icc-color() value." msgstr "" #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:371 +#: ../src/widgets/sp-color-icc-selector.cpp:378 #: ../src/widgets/sp-color-scales.cpp:411 #: ../src/widgets/sp-color-scales.cpp:437 #: ../src/widgets/sp-color-scales.cpp:468 @@ -21638,8 +21700,8 @@ msgstr "" msgid "_A:" msgstr "" -#: ../src/widgets/sp-color-icc-selector.cpp:381 -#: ../src/widgets/sp-color-icc-selector.cpp:393 +#: ../src/widgets/sp-color-icc-selector.cpp:388 +#: ../src/widgets/sp-color-icc-selector.cpp:400 #: ../src/widgets/sp-color-scales.cpp:412 #: ../src/widgets/sp-color-scales.cpp:413 #: ../src/widgets/sp-color-scales.cpp:438 @@ -21651,24 +21713,24 @@ msgstr "" msgid "Alpha (opacity)" msgstr "" -#: ../src/widgets/sp-color-notebook.cpp:337 +#: ../src/widgets/sp-color-notebook.cpp:339 msgid "Color Managed" msgstr "" -#: ../src/widgets/sp-color-notebook.cpp:344 +#: ../src/widgets/sp-color-notebook.cpp:346 msgid "Out of gamut!" msgstr "" -#: ../src/widgets/sp-color-notebook.cpp:351 +#: ../src/widgets/sp-color-notebook.cpp:353 msgid "Too much ink!" msgstr "" #. Create RGBA entry and color preview -#: ../src/widgets/sp-color-notebook.cpp:358 +#: ../src/widgets/sp-color-notebook.cpp:360 msgid "RGBA_:" msgstr "" -#: ../src/widgets/sp-color-notebook.cpp:366 +#: ../src/widgets/sp-color-notebook.cpp:368 msgid "Hexadecimal RGBA value of the color" msgstr "" @@ -22009,7 +22071,7 @@ msgstr "" msgid "Y coordinate of selected node(s)" msgstr "" -#: ../src/widgets/toolbox.cpp:1667 ../src/widgets/toolbox.cpp:7607 +#: ../src/widgets/toolbox.cpp:1667 ../src/widgets/toolbox.cpp:7625 msgid "Font Size" msgstr "" @@ -22025,1410 +22087,1418 @@ msgstr "" msgid "The units to be used for the measurements" msgstr "" -#: ../src/widgets/toolbox.cpp:2281 +#: ../src/widgets/toolbox.cpp:2286 msgid "Bounding box" msgstr "" -#: ../src/widgets/toolbox.cpp:2281 +#: ../src/widgets/toolbox.cpp:2286 msgid "Snap bounding box corners" msgstr "" -#: ../src/widgets/toolbox.cpp:2290 +#: ../src/widgets/toolbox.cpp:2295 msgid "Bounding box edges" msgstr "" -#: ../src/widgets/toolbox.cpp:2290 +#: ../src/widgets/toolbox.cpp:2295 msgid "Snap to edges of a bounding box" msgstr "" -#: ../src/widgets/toolbox.cpp:2299 +#: ../src/widgets/toolbox.cpp:2304 msgid "Bounding box corners" msgstr "" -#: ../src/widgets/toolbox.cpp:2299 +#: ../src/widgets/toolbox.cpp:2304 msgid "Snap to bounding box corners" msgstr "" -#: ../src/widgets/toolbox.cpp:2308 +#: ../src/widgets/toolbox.cpp:2313 msgid "BBox Edge Midpoints" msgstr "" -#: ../src/widgets/toolbox.cpp:2308 +#: ../src/widgets/toolbox.cpp:2313 msgid "Snap from and to midpoints of bounding box edges" msgstr "" -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2323 msgid "BBox Centers" msgstr "" -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2323 msgid "Snapping from and to centers of bounding boxes" msgstr "" -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2332 msgid "Snap nodes or handles" msgstr "" -#: ../src/widgets/toolbox.cpp:2335 +#: ../src/widgets/toolbox.cpp:2340 msgid "Snap to paths" msgstr "" -#: ../src/widgets/toolbox.cpp:2344 +#: ../src/widgets/toolbox.cpp:2349 msgid "Path intersections" msgstr "" -#: ../src/widgets/toolbox.cpp:2344 +#: ../src/widgets/toolbox.cpp:2349 msgid "Snap to path intersections" msgstr "" -#: ../src/widgets/toolbox.cpp:2353 +#: ../src/widgets/toolbox.cpp:2358 msgid "To nodes" msgstr "" -#: ../src/widgets/toolbox.cpp:2353 +#: ../src/widgets/toolbox.cpp:2358 msgid "Snap to cusp nodes" msgstr "" -#: ../src/widgets/toolbox.cpp:2362 +#: ../src/widgets/toolbox.cpp:2367 msgid "Smooth nodes" msgstr "" -#: ../src/widgets/toolbox.cpp:2362 +#: ../src/widgets/toolbox.cpp:2367 msgid "Snap to smooth nodes" msgstr "" -#: ../src/widgets/toolbox.cpp:2371 +#: ../src/widgets/toolbox.cpp:2376 msgid "Line Midpoints" msgstr "" -#: ../src/widgets/toolbox.cpp:2371 +#: ../src/widgets/toolbox.cpp:2376 msgid "Snap from and to midpoints of line segments" msgstr "" -#: ../src/widgets/toolbox.cpp:2380 +#: ../src/widgets/toolbox.cpp:2385 msgid "Others" msgstr "" -#: ../src/widgets/toolbox.cpp:2380 +#: ../src/widgets/toolbox.cpp:2385 msgid "Snap other points (centers, guide origins, gradient handles, etc.)" msgstr "" -#: ../src/widgets/toolbox.cpp:2388 +#: ../src/widgets/toolbox.cpp:2393 msgid "Object Centers" msgstr "" -#: ../src/widgets/toolbox.cpp:2388 +#: ../src/widgets/toolbox.cpp:2393 msgid "Snap from and to centers of objects" msgstr "" -#: ../src/widgets/toolbox.cpp:2397 +#: ../src/widgets/toolbox.cpp:2402 msgid "Rotation Centers" msgstr "" -#: ../src/widgets/toolbox.cpp:2397 +#: ../src/widgets/toolbox.cpp:2402 msgid "Snap from and to an item's rotation center" msgstr "" -#: ../src/widgets/toolbox.cpp:2406 +#: ../src/widgets/toolbox.cpp:2411 +msgid "Text baseline" +msgstr "" + +#: ../src/widgets/toolbox.cpp:2411 +msgid "Snap from and to text anchors and baselines" +msgstr "" + +#: ../src/widgets/toolbox.cpp:2421 msgid "Page border" msgstr "" -#: ../src/widgets/toolbox.cpp:2406 +#: ../src/widgets/toolbox.cpp:2421 msgid "Snap to the page border" msgstr "" -#: ../src/widgets/toolbox.cpp:2415 +#: ../src/widgets/toolbox.cpp:2430 msgid "Snap to grids" msgstr "" -#: ../src/widgets/toolbox.cpp:2424 +#: ../src/widgets/toolbox.cpp:2439 msgid "Snap to guides" msgstr "" -#: ../src/widgets/toolbox.cpp:2634 +#: ../src/widgets/toolbox.cpp:2652 msgid "Star: Change number of corners" msgstr "" -#: ../src/widgets/toolbox.cpp:2682 +#: ../src/widgets/toolbox.cpp:2700 msgid "Star: Change spoke ratio" msgstr "" -#: ../src/widgets/toolbox.cpp:2727 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make polygon" msgstr "" -#: ../src/widgets/toolbox.cpp:2727 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make star" msgstr "" -#: ../src/widgets/toolbox.cpp:2765 +#: ../src/widgets/toolbox.cpp:2783 msgid "Star: Change rounding" msgstr "" -#: ../src/widgets/toolbox.cpp:2803 +#: ../src/widgets/toolbox.cpp:2821 msgid "Star: Change randomization" msgstr "" -#: ../src/widgets/toolbox.cpp:2998 +#: ../src/widgets/toolbox.cpp:3016 msgid "Regular polygon (with one handle) instead of a star" msgstr "" -#: ../src/widgets/toolbox.cpp:3005 +#: ../src/widgets/toolbox.cpp:3023 msgid "Star instead of a regular polygon (with one handle)" msgstr "" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "triangle/tri-star" msgstr "" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "square/quad-star" msgstr "" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "pentagon/five-pointed star" msgstr "" -#: ../src/widgets/toolbox.cpp:3026 +#: ../src/widgets/toolbox.cpp:3044 msgid "hexagon/six-pointed star" msgstr "" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners" msgstr "" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners:" msgstr "" -#: ../src/widgets/toolbox.cpp:3029 +#: ../src/widgets/toolbox.cpp:3047 msgid "Number of corners of a polygon or star" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "thin-ray star" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "pentagram" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "hexagram" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "heptagram" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "octagram" msgstr "" -#: ../src/widgets/toolbox.cpp:3042 +#: ../src/widgets/toolbox.cpp:3060 msgid "regular polygon" msgstr "" -#: ../src/widgets/toolbox.cpp:3045 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio" msgstr "" -#: ../src/widgets/toolbox.cpp:3045 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio:" msgstr "" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/toolbox.cpp:3048 +#: ../src/widgets/toolbox.cpp:3066 msgid "Base radius to tip radius ratio" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "stretched" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "twisted" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly pinched" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "NOT rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "visibly rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "well rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 +#: ../src/widgets/toolbox.cpp:3084 msgid "amply rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3066 ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3084 ../src/widgets/toolbox.cpp:3099 msgid "blown up" msgstr "" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded:" msgstr "" -#: ../src/widgets/toolbox.cpp:3069 +#: ../src/widgets/toolbox.cpp:3087 msgid "How much rounded are the corners (0 for sharp)" msgstr "" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "NOT randomized" msgstr "" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "slightly irregular" msgstr "" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "visibly randomized" msgstr "" -#: ../src/widgets/toolbox.cpp:3081 +#: ../src/widgets/toolbox.cpp:3099 msgid "strongly randomized" msgstr "" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized" msgstr "" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized:" msgstr "" -#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3102 msgid "Scatter randomly the corners and angles" msgstr "" -#: ../src/widgets/toolbox.cpp:3099 ../src/widgets/toolbox.cpp:4034 -#: ../src/widgets/toolbox.cpp:4289 ../src/widgets/toolbox.cpp:8586 +#: ../src/widgets/toolbox.cpp:3117 ../src/widgets/toolbox.cpp:4052 +#: ../src/widgets/toolbox.cpp:4307 ../src/widgets/toolbox.cpp:8604 msgid "Defaults" msgstr "" -#: ../src/widgets/toolbox.cpp:3100 ../src/widgets/toolbox.cpp:4035 +#: ../src/widgets/toolbox.cpp:3118 ../src/widgets/toolbox.cpp:4053 msgid "" "Reset shape parameters to defaults (use Inkscape Preferences > Tools to " "change defaults)" msgstr "" -#: ../src/widgets/toolbox.cpp:3172 +#: ../src/widgets/toolbox.cpp:3190 msgid "Change rectangle" msgstr "" -#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3377 msgid "W:" msgstr "" -#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3377 msgid "Width of rectangle" msgstr "" -#: ../src/widgets/toolbox.cpp:3376 +#: ../src/widgets/toolbox.cpp:3394 msgid "H:" msgstr "" -#: ../src/widgets/toolbox.cpp:3376 +#: ../src/widgets/toolbox.cpp:3394 msgid "Height of rectangle" msgstr "" -#: ../src/widgets/toolbox.cpp:3390 ../src/widgets/toolbox.cpp:3405 +#: ../src/widgets/toolbox.cpp:3408 ../src/widgets/toolbox.cpp:3423 msgid "not rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius" msgstr "" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Rx:" msgstr "" -#: ../src/widgets/toolbox.cpp:3393 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius of rounded corners" msgstr "" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius" msgstr "" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Ry:" msgstr "" -#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius of rounded corners" msgstr "" -#: ../src/widgets/toolbox.cpp:3427 +#: ../src/widgets/toolbox.cpp:3445 msgid "Not rounded" msgstr "" -#: ../src/widgets/toolbox.cpp:3428 +#: ../src/widgets/toolbox.cpp:3446 msgid "Make corners sharp" msgstr "" #. TODO: use the correct axis here, too -#: ../src/widgets/toolbox.cpp:3623 +#: ../src/widgets/toolbox.cpp:3641 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "" -#: ../src/widgets/toolbox.cpp:3690 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle in X direction" msgstr "" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3692 +#: ../src/widgets/toolbox.cpp:3710 msgid "Angle of PLs in X direction" msgstr "" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3714 +#: ../src/widgets/toolbox.cpp:3732 msgid "State of VP in X direction" msgstr "" -#: ../src/widgets/toolbox.cpp:3715 +#: ../src/widgets/toolbox.cpp:3733 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" msgstr "" -#: ../src/widgets/toolbox.cpp:3730 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle in Y direction" msgstr "" -#: ../src/widgets/toolbox.cpp:3730 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle Y:" msgstr "" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3732 +#: ../src/widgets/toolbox.cpp:3750 msgid "Angle of PLs in Y direction" msgstr "" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3753 +#: ../src/widgets/toolbox.cpp:3771 msgid "State of VP in Y direction" msgstr "" -#: ../src/widgets/toolbox.cpp:3754 +#: ../src/widgets/toolbox.cpp:3772 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" msgstr "" -#: ../src/widgets/toolbox.cpp:3769 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle in Z direction" msgstr "" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3771 +#: ../src/widgets/toolbox.cpp:3789 msgid "Angle of PLs in Z direction" msgstr "" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3792 +#: ../src/widgets/toolbox.cpp:3810 msgid "State of VP in Z direction" msgstr "" -#: ../src/widgets/toolbox.cpp:3793 +#: ../src/widgets/toolbox.cpp:3811 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" msgstr "" -#: ../src/widgets/toolbox.cpp:3851 +#: ../src/widgets/toolbox.cpp:3869 msgid "Change spiral" msgstr "" -#: ../src/widgets/toolbox.cpp:3991 +#: ../src/widgets/toolbox.cpp:4009 msgid "just a curve" msgstr "" -#: ../src/widgets/toolbox.cpp:3991 +#: ../src/widgets/toolbox.cpp:4009 msgid "one full revolution" msgstr "" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of turns" msgstr "" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Turns:" msgstr "" -#: ../src/widgets/toolbox.cpp:3994 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of revolutions" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "circle" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is much denser" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is denser" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "even" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is denser" msgstr "" -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is much denser" msgstr "" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence" msgstr "" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence:" msgstr "" -#: ../src/widgets/toolbox.cpp:4008 +#: ../src/widgets/toolbox.cpp:4026 msgid "How much denser/sparser are outer revolutions; 1 = uniform" msgstr "" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts from center" msgstr "" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts mid-way" msgstr "" -#: ../src/widgets/toolbox.cpp:4019 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts near edge" msgstr "" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius" msgstr "" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius:" msgstr "" -#: ../src/widgets/toolbox.cpp:4022 +#: ../src/widgets/toolbox.cpp:4040 msgid "Radius of the innermost revolution (relative to the spiral size)" msgstr "" -#: ../src/widgets/toolbox.cpp:4094 +#: ../src/widgets/toolbox.cpp:4112 msgid "Bezier" msgstr "" -#: ../src/widgets/toolbox.cpp:4095 +#: ../src/widgets/toolbox.cpp:4113 msgid "Create regular Bezier path" msgstr "" -#: ../src/widgets/toolbox.cpp:4101 +#: ../src/widgets/toolbox.cpp:4119 msgid "Spiro" msgstr "" -#: ../src/widgets/toolbox.cpp:4102 +#: ../src/widgets/toolbox.cpp:4120 msgid "Create Spiro path" msgstr "" -#: ../src/widgets/toolbox.cpp:4109 +#: ../src/widgets/toolbox.cpp:4127 msgid "Zigzag" msgstr "" -#: ../src/widgets/toolbox.cpp:4110 +#: ../src/widgets/toolbox.cpp:4128 msgid "Create a sequence of straight line segments" msgstr "" -#: ../src/widgets/toolbox.cpp:4116 +#: ../src/widgets/toolbox.cpp:4134 msgid "Paraxial" msgstr "" -#: ../src/widgets/toolbox.cpp:4117 +#: ../src/widgets/toolbox.cpp:4135 msgid "Create a sequence of paraxial line segments" msgstr "" -#: ../src/widgets/toolbox.cpp:4125 +#: ../src/widgets/toolbox.cpp:4143 msgid "Mode of new lines drawn by this tool" msgstr "" -#: ../src/widgets/toolbox.cpp:4154 +#: ../src/widgets/toolbox.cpp:4172 msgid "Triangle in" msgstr "" -#: ../src/widgets/toolbox.cpp:4155 +#: ../src/widgets/toolbox.cpp:4173 msgid "Triangle out" msgstr "" -#: ../src/widgets/toolbox.cpp:4157 +#: ../src/widgets/toolbox.cpp:4175 msgid "From clipboard" msgstr "" -#: ../src/widgets/toolbox.cpp:4182 ../src/widgets/toolbox.cpp:4183 +#: ../src/widgets/toolbox.cpp:4200 ../src/widgets/toolbox.cpp:4201 msgid "Shape:" msgstr "" -#: ../src/widgets/toolbox.cpp:4182 +#: ../src/widgets/toolbox.cpp:4200 msgid "Shape of new paths drawn by this tool" msgstr "" -#: ../src/widgets/toolbox.cpp:4266 +#: ../src/widgets/toolbox.cpp:4284 msgid "(many nodes, rough)" msgstr "" #. Mean #. Rotation #. Scale -#: ../src/widgets/toolbox.cpp:4266 ../src/widgets/toolbox.cpp:4374 -#: ../src/widgets/toolbox.cpp:4391 ../src/widgets/toolbox.cpp:4599 -#: ../src/widgets/toolbox.cpp:4688 ../src/widgets/toolbox.cpp:4704 -#: ../src/widgets/toolbox.cpp:4720 ../src/widgets/toolbox.cpp:4780 -#: ../src/widgets/toolbox.cpp:4810 ../src/widgets/toolbox.cpp:4828 -#: ../src/widgets/toolbox.cpp:5183 ../src/widgets/toolbox.cpp:5216 -#: ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:4284 ../src/widgets/toolbox.cpp:4392 +#: ../src/widgets/toolbox.cpp:4409 ../src/widgets/toolbox.cpp:4617 +#: ../src/widgets/toolbox.cpp:4706 ../src/widgets/toolbox.cpp:4722 +#: ../src/widgets/toolbox.cpp:4738 ../src/widgets/toolbox.cpp:4798 +#: ../src/widgets/toolbox.cpp:4828 ../src/widgets/toolbox.cpp:4846 +#: ../src/widgets/toolbox.cpp:5201 ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:6263 msgid "(default)" msgstr "" -#: ../src/widgets/toolbox.cpp:4266 +#: ../src/widgets/toolbox.cpp:4284 msgid "(few nodes, smooth)" msgstr "" -#: ../src/widgets/toolbox.cpp:4269 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing:" msgstr "" -#: ../src/widgets/toolbox.cpp:4269 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing: " msgstr "" -#: ../src/widgets/toolbox.cpp:4270 +#: ../src/widgets/toolbox.cpp:4288 msgid "How much smoothing (simplifying) is applied to the line" msgstr "" -#: ../src/widgets/toolbox.cpp:4290 +#: ../src/widgets/toolbox.cpp:4308 msgid "" "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to " "change defaults)" msgstr "" #. Width -#: ../src/widgets/toolbox.cpp:4374 +#: ../src/widgets/toolbox.cpp:4392 msgid "(pinch tweak)" msgstr "" -#: ../src/widgets/toolbox.cpp:4374 +#: ../src/widgets/toolbox.cpp:4392 msgid "(broad tweak)" msgstr "" -#: ../src/widgets/toolbox.cpp:4377 +#: ../src/widgets/toolbox.cpp:4395 msgid "The width of the tweak area (relative to the visible canvas area)" msgstr "" #. Force -#: ../src/widgets/toolbox.cpp:4391 +#: ../src/widgets/toolbox.cpp:4409 msgid "(minimum force)" msgstr "" -#: ../src/widgets/toolbox.cpp:4391 +#: ../src/widgets/toolbox.cpp:4409 msgid "(maximum force)" msgstr "" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force" msgstr "" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force:" msgstr "" -#: ../src/widgets/toolbox.cpp:4394 +#: ../src/widgets/toolbox.cpp:4412 msgid "The force of the tweak action" msgstr "" -#: ../src/widgets/toolbox.cpp:4412 +#: ../src/widgets/toolbox.cpp:4430 msgid "Move mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4413 +#: ../src/widgets/toolbox.cpp:4431 msgid "Move objects in any direction" msgstr "" -#: ../src/widgets/toolbox.cpp:4419 +#: ../src/widgets/toolbox.cpp:4437 msgid "Move in/out mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4420 +#: ../src/widgets/toolbox.cpp:4438 msgid "Move objects towards cursor; with Shift from cursor" msgstr "" -#: ../src/widgets/toolbox.cpp:4426 +#: ../src/widgets/toolbox.cpp:4444 msgid "Move jitter mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4427 +#: ../src/widgets/toolbox.cpp:4445 msgid "Move objects in random directions" msgstr "" -#: ../src/widgets/toolbox.cpp:4433 +#: ../src/widgets/toolbox.cpp:4451 msgid "Scale mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4434 +#: ../src/widgets/toolbox.cpp:4452 msgid "Shrink objects, with Shift enlarge" msgstr "" -#: ../src/widgets/toolbox.cpp:4440 +#: ../src/widgets/toolbox.cpp:4458 msgid "Rotate mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4441 +#: ../src/widgets/toolbox.cpp:4459 msgid "Rotate objects, with Shift counterclockwise" msgstr "" -#: ../src/widgets/toolbox.cpp:4447 +#: ../src/widgets/toolbox.cpp:4465 msgid "Duplicate/delete mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4448 +#: ../src/widgets/toolbox.cpp:4466 msgid "Duplicate objects, with Shift delete" msgstr "" -#: ../src/widgets/toolbox.cpp:4454 +#: ../src/widgets/toolbox.cpp:4472 msgid "Push mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4455 +#: ../src/widgets/toolbox.cpp:4473 msgid "Push parts of paths in any direction" msgstr "" -#: ../src/widgets/toolbox.cpp:4461 +#: ../src/widgets/toolbox.cpp:4479 msgid "Shrink/grow mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4462 +#: ../src/widgets/toolbox.cpp:4480 msgid "Shrink (inset) parts of paths; with Shift grow (outset)" msgstr "" -#: ../src/widgets/toolbox.cpp:4468 +#: ../src/widgets/toolbox.cpp:4486 msgid "Attract/repel mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4469 +#: ../src/widgets/toolbox.cpp:4487 msgid "Attract parts of paths towards cursor; with Shift from cursor" msgstr "" -#: ../src/widgets/toolbox.cpp:4475 +#: ../src/widgets/toolbox.cpp:4493 msgid "Roughen mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4476 +#: ../src/widgets/toolbox.cpp:4494 msgid "Roughen parts of paths" msgstr "" -#: ../src/widgets/toolbox.cpp:4482 +#: ../src/widgets/toolbox.cpp:4500 msgid "Color paint mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4483 +#: ../src/widgets/toolbox.cpp:4501 msgid "Paint the tool's color upon selected objects" msgstr "" -#: ../src/widgets/toolbox.cpp:4489 +#: ../src/widgets/toolbox.cpp:4507 msgid "Color jitter mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4490 +#: ../src/widgets/toolbox.cpp:4508 msgid "Jitter the colors of selected objects" msgstr "" -#: ../src/widgets/toolbox.cpp:4496 +#: ../src/widgets/toolbox.cpp:4514 msgid "Blur mode" msgstr "" -#: ../src/widgets/toolbox.cpp:4497 +#: ../src/widgets/toolbox.cpp:4515 msgid "Blur selected objects more; with Shift, blur less" msgstr "" -#: ../src/widgets/toolbox.cpp:4524 +#: ../src/widgets/toolbox.cpp:4542 msgid "Channels:" msgstr "" -#: ../src/widgets/toolbox.cpp:4536 +#: ../src/widgets/toolbox.cpp:4554 msgid "In color mode, act on objects' hue" msgstr "" #. TRANSLATORS: "H" here stands for hue -#: ../src/widgets/toolbox.cpp:4540 +#: ../src/widgets/toolbox.cpp:4558 msgid "H" msgstr "" -#: ../src/widgets/toolbox.cpp:4552 +#: ../src/widgets/toolbox.cpp:4570 msgid "In color mode, act on objects' saturation" msgstr "" #. TRANSLATORS: "S" here stands for Saturation -#: ../src/widgets/toolbox.cpp:4556 +#: ../src/widgets/toolbox.cpp:4574 msgid "S" msgstr "" -#: ../src/widgets/toolbox.cpp:4568 +#: ../src/widgets/toolbox.cpp:4586 msgid "In color mode, act on objects' lightness" msgstr "" #. TRANSLATORS: "L" here stands for Lightness -#: ../src/widgets/toolbox.cpp:4572 +#: ../src/widgets/toolbox.cpp:4590 msgid "L" msgstr "" -#: ../src/widgets/toolbox.cpp:4584 +#: ../src/widgets/toolbox.cpp:4602 msgid "In color mode, act on objects' opacity" msgstr "" #. TRANSLATORS: "O" here stands for Opacity -#: ../src/widgets/toolbox.cpp:4588 +#: ../src/widgets/toolbox.cpp:4606 msgid "O" msgstr "" #. Fidelity -#: ../src/widgets/toolbox.cpp:4599 +#: ../src/widgets/toolbox.cpp:4617 msgid "(rough, simplified)" msgstr "" -#: ../src/widgets/toolbox.cpp:4599 +#: ../src/widgets/toolbox.cpp:4617 msgid "(fine, but many nodes)" msgstr "" -#: ../src/widgets/toolbox.cpp:4602 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity" msgstr "" -#: ../src/widgets/toolbox.cpp:4602 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity:" msgstr "" -#: ../src/widgets/toolbox.cpp:4603 +#: ../src/widgets/toolbox.cpp:4621 msgid "" "Low fidelity simplifies paths; high fidelity preserves path features but may " "generate a lot of new nodes" msgstr "" -#: ../src/widgets/toolbox.cpp:4621 ../src/widgets/toolbox.cpp:4799 -#: ../src/widgets/toolbox.cpp:5334 +#: ../src/widgets/toolbox.cpp:4639 ../src/widgets/toolbox.cpp:4817 +#: ../src/widgets/toolbox.cpp:5352 msgid "Pressure" msgstr "" -#: ../src/widgets/toolbox.cpp:4622 +#: ../src/widgets/toolbox.cpp:4640 msgid "Use the pressure of the input device to alter the force of tweak action" msgstr "" #. Width -#: ../src/widgets/toolbox.cpp:4688 +#: ../src/widgets/toolbox.cpp:4706 msgid "(narrow spray)" msgstr "" -#: ../src/widgets/toolbox.cpp:4688 +#: ../src/widgets/toolbox.cpp:4706 msgid "(broad spray)" msgstr "" -#: ../src/widgets/toolbox.cpp:4691 +#: ../src/widgets/toolbox.cpp:4709 msgid "The width of the spray area (relative to the visible canvas area)" msgstr "" -#: ../src/widgets/toolbox.cpp:4704 +#: ../src/widgets/toolbox.cpp:4722 msgid "(maximum mean)" msgstr "" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus" msgstr "" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus:" msgstr "" -#: ../src/widgets/toolbox.cpp:4707 +#: ../src/widgets/toolbox.cpp:4725 msgid "0 to spray a spot; increase to enlarge the ring radius" msgstr "" #. Standard_deviation -#: ../src/widgets/toolbox.cpp:4720 +#: ../src/widgets/toolbox.cpp:4738 msgid "(minimum scatter)" msgstr "" -#: ../src/widgets/toolbox.cpp:4720 +#: ../src/widgets/toolbox.cpp:4738 msgid "(maximum scatter)" msgstr "" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgctxt "Spray tool" msgid "Scatter" msgstr "" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgctxt "Spray tool" msgid "Scatter:" msgstr "" -#: ../src/widgets/toolbox.cpp:4723 +#: ../src/widgets/toolbox.cpp:4741 msgid "Increase to scatter sprayed objects" msgstr "" -#: ../src/widgets/toolbox.cpp:4742 +#: ../src/widgets/toolbox.cpp:4760 msgid "Spray copies of the initial selection" msgstr "" -#: ../src/widgets/toolbox.cpp:4749 +#: ../src/widgets/toolbox.cpp:4767 msgid "Spray clones of the initial selection" msgstr "" -#: ../src/widgets/toolbox.cpp:4755 +#: ../src/widgets/toolbox.cpp:4773 msgid "Spray single path" msgstr "" -#: ../src/widgets/toolbox.cpp:4756 +#: ../src/widgets/toolbox.cpp:4774 msgid "Spray objects in a single path" msgstr "" #. Population -#: ../src/widgets/toolbox.cpp:4780 +#: ../src/widgets/toolbox.cpp:4798 msgid "(low population)" msgstr "" -#: ../src/widgets/toolbox.cpp:4780 +#: ../src/widgets/toolbox.cpp:4798 msgid "(high population)" msgstr "" -#: ../src/widgets/toolbox.cpp:4783 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount" msgstr "" -#: ../src/widgets/toolbox.cpp:4784 +#: ../src/widgets/toolbox.cpp:4802 msgid "Adjusts the number of items sprayed per click" msgstr "" -#: ../src/widgets/toolbox.cpp:4800 +#: ../src/widgets/toolbox.cpp:4818 msgid "" "Use the pressure of the input device to alter the amount of sprayed objects" msgstr "" -#: ../src/widgets/toolbox.cpp:4810 +#: ../src/widgets/toolbox.cpp:4828 msgid "(high rotation variation)" msgstr "" -#: ../src/widgets/toolbox.cpp:4813 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation" msgstr "" -#: ../src/widgets/toolbox.cpp:4813 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation:" msgstr "" -#: ../src/widgets/toolbox.cpp:4815 +#: ../src/widgets/toolbox.cpp:4833 #, no-c-format msgid "" "Variation of the rotation of the sprayed objects; 0% for the same rotation " "than the original object" msgstr "" -#: ../src/widgets/toolbox.cpp:4828 +#: ../src/widgets/toolbox.cpp:4846 msgid "(high scale variation)" msgstr "" -#: ../src/widgets/toolbox.cpp:4831 +#: ../src/widgets/toolbox.cpp:4849 msgctxt "Spray tool" msgid "Scale" msgstr "" -#: ../src/widgets/toolbox.cpp:4831 +#: ../src/widgets/toolbox.cpp:4849 msgctxt "Spray tool" msgid "Scale:" msgstr "" -#: ../src/widgets/toolbox.cpp:4833 +#: ../src/widgets/toolbox.cpp:4851 #, no-c-format msgid "" "Variation in the scale of the sprayed objects; 0% for the same scale than " "the original object" msgstr "" -#: ../src/widgets/toolbox.cpp:5007 +#: ../src/widgets/toolbox.cpp:5025 msgid "No preset" msgstr "" -#: ../src/widgets/toolbox.cpp:5025 +#: ../src/widgets/toolbox.cpp:5043 msgid "Save..." msgstr "" #. Width -#: ../src/widgets/toolbox.cpp:5183 ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:5201 ../src/widgets/toolbox.cpp:6263 msgid "(hairline)" msgstr "" -#: ../src/widgets/toolbox.cpp:5183 ../src/widgets/toolbox.cpp:6245 +#: ../src/widgets/toolbox.cpp:5201 ../src/widgets/toolbox.cpp:6263 msgid "(broad stroke)" msgstr "" -#: ../src/widgets/toolbox.cpp:5186 ../src/widgets/toolbox.cpp:6248 +#: ../src/widgets/toolbox.cpp:5204 ../src/widgets/toolbox.cpp:6266 msgid "Pen Width" msgstr "" -#: ../src/widgets/toolbox.cpp:5187 +#: ../src/widgets/toolbox.cpp:5205 msgid "The width of the calligraphic pen (relative to the visible canvas area)" msgstr "" #. Thinning -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed blows up stroke)" msgstr "" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight widening)" msgstr "" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(constant width)" msgstr "" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight thinning, default)" msgstr "" -#: ../src/widgets/toolbox.cpp:5200 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed deflates stroke)" msgstr "" -#: ../src/widgets/toolbox.cpp:5203 +#: ../src/widgets/toolbox.cpp:5221 msgid "Stroke Thinning" msgstr "" -#: ../src/widgets/toolbox.cpp:5203 +#: ../src/widgets/toolbox.cpp:5221 msgid "Thinning:" msgstr "" -#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:5222 msgid "" "How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 " "makes them broader, 0 makes width independent of velocity)" msgstr "" #. Angle -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(left edge up)" msgstr "" -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(horizontal)" msgstr "" -#: ../src/widgets/toolbox.cpp:5216 +#: ../src/widgets/toolbox.cpp:5234 msgid "(right edge up)" msgstr "" -#: ../src/widgets/toolbox.cpp:5219 +#: ../src/widgets/toolbox.cpp:5237 msgid "Pen Angle" msgstr "" -#: ../src/widgets/toolbox.cpp:5219 ../share/extensions/motion.inx.h:1 +#: ../src/widgets/toolbox.cpp:5237 ../share/extensions/motion.inx.h:1 #: ../share/extensions/restack.inx.h:1 msgid "Angle:" msgstr "" -#: ../src/widgets/toolbox.cpp:5220 +#: ../src/widgets/toolbox.cpp:5238 msgid "" "The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if " "fixation = 0)" msgstr "" #. Fixation -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(perpendicular to stroke, \"brush\")" msgstr "" -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(almost fixed, default)" msgstr "" -#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:5252 msgid "(fixed by Angle, \"pen\")" msgstr "" -#: ../src/widgets/toolbox.cpp:5237 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation" msgstr "" -#: ../src/widgets/toolbox.cpp:5237 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation:" msgstr "" -#: ../src/widgets/toolbox.cpp:5238 +#: ../src/widgets/toolbox.cpp:5256 msgid "" "Angle behavior (0 = nib always perpendicular to stroke direction, 100 = " "fixed angle)" msgstr "" #. Cap Rounding -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(blunt caps, default)" msgstr "" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(slightly bulging)" msgstr "" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(approximately round)" msgstr "" -#: ../src/widgets/toolbox.cpp:5250 +#: ../src/widgets/toolbox.cpp:5268 msgid "(long protruding caps)" msgstr "" -#: ../src/widgets/toolbox.cpp:5254 +#: ../src/widgets/toolbox.cpp:5272 msgid "Cap rounding" msgstr "" -#: ../src/widgets/toolbox.cpp:5254 +#: ../src/widgets/toolbox.cpp:5272 msgid "Caps:" msgstr "" -#: ../src/widgets/toolbox.cpp:5255 +#: ../src/widgets/toolbox.cpp:5273 msgid "" "Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = " "round caps)" msgstr "" #. Tremor -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(smooth line)" msgstr "" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(slight tremor)" msgstr "" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(noticeable tremor)" msgstr "" -#: ../src/widgets/toolbox.cpp:5267 +#: ../src/widgets/toolbox.cpp:5285 msgid "(maximum tremor)" msgstr "" -#: ../src/widgets/toolbox.cpp:5270 +#: ../src/widgets/toolbox.cpp:5288 msgid "Stroke Tremor" msgstr "" -#: ../src/widgets/toolbox.cpp:5270 +#: ../src/widgets/toolbox.cpp:5288 msgid "Tremor:" msgstr "" -#: ../src/widgets/toolbox.cpp:5271 +#: ../src/widgets/toolbox.cpp:5289 msgid "Increase to make strokes rugged and trembling" msgstr "" #. Wiggle -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(no wiggle)" msgstr "" -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(slight deviation)" msgstr "" -#: ../src/widgets/toolbox.cpp:5285 +#: ../src/widgets/toolbox.cpp:5303 msgid "(wild waves and curls)" msgstr "" -#: ../src/widgets/toolbox.cpp:5288 +#: ../src/widgets/toolbox.cpp:5306 msgid "Pen Wiggle" msgstr "" -#: ../src/widgets/toolbox.cpp:5288 +#: ../src/widgets/toolbox.cpp:5306 msgid "Wiggle:" msgstr "" -#: ../src/widgets/toolbox.cpp:5289 +#: ../src/widgets/toolbox.cpp:5307 msgid "Increase to make the pen waver and wiggle" msgstr "" #. Mass -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(no inertia)" msgstr "" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(slight smoothing, default)" msgstr "" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(noticeable lagging)" msgstr "" -#: ../src/widgets/toolbox.cpp:5302 +#: ../src/widgets/toolbox.cpp:5320 msgid "(maximum inertia)" msgstr "" -#: ../src/widgets/toolbox.cpp:5305 +#: ../src/widgets/toolbox.cpp:5323 msgid "Pen Mass" msgstr "" -#: ../src/widgets/toolbox.cpp:5305 +#: ../src/widgets/toolbox.cpp:5323 msgid "Mass:" msgstr "" -#: ../src/widgets/toolbox.cpp:5306 +#: ../src/widgets/toolbox.cpp:5324 msgid "Increase to make the pen drag behind, as if slowed by inertia" msgstr "" -#: ../src/widgets/toolbox.cpp:5321 +#: ../src/widgets/toolbox.cpp:5339 msgid "Trace Background" msgstr "" -#: ../src/widgets/toolbox.cpp:5322 +#: ../src/widgets/toolbox.cpp:5340 msgid "" "Trace the lightness of the background by the width of the pen (white - " "minimum width, black - maximum width)" msgstr "" -#: ../src/widgets/toolbox.cpp:5335 +#: ../src/widgets/toolbox.cpp:5353 msgid "Use the pressure of the input device to alter the width of the pen" msgstr "" -#: ../src/widgets/toolbox.cpp:5347 +#: ../src/widgets/toolbox.cpp:5365 msgid "Tilt" msgstr "" -#: ../src/widgets/toolbox.cpp:5348 +#: ../src/widgets/toolbox.cpp:5366 msgid "Use the tilt of the input device to alter the angle of the pen's nib" msgstr "" -#: ../src/widgets/toolbox.cpp:5363 +#: ../src/widgets/toolbox.cpp:5381 msgid "Choose a preset" msgstr "" -#: ../src/widgets/toolbox.cpp:5452 +#: ../src/widgets/toolbox.cpp:5470 msgid "Arc: Change start/end" msgstr "" -#: ../src/widgets/toolbox.cpp:5518 +#: ../src/widgets/toolbox.cpp:5536 msgid "Arc: Change open/closed" msgstr "" -#: ../src/widgets/toolbox.cpp:5645 +#: ../src/widgets/toolbox.cpp:5663 msgid "Start:" msgstr "" -#: ../src/widgets/toolbox.cpp:5646 +#: ../src/widgets/toolbox.cpp:5664 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "" -#: ../src/widgets/toolbox.cpp:5658 +#: ../src/widgets/toolbox.cpp:5676 msgid "End:" msgstr "" -#: ../src/widgets/toolbox.cpp:5659 +#: ../src/widgets/toolbox.cpp:5677 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "" -#: ../src/widgets/toolbox.cpp:5675 +#: ../src/widgets/toolbox.cpp:5693 msgid "Closed arc" msgstr "" -#: ../src/widgets/toolbox.cpp:5676 +#: ../src/widgets/toolbox.cpp:5694 msgid "Switch to segment (closed shape with two radii)" msgstr "" -#: ../src/widgets/toolbox.cpp:5682 +#: ../src/widgets/toolbox.cpp:5700 msgid "Open Arc" msgstr "" -#: ../src/widgets/toolbox.cpp:5683 +#: ../src/widgets/toolbox.cpp:5701 msgid "Switch to arc (unclosed shape)" msgstr "" -#: ../src/widgets/toolbox.cpp:5706 +#: ../src/widgets/toolbox.cpp:5724 msgid "Make whole" msgstr "" -#: ../src/widgets/toolbox.cpp:5707 +#: ../src/widgets/toolbox.cpp:5725 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "" -#: ../src/widgets/toolbox.cpp:5785 +#: ../src/widgets/toolbox.cpp:5803 msgid "Pick opacity" msgstr "" -#: ../src/widgets/toolbox.cpp:5786 +#: ../src/widgets/toolbox.cpp:5804 msgid "" "Pick both the color and the alpha (transparency) under cursor; otherwise, " "pick only the visible color premultiplied by alpha" msgstr "" -#: ../src/widgets/toolbox.cpp:5789 +#: ../src/widgets/toolbox.cpp:5807 msgid "Pick" msgstr "" -#: ../src/widgets/toolbox.cpp:5798 +#: ../src/widgets/toolbox.cpp:5816 msgid "Assign opacity" msgstr "" -#: ../src/widgets/toolbox.cpp:5799 +#: ../src/widgets/toolbox.cpp:5817 msgid "" "If alpha was picked, assign it to selection as fill or stroke transparency" msgstr "" -#: ../src/widgets/toolbox.cpp:5802 +#: ../src/widgets/toolbox.cpp:5820 msgid "Assign" msgstr "" -#: ../src/widgets/toolbox.cpp:5987 +#: ../src/widgets/toolbox.cpp:6005 msgid "Closed" msgstr "" -#: ../src/widgets/toolbox.cpp:5989 +#: ../src/widgets/toolbox.cpp:6007 msgid "Open start" msgstr "" -#: ../src/widgets/toolbox.cpp:5991 +#: ../src/widgets/toolbox.cpp:6009 msgid "Open end" msgstr "" -#: ../src/widgets/toolbox.cpp:5993 +#: ../src/widgets/toolbox.cpp:6011 msgid "Open both" msgstr "" -#: ../src/widgets/toolbox.cpp:6052 +#: ../src/widgets/toolbox.cpp:6070 msgid "All inactive" msgstr "" -#: ../src/widgets/toolbox.cpp:6053 +#: ../src/widgets/toolbox.cpp:6071 msgid "No geometric tool is active" msgstr "" -#: ../src/widgets/toolbox.cpp:6086 +#: ../src/widgets/toolbox.cpp:6104 msgid "Show limiting bounding box" msgstr "" -#: ../src/widgets/toolbox.cpp:6087 +#: ../src/widgets/toolbox.cpp:6105 msgid "Show bounding box (used to cut infinite lines)" msgstr "" -#: ../src/widgets/toolbox.cpp:6098 +#: ../src/widgets/toolbox.cpp:6116 msgid "Get limiting bounding box from selection" msgstr "" -#: ../src/widgets/toolbox.cpp:6099 +#: ../src/widgets/toolbox.cpp:6117 msgid "" "Set limiting bounding box (used to cut infinite lines) to the bounding box " "of current selection" msgstr "" -#: ../src/widgets/toolbox.cpp:6111 +#: ../src/widgets/toolbox.cpp:6129 msgid "Choose a line segment type" msgstr "" -#: ../src/widgets/toolbox.cpp:6127 +#: ../src/widgets/toolbox.cpp:6145 msgid "Display measuring info" msgstr "" -#: ../src/widgets/toolbox.cpp:6128 +#: ../src/widgets/toolbox.cpp:6146 msgid "Display measuring info for selected items" msgstr "" -#: ../src/widgets/toolbox.cpp:6148 +#: ../src/widgets/toolbox.cpp:6166 msgid "Open LPE dialog" msgstr "" -#: ../src/widgets/toolbox.cpp:6149 +#: ../src/widgets/toolbox.cpp:6167 msgid "Open LPE dialog (to adapt parameters numerically)" msgstr "" -#: ../src/widgets/toolbox.cpp:6214 +#: ../src/widgets/toolbox.cpp:6232 msgid "Delete objects touched by the eraser" msgstr "" -#: ../src/widgets/toolbox.cpp:6220 +#: ../src/widgets/toolbox.cpp:6238 msgid "Cut" msgstr "" -#: ../src/widgets/toolbox.cpp:6221 +#: ../src/widgets/toolbox.cpp:6239 msgid "Cut out from objects" msgstr "" -#: ../src/widgets/toolbox.cpp:6249 +#: ../src/widgets/toolbox.cpp:6267 msgid "The width of the eraser pen (relative to the visible canvas area)" msgstr "" -#: ../src/widgets/toolbox.cpp:6489 +#: ../src/widgets/toolbox.cpp:6507 msgid "Text: Change font family" msgstr "" -#: ../src/widgets/toolbox.cpp:6546 +#: ../src/widgets/toolbox.cpp:6564 msgid "Text: Change font size" msgstr "" -#: ../src/widgets/toolbox.cpp:6685 +#: ../src/widgets/toolbox.cpp:6703 msgid "Text: Change font style" msgstr "" -#: ../src/widgets/toolbox.cpp:6764 +#: ../src/widgets/toolbox.cpp:6782 msgid "Text: Change superscript or subscript" msgstr "" -#: ../src/widgets/toolbox.cpp:6910 +#: ../src/widgets/toolbox.cpp:6928 msgid "Text: Change alignment" msgstr "" -#: ../src/widgets/toolbox.cpp:6953 +#: ../src/widgets/toolbox.cpp:6971 msgid "Text: Change line-height" msgstr "" -#: ../src/widgets/toolbox.cpp:7002 +#: ../src/widgets/toolbox.cpp:7020 msgid "Text: Change word-spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:7044 +#: ../src/widgets/toolbox.cpp:7062 msgid "Text: Change letter-spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:7085 +#: ../src/widgets/toolbox.cpp:7103 msgid "Text: Change dx (kern)" msgstr "" -#: ../src/widgets/toolbox.cpp:7119 +#: ../src/widgets/toolbox.cpp:7137 msgid "Text: Change dy" msgstr "" -#: ../src/widgets/toolbox.cpp:7154 +#: ../src/widgets/toolbox.cpp:7172 msgid "Text: Change rotate" msgstr "" -#: ../src/widgets/toolbox.cpp:7202 +#: ../src/widgets/toolbox.cpp:7220 msgid "Text: Change orientation" msgstr "" -#: ../src/widgets/toolbox.cpp:7567 +#: ../src/widgets/toolbox.cpp:7585 msgid "Font Family" msgstr "" -#: ../src/widgets/toolbox.cpp:7568 +#: ../src/widgets/toolbox.cpp:7586 msgid "Select Font Family (Alt-X to access)" msgstr "" @@ -23436,355 +23506,355 @@ msgstr "" #. Extra list width #. Cell layout #. Enable entry completion -#: ../src/widgets/toolbox.cpp:7575 +#: ../src/widgets/toolbox.cpp:7593 msgid "Font not found on system" msgstr "" -#: ../src/widgets/toolbox.cpp:7608 +#: ../src/widgets/toolbox.cpp:7626 msgid "Font size (px)" msgstr "" #. Name -#: ../src/widgets/toolbox.cpp:7620 +#: ../src/widgets/toolbox.cpp:7638 msgid "Toggle Bold" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7621 +#: ../src/widgets/toolbox.cpp:7639 msgid "Toggle bold or normal weight" msgstr "" #. Name -#: ../src/widgets/toolbox.cpp:7633 +#: ../src/widgets/toolbox.cpp:7651 msgid "Toggle Italic/Oblique" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7634 +#: ../src/widgets/toolbox.cpp:7652 msgid "Toggle italic/oblique style" msgstr "" #. Name -#: ../src/widgets/toolbox.cpp:7646 +#: ../src/widgets/toolbox.cpp:7664 msgid "Toggle Superscript" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7647 +#: ../src/widgets/toolbox.cpp:7665 msgid "Toggle superscript" msgstr "" #. Name -#: ../src/widgets/toolbox.cpp:7659 +#: ../src/widgets/toolbox.cpp:7677 msgid "Toggle Subscript" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7660 +#: ../src/widgets/toolbox.cpp:7678 msgid "Toggle subscript" msgstr "" -#: ../src/widgets/toolbox.cpp:7677 ../src/widgets/toolbox.cpp:7678 +#: ../src/widgets/toolbox.cpp:7695 ../src/widgets/toolbox.cpp:7696 msgid "Align left" msgstr "" -#: ../src/widgets/toolbox.cpp:7685 ../src/widgets/toolbox.cpp:7686 +#: ../src/widgets/toolbox.cpp:7703 ../src/widgets/toolbox.cpp:7704 msgid "Align center" msgstr "" -#: ../src/widgets/toolbox.cpp:7693 ../src/widgets/toolbox.cpp:7694 +#: ../src/widgets/toolbox.cpp:7711 ../src/widgets/toolbox.cpp:7712 msgid "Align right" msgstr "" -#: ../src/widgets/toolbox.cpp:7701 +#: ../src/widgets/toolbox.cpp:7719 msgid "Justify" msgstr "" -#: ../src/widgets/toolbox.cpp:7702 +#: ../src/widgets/toolbox.cpp:7720 msgid "Justify (only flowed text)" msgstr "" #. Name -#: ../src/widgets/toolbox.cpp:7708 +#: ../src/widgets/toolbox.cpp:7726 msgid "Alignment" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7709 +#: ../src/widgets/toolbox.cpp:7727 msgid "Text alignment" msgstr "" -#: ../src/widgets/toolbox.cpp:7736 +#: ../src/widgets/toolbox.cpp:7754 msgid "Horizontal" msgstr "" -#: ../src/widgets/toolbox.cpp:7743 +#: ../src/widgets/toolbox.cpp:7761 msgid "Vertical" msgstr "" #. Label -#: ../src/widgets/toolbox.cpp:7750 +#: ../src/widgets/toolbox.cpp:7768 msgid "Text orientation" msgstr "" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7773 +#: ../src/widgets/toolbox.cpp:7791 msgid "Smaller spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:7773 ../src/widgets/toolbox.cpp:7804 -#: ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7791 ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgctxt "Text tool" msgid "Normal" msgstr "" -#: ../src/widgets/toolbox.cpp:7773 +#: ../src/widgets/toolbox.cpp:7791 msgid "Larger spacing" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7778 +#: ../src/widgets/toolbox.cpp:7796 msgid "Line Height" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7779 +#: ../src/widgets/toolbox.cpp:7797 msgid "Line:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7780 +#: ../src/widgets/toolbox.cpp:7798 msgid "Spacing between lines (times font size)" msgstr "" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7804 ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7822 ../src/widgets/toolbox.cpp:7853 msgid "Negative spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:7804 ../src/widgets/toolbox.cpp:7835 +#: ../src/widgets/toolbox.cpp:7822 ../src/widgets/toolbox.cpp:7853 msgid "Positive spacing" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7809 +#: ../src/widgets/toolbox.cpp:7827 msgid "Word spacing" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7810 +#: ../src/widgets/toolbox.cpp:7828 msgid "Word:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7811 +#: ../src/widgets/toolbox.cpp:7829 msgid "Spacing between words (px)" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7840 +#: ../src/widgets/toolbox.cpp:7858 msgid "Letter spacing" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7841 +#: ../src/widgets/toolbox.cpp:7859 msgid "Letter:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7842 +#: ../src/widgets/toolbox.cpp:7860 msgid "Spacing between letters (px)" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7871 +#: ../src/widgets/toolbox.cpp:7889 msgid "Kerning" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7872 +#: ../src/widgets/toolbox.cpp:7890 msgid "Kern:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7873 +#: ../src/widgets/toolbox.cpp:7891 msgid "Horizontal kerning (px)" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7902 +#: ../src/widgets/toolbox.cpp:7920 msgid "Vertical Shift" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7903 +#: ../src/widgets/toolbox.cpp:7921 msgid "Vert:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7904 +#: ../src/widgets/toolbox.cpp:7922 msgid "Vertical shift (px)" msgstr "" #. name -#: ../src/widgets/toolbox.cpp:7933 +#: ../src/widgets/toolbox.cpp:7951 msgid "Letter rotation" msgstr "" #. label -#: ../src/widgets/toolbox.cpp:7934 +#: ../src/widgets/toolbox.cpp:7952 msgid "Rot:" msgstr "" #. short label -#: ../src/widgets/toolbox.cpp:7935 +#: ../src/widgets/toolbox.cpp:7953 msgid "Character rotation (degrees)" msgstr "" -#: ../src/widgets/toolbox.cpp:8050 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: orthogonal" msgstr "" -#: ../src/widgets/toolbox.cpp:8050 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: polyline" msgstr "" -#: ../src/widgets/toolbox.cpp:8099 +#: ../src/widgets/toolbox.cpp:8117 msgid "Change connector curvature" msgstr "" -#: ../src/widgets/toolbox.cpp:8150 +#: ../src/widgets/toolbox.cpp:8168 msgid "Change connector spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:8264 +#: ../src/widgets/toolbox.cpp:8282 msgid "EditMode" msgstr "" -#: ../src/widgets/toolbox.cpp:8265 +#: ../src/widgets/toolbox.cpp:8283 msgid "Switch between connection point editing and connector drawing mode" msgstr "" -#: ../src/widgets/toolbox.cpp:8279 +#: ../src/widgets/toolbox.cpp:8297 msgid "Avoid" msgstr "" -#: ../src/widgets/toolbox.cpp:8289 +#: ../src/widgets/toolbox.cpp:8307 msgid "Ignore" msgstr "" -#: ../src/widgets/toolbox.cpp:8300 +#: ../src/widgets/toolbox.cpp:8318 msgid "Orthogonal" msgstr "" -#: ../src/widgets/toolbox.cpp:8301 +#: ../src/widgets/toolbox.cpp:8319 msgid "Make connector orthogonal or polyline" msgstr "" -#: ../src/widgets/toolbox.cpp:8315 +#: ../src/widgets/toolbox.cpp:8333 msgid "Connector Curvature" msgstr "" -#: ../src/widgets/toolbox.cpp:8315 +#: ../src/widgets/toolbox.cpp:8333 msgid "Curvature:" msgstr "" -#: ../src/widgets/toolbox.cpp:8316 +#: ../src/widgets/toolbox.cpp:8334 msgid "The amount of connectors curvature" msgstr "" -#: ../src/widgets/toolbox.cpp:8326 +#: ../src/widgets/toolbox.cpp:8344 msgid "Connector Spacing" msgstr "" -#: ../src/widgets/toolbox.cpp:8326 +#: ../src/widgets/toolbox.cpp:8344 msgid "Spacing:" msgstr "" -#: ../src/widgets/toolbox.cpp:8327 +#: ../src/widgets/toolbox.cpp:8345 msgid "The amount of space left around objects by auto-routing connectors" msgstr "" -#: ../src/widgets/toolbox.cpp:8338 +#: ../src/widgets/toolbox.cpp:8356 msgid "Graph" msgstr "" -#: ../src/widgets/toolbox.cpp:8348 +#: ../src/widgets/toolbox.cpp:8366 msgid "Connector Length" msgstr "" -#: ../src/widgets/toolbox.cpp:8349 +#: ../src/widgets/toolbox.cpp:8367 msgid "Ideal length for connectors when layout is applied" msgstr "" -#: ../src/widgets/toolbox.cpp:8361 +#: ../src/widgets/toolbox.cpp:8379 msgid "Downwards" msgstr "" -#: ../src/widgets/toolbox.cpp:8362 +#: ../src/widgets/toolbox.cpp:8380 msgid "Make connectors with end-markers (arrows) point downwards" msgstr "" -#: ../src/widgets/toolbox.cpp:8378 +#: ../src/widgets/toolbox.cpp:8396 msgid "Do not allow overlapping shapes" msgstr "" -#: ../src/widgets/toolbox.cpp:8393 +#: ../src/widgets/toolbox.cpp:8411 msgid "New connection point" msgstr "" -#: ../src/widgets/toolbox.cpp:8394 +#: ../src/widgets/toolbox.cpp:8412 msgid "Add a new connection point to the currently selected item" msgstr "" -#: ../src/widgets/toolbox.cpp:8405 +#: ../src/widgets/toolbox.cpp:8423 msgid "Remove connection point" msgstr "" -#: ../src/widgets/toolbox.cpp:8406 +#: ../src/widgets/toolbox.cpp:8424 msgid "Remove the currently selected connection point" msgstr "" -#: ../src/widgets/toolbox.cpp:8508 +#: ../src/widgets/toolbox.cpp:8526 msgid "Fill by" msgstr "" -#: ../src/widgets/toolbox.cpp:8509 +#: ../src/widgets/toolbox.cpp:8527 msgid "Fill by:" msgstr "" -#: ../src/widgets/toolbox.cpp:8521 +#: ../src/widgets/toolbox.cpp:8539 msgid "Fill Threshold" msgstr "" -#: ../src/widgets/toolbox.cpp:8522 +#: ../src/widgets/toolbox.cpp:8540 msgid "" "The maximum allowed difference between the clicked pixel and the neighboring " "pixels to be counted in the fill" msgstr "" -#: ../src/widgets/toolbox.cpp:8548 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by" msgstr "" -#: ../src/widgets/toolbox.cpp:8548 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by:" msgstr "" -#: ../src/widgets/toolbox.cpp:8549 +#: ../src/widgets/toolbox.cpp:8567 msgid "" "The amount to grow (positive) or shrink (negative) the created fill path" msgstr "" -#: ../src/widgets/toolbox.cpp:8574 +#: ../src/widgets/toolbox.cpp:8592 msgid "Close gaps" msgstr "" -#: ../src/widgets/toolbox.cpp:8575 +#: ../src/widgets/toolbox.cpp:8593 msgid "Close gaps:" msgstr "" -#: ../src/widgets/toolbox.cpp:8587 +#: ../src/widgets/toolbox.cpp:8605 msgid "" "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools " "to change defaults)" @@ -24658,7 +24728,55 @@ msgstr "" msgid "Pressure angle (degrees):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:1 +#: ../share/extensions/gcodetools_about.inx.h:1 +msgid "About" +msgstr "" + +#: ../share/extensions/gcodetools_about.inx.h:2 +#: ../share/extensions/gcodetools_area.inx.h:24 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 +#: ../share/extensions/gcodetools_dxf_points.inx.h:11 +#: ../share/extensions/gcodetools_engraving.inx.h:12 +#: ../share/extensions/gcodetools_graffiti.inx.h:13 +#: ../share/extensions/gcodetools_lathe.inx.h:16 +#: ../share/extensions/gcodetools_orientation_points.inx.h:3 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:4 +#: ../share/extensions/gcodetools_tools_library.inx.h:1 +msgid "Gcodetools" +msgstr "" + +#: ../share/extensions/gcodetools_about.inx.h:3 +#: ../share/extensions/gcodetools_area.inx.h:25 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 +#: ../share/extensions/gcodetools_dxf_points.inx.h:12 +#: ../share/extensions/gcodetools_engraving.inx.h:13 +#: ../share/extensions/gcodetools_graffiti.inx.h:14 +#: ../share/extensions/gcodetools_lathe.inx.h:17 +#: ../share/extensions/gcodetools_orientation_points.inx.h:4 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:5 +#: ../share/extensions/gcodetools_tools_library.inx.h:2 +msgid "" +"Gcodetools plug-in: converts paths to Gcode (using circular interpolation), " +"makes offset paths and engraves sharp corners using cone cutters. This plug-" +"in calculates Gcode for paths using circular interpolation or linear motion " +"when needed. Tutorials, manuals and support can be found at English support " +"forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://" +"www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, " +"John Brooker, Henry Nicolas, Chris Lusby Taylor. Gcodetools ver. 1.7" +msgstr "" + +#: ../share/extensions/gcodetools_about.inx.h:4 +msgid "" +"Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode " +"is a special format which is used in most of CNC machines. So Gcodetools " +"allows you to use Inkscape as CAM program. It can be use with a lot of " +"machone types: Mills Lathes Laser and Palsma cutters and engravers Mill " +"engravers Plotters etc. To get more info visit developers page at http://www." +"cnc-club.ru/gcodetools" +msgstr "" + #: ../share/extensions/gcodetools_area.inx.h:1 msgid "" "\"Create area offset\": creates several Inkscape path offsets to fill " @@ -24668,82 +24786,322 @@ msgid "" "be created if the \"Area width\" is equal to \"1/2 D\"." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:2 -#: ../share/extensions/gcodetools_orientation_points.inx.h:1 -msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" -msgstr "" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:3 -#: ../share/extensions/gcodetools_orientation_points.inx.h:2 -msgid "3-points mode (move, rotate and mirror, different X/Y scale)" -msgstr "" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:4 #: ../share/extensions/gcodetools_area.inx.h:2 msgid "Action:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:5 #: ../share/extensions/gcodetools_area.inx.h:3 #: ../share/extensions/gcodetools_dxf_points.inx.h:1 -#: ../share/extensions/gcodetools_engraving.inx.h:1 +#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_graffiti.inx.h:3 #: ../share/extensions/gcodetools_lathe.inx.h:1 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:1 msgid "Add numeric suffix to filename" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:6 #: ../share/extensions/gcodetools_area.inx.h:4 #: ../share/extensions/gcodetools_dxf_points.inx.h:2 -#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_engraving.inx.h:3 +#: ../share/extensions/gcodetools_graffiti.inx.h:4 #: ../share/extensions/gcodetools_lathe.inx.h:2 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:2 msgid "Additional post-processor:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:7 -msgid "All in one" -msgstr "" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:8 #: ../share/extensions/gcodetools_area.inx.h:5 msgid "Area" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:9 #: ../share/extensions/gcodetools_area.inx.h:6 -msgid "Area artefacts" +msgid "Area artifacts" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:10 #: ../share/extensions/gcodetools_area.inx.h:7 -msgid "Area width:" +msgid "Area fill anlge" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:11 #: ../share/extensions/gcodetools_area.inx.h:8 -msgid "Artefact diameter:" +msgid "Area fill shift" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:12 #: ../share/extensions/gcodetools_area.inx.h:9 +msgid "Area tool overlap (0..0.9):" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:10 +msgid "Area width:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:11 +msgid "Artifact diameter:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:12 #: ../share/extensions/gcodetools_lathe.inx.h:3 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:3 msgid "" "Biarc interpolation tolerance is the maximum distance between path and its " "approximation. The segment will be split into two segments if the distance " -"between path's segment and it's approximation exceeds biarc interpolation " -"tolerance." +"between path's segment and its approximation exceeds biarc interpolation " +"tolerance. For depth function c=color intensity from 0.0 (white) to 1.0 " +"(black), d is the depth defined by orientation points, s - surface defined " +"by orientation points." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:13 -#: ../share/extensions/gcodetools_area.inx.h:10 +#: ../share/extensions/gcodetools_area.inx.h:13 #: ../share/extensions/gcodetools_lathe.inx.h:4 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:4 msgid "Biarc interpolation tolerance:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:14 +#: ../share/extensions/gcodetools_area.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:4 +#: ../share/extensions/gcodetools_graffiti.inx.h:5 +#: ../share/extensions/gcodetools_lathe.inx.h:5 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 +msgid "Comment Gcode:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:7 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 +msgid "Cutting order" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:8 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 +msgid "Depth function:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_dxf_points.inx.h:6 +#: ../share/extensions/gcodetools_engraving.inx.h:5 +#: ../share/extensions/gcodetools_graffiti.inx.h:8 +#: ../share/extensions/gcodetools_lathe.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 +msgid "Directory:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:18 +#: ../share/extensions/gcodetools_dxf_points.inx.h:7 +#: ../share/extensions/gcodetools_engraving.inx.h:8 +#: ../share/extensions/gcodetools_graffiti.inx.h:9 +#: ../share/extensions/gcodetools_lathe.inx.h:10 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 +msgid "Fast pre-penetrate" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:19 +#: ../share/extensions/gcodetools_dxf_points.inx.h:8 +#: ../share/extensions/gcodetools_engraving.inx.h:9 +#: ../share/extensions/gcodetools_graffiti.inx.h:10 +#: ../share/extensions/gcodetools_lathe.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 +msgid "File:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:20 +msgid "Fill area" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:21 +msgid "Filling method" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:22 +#: ../share/extensions/gcodetools_dxf_points.inx.h:9 +#: ../share/extensions/gcodetools_engraving.inx.h:10 +#: ../share/extensions/gcodetools_graffiti.inx.h:11 +#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +msgid "Flip y axis and parameterize Gcode" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:23 +#: ../share/extensions/gcodetools_dxf_points.inx.h:10 +#: ../share/extensions/gcodetools_engraving.inx.h:11 +#: ../share/extensions/gcodetools_graffiti.inx.h:12 +#: ../share/extensions/gcodetools_lathe.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 +msgid "Full path to log file:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:26 +#: ../share/extensions/gcodetools_dxf_points.inx.h:13 +#: ../share/extensions/gcodetools_engraving.inx.h:14 +#: ../share/extensions/gcodetools_graffiti.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:18 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 +msgid "Generate log file" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:27 +#: ../share/extensions/gcodetools_engraving.inx.h:15 +#: ../share/extensions/gcodetools_graffiti.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:19 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 +msgid "Get additional comments from object's properties" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:29 +msgid "Maximum area cutting curves:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:26 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 +msgid "Maximum splitting depth:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:31 +#: ../share/extensions/gcodetools_engraving.inx.h:18 +#: ../share/extensions/gcodetools_graffiti.inx.h:21 +#: ../share/extensions/gcodetools_lathe.inx.h:27 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 +msgid "Minimum arc radius:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:33 +#: ../share/extensions/gcodetools_engraving.inx.h:20 +#: ../share/extensions/gcodetools_graffiti.inx.h:23 +#: ../share/extensions/gcodetools_lathe.inx.h:30 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 +msgid "Offset along Z axis:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:35 +#: ../share/extensions/gcodetools_dxf_points.inx.h:16 +#: ../share/extensions/gcodetools_engraving.inx.h:22 +#: ../share/extensions/gcodetools_graffiti.inx.h:28 +#: ../share/extensions/gcodetools_lathe.inx.h:33 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:23 +msgid "Parameterize Gcode" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:36 +#: ../share/extensions/gcodetools_lathe.inx.h:34 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:24 +msgid "Pass by Pass" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:35 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:25 +msgid "Path by path" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:38 +#: ../share/extensions/gcodetools_lathe.inx.h:36 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:26 +msgid "Path to Gcode" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:39 +#: ../share/extensions/gcodetools_dxf_points.inx.h:17 +#: ../share/extensions/gcodetools_engraving.inx.h:23 +#: ../share/extensions/gcodetools_graffiti.inx.h:29 +#: ../share/extensions/gcodetools_lathe.inx.h:37 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:27 +msgid "Post-processor:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:40 +#: ../share/extensions/gcodetools_dxf_points.inx.h:18 +#: ../share/extensions/gcodetools_engraving.inx.h:24 +#: ../share/extensions/gcodetools_graffiti.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:38 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:28 +msgid "Preferences" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:41 +#: ../share/extensions/gcodetools_dxf_points.inx.h:19 +#: ../share/extensions/gcodetools_engraving.inx.h:25 +#: ../share/extensions/gcodetools_graffiti.inx.h:33 +#: ../share/extensions/gcodetools_lathe.inx.h:39 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:29 +msgid "Round all values to 4 digits" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:42 +#: ../share/extensions/gcodetools_engraving.inx.h:26 +#: ../share/extensions/gcodetools_graffiti.inx.h:34 +#: ../share/extensions/gcodetools_lathe.inx.h:40 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 +msgid "Scale along Z axis:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:43 +#: ../share/extensions/gcodetools_engraving.inx.h:27 +#: ../share/extensions/gcodetools_graffiti.inx.h:35 +#: ../share/extensions/gcodetools_lathe.inx.h:41 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:31 +msgid "Select all paths if nothing is selected" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:42 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:32 +msgid "Sort paths to reduse rapid distance" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:46 +#: ../share/extensions/gcodetools_lathe.inx.h:43 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:33 +msgid "Subpath by subpath" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:47 +#: ../share/extensions/gcodetools_dxf_points.inx.h:20 +#: ../share/extensions/gcodetools_engraving.inx.h:30 +#: ../share/extensions/gcodetools_graffiti.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:45 +#: ../share/extensions/gcodetools_orientation_points.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:34 +msgid "Units (mm or in):" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:48 +msgid "" +"Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift" +"+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by " +"colored arrows." +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:49 +#: ../share/extensions/gcodetools_dxf_points.inx.h:21 +#: ../share/extensions/gcodetools_engraving.inx.h:31 +#: ../share/extensions/gcodetools_graffiti.inx.h:39 +#: ../share/extensions/gcodetools_lathe.inx.h:46 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:35 +msgid "Z safe height for G00 move over blank:" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:50 +msgid "Zig zag" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:51 +msgid "delete" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:53 +msgid "mark with an arrow" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:54 +msgid "mark with style" +msgstr "" + +#: ../share/extensions/gcodetools_check_for_updates.inx.h:1 +msgid "Check for Gcodetools latest stable version and try to get the updates." +msgstr "" + +#: ../share/extensions/gcodetools_check_for_updates.inx.h:2 +msgid "Check for updates" +msgstr "" + #: ../share/extensions/gcodetools_dxf_points.inx.h:3 msgid "" "Convert selected objects to drill points (as dxf_import plugin does). Also " @@ -24752,136 +25110,88 @@ msgid "" "and add or remove XML tag 'dxfpoint' with any value." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:15 #: ../share/extensions/gcodetools_dxf_points.inx.h:4 msgid "Convert selection:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:6 +#: ../share/extensions/gcodetools_dxf_points.inx.h:5 msgid "DXF points" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:17 -#: ../share/extensions/gcodetools_area.inx.h:11 -#: ../share/extensions/gcodetools_dxf_points.inx.h:7 -#: ../share/extensions/gcodetools_engraving.inx.h:3 -#: ../share/extensions/gcodetools_lathe.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 -msgid "Directory:" +#: ../share/extensions/gcodetools_dxf_points.inx.h:22 +msgid "clear dxfpoint sign" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:18 -msgid "Draw additional graphics to debug engraving path:" +#: ../share/extensions/gcodetools_dxf_points.inx.h:25 +msgid "set as dxfpoint and draw arrow" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:19 -#: ../share/extensions/gcodetools_engraving.inx.h:5 -msgid "Engraving" +#: ../share/extensions/gcodetools_dxf_points.inx.h:26 +msgid "set as dxfpoint and save shape" +msgstr "" + +#: ../share/extensions/gcodetools_engraving.inx.h:1 +msgid "Accuracy factor (2 low to 10 high):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:20 -#: ../share/extensions/gcodetools_area.inx.h:12 -#: ../share/extensions/gcodetools_dxf_points.inx.h:8 #: ../share/extensions/gcodetools_engraving.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 -msgid "File:" +msgid "Draw additional graphics to see engraving path" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:21 -#: ../share/extensions/gcodetools_area.inx.h:13 -#: ../share/extensions/gcodetools_dxf_points.inx.h:9 #: ../share/extensions/gcodetools_engraving.inx.h:7 -#: ../share/extensions/gcodetools_lathe.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 -msgid "Full path to log file:" +msgid "Engraving" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:22 -#: ../share/extensions/gcodetools_area.inx.h:14 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 -#: ../share/extensions/gcodetools_dxf_points.inx.h:10 -#: ../share/extensions/gcodetools_engraving.inx.h:8 -#: ../share/extensions/gcodetools_lathe.inx.h:11 -#: ../share/extensions/gcodetools_orientation_points.inx.h:3 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 -#: ../share/extensions/gcodetools_tools_library.inx.h:1 -msgid "Gcodetools" +#: ../share/extensions/gcodetools_engraving.inx.h:17 +msgid "Maximum distance for engraving (mm/inch):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:23 -#: ../share/extensions/gcodetools_area.inx.h:15 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 -#: ../share/extensions/gcodetools_dxf_points.inx.h:11 -#: ../share/extensions/gcodetools_engraving.inx.h:9 -#: ../share/extensions/gcodetools_lathe.inx.h:12 -#: ../share/extensions/gcodetools_orientation_points.inx.h:4 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 -#: ../share/extensions/gcodetools_tools_library.inx.h:2 -msgid "" -"Gcodetools plug-in: converts paths to Gcode (using circular interpolation), " -"makes offset paths and engraves sharp corners using cone cutters. This plug-" -"in calculates Gcode for paths using circular interpolation or linear motion " -"when needed. Tutorials, manuals and support can be found at English support " -"forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://" -"www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, " -"John Brooker, Henry Nicolas. Gcodetools ver. 1.6.01" +#: ../share/extensions/gcodetools_engraving.inx.h:28 +msgid "Smooth convex corners between this value and 180 degrees:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:24 -#: ../share/extensions/gcodetools_area.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:12 -#: ../share/extensions/gcodetools_engraving.inx.h:10 -#: ../share/extensions/gcodetools_lathe.inx.h:13 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 -msgid "Generate log file" +#: ../share/extensions/gcodetools_engraving.inx.h:29 +msgid "" +"This function creates path to engrave letters or any shape with sharp " +"angles. Cutter's depth as a function of radius is defined by the tool. Depth " +"may be any Python expression. For instance: cone....(45 " +"degrees)......................: w cone....(height/diameter=10/3)..: 10*w/3 " +"sphere..(radius r)...........................: math.sqrt(max(0,r**2-w**2)) " +"ellipse.(minor axis r, major 4r).....: math.sqrt(max(0,r**2-w**2))*4" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:26 -#: ../share/extensions/gcodetools_tools_library.inx.h:4 -msgid "Just check tools" +#: ../share/extensions/gcodetools_graffiti.inx.h:1 +#: ../share/extensions/gcodetools_orientation_points.inx.h:1 +msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:27 -#: ../share/extensions/gcodetools_area.inx.h:18 -msgid "Maximum area cutting curves:" +#: ../share/extensions/gcodetools_graffiti.inx.h:2 +#: ../share/extensions/gcodetools_orientation_points.inx.h:2 +msgid "3-points mode (move, rotate and mirror, different X/Y scale)" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:28 -#: ../share/extensions/gcodetools_engraving.inx.h:12 -msgid "Maximum distance for engraving:" +#: ../share/extensions/gcodetools_graffiti.inx.h:6 +msgid "Create linearization preview" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:29 -#: ../share/extensions/gcodetools_area.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:19 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 -msgid "Maximum splitting depth:" +#: ../share/extensions/gcodetools_graffiti.inx.h:7 +msgid "Create preview" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:30 -#: ../share/extensions/gcodetools_area.inx.h:20 -#: ../share/extensions/gcodetools_engraving.inx.h:13 -#: ../share/extensions/gcodetools_lathe.inx.h:20 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 -msgid "Minimum arc radius:" +#: ../share/extensions/gcodetools_graffiti.inx.h:17 +msgid "Graffiti" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:31 -#: ../share/extensions/gcodetools_engraving.inx.h:14 -msgid "Number of sample points used to calculate distance:" +#: ../share/extensions/gcodetools_graffiti.inx.h:19 +msgid "Maximum segment length:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:32 -#: ../share/extensions/gcodetools_area.inx.h:21 -#: ../share/extensions/gcodetools_engraving.inx.h:15 -#: ../share/extensions/gcodetools_lathe.inx.h:21 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 -msgid "Offset along Z axis:" +#: ../share/extensions/gcodetools_graffiti.inx.h:20 +msgid "Minimal connector radius:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:35 -#: ../share/extensions/gcodetools_orientation_points.inx.h:8 +#: ../share/extensions/gcodetools_graffiti.inx.h:26 +#: ../share/extensions/gcodetools_orientation_points.inx.h:7 msgid "" "Orientation points are used to calculate transformation (offset,scale,mirror," "rotation in XY plane) of the path. 3-points mode only: do not put all three " @@ -24893,233 +25203,191 @@ msgid "" "(independent set for each layer)." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:36 -#: ../share/extensions/gcodetools_orientation_points.inx.h:9 +#: ../share/extensions/gcodetools_graffiti.inx.h:27 +#: ../share/extensions/gcodetools_orientation_points.inx.h:8 msgid "Orientation type:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:37 -#: ../share/extensions/gcodetools_area.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:23 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 -msgid "Path to Gcode" +#: ../share/extensions/gcodetools_graffiti.inx.h:31 +msgid "Preview's paint emmit (pts/s):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:38 -#: ../share/extensions/gcodetools_area.inx.h:24 -#: ../share/extensions/gcodetools_dxf_points.inx.h:14 -#: ../share/extensions/gcodetools_engraving.inx.h:17 -#: ../share/extensions/gcodetools_lathe.inx.h:24 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 -msgid "Post-processor:" +#: ../share/extensions/gcodetools_graffiti.inx.h:32 +msgid "Preview's size (px):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:39 -#: ../share/extensions/gcodetools_area.inx.h:25 -#: ../share/extensions/gcodetools_dxf_points.inx.h:15 -#: ../share/extensions/gcodetools_engraving.inx.h:18 -#: ../share/extensions/gcodetools_lathe.inx.h:25 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 -msgid "Preferences" +#: ../share/extensions/gcodetools_graffiti.inx.h:36 +msgid "Start position (x;y):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:40 -#: ../share/extensions/gcodetools_area.inx.h:26 -#: ../share/extensions/gcodetools_engraving.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:26 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 -msgid "Scale along Z axis:" +#: ../share/extensions/gcodetools_graffiti.inx.h:38 +#: ../share/extensions/gcodetools_orientation_points.inx.h:10 +msgid "Z depth:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:41 -#: ../share/extensions/gcodetools_area.inx.h:27 -#: ../share/extensions/gcodetools_engraving.inx.h:20 -#: ../share/extensions/gcodetools_lathe.inx.h:27 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 -msgid "Select all paths if nothing is selected" +#: ../share/extensions/gcodetools_graffiti.inx.h:40 +#: ../share/extensions/gcodetools_orientation_points.inx.h:11 +msgid "Z surface:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:42 -#: ../share/extensions/gcodetools_tools_library.inx.h:5 -msgid "" -"Selected tool type fills appropriate default values. You can change these " -"values using the Text tool later on. The topmost (z order) tool in the " -"active layer is used. If there is no tool inside the current layer it is " -"taken from the upper layer. Press Apply to create new tool." +#: ../share/extensions/gcodetools_graffiti.inx.h:41 +#: ../share/extensions/gcodetools_orientation_points.inx.h:12 +msgid "graffiti points" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:43 -#: ../share/extensions/gcodetools_engraving.inx.h:21 -msgid "Sharp angle tolerance:" +#: ../share/extensions/gcodetools_graffiti.inx.h:43 +#: ../share/extensions/gcodetools_orientation_points.inx.h:14 +msgid "in-out reference point" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:44 -#: ../share/extensions/gcodetools_engraving.inx.h:22 -msgid "" -"This function creates path to engrave sharp angles. Cutter's shape function " -"is defined by the tool. Some simple shapes: cone....(45 degrees)...........: " -"w cone....(height/diameter=10/3).: 10/3 w sphere..(\"r\" diameter).........: " -"math.sqrt(max(0,r**2-w**2)) ellipse.(R1=r and R2=r*4r).....: math.sqrt(max(0," -"r**2-w**2))*4" +#: ../share/extensions/gcodetools_lathe.inx.h:6 +msgid "Create fine cut using:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:45 -#: ../share/extensions/gcodetools_tools_library.inx.h:6 -msgid "Tools library" +#: ../share/extensions/gcodetools_lathe.inx.h:12 +msgid "Fine cut count:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:46 -#: ../share/extensions/gcodetools_tools_library.inx.h:7 -msgid "Tools type:" +#: ../share/extensions/gcodetools_lathe.inx.h:13 +msgid "Fine cut width:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:47 -#: ../share/extensions/gcodetools_area.inx.h:28 -#: ../share/extensions/gcodetools_dxf_points.inx.h:16 -#: ../share/extensions/gcodetools_engraving.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:28 -#: ../share/extensions/gcodetools_orientation_points.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 -msgid "Units (mm or in):" +#: ../share/extensions/gcodetools_lathe.inx.h:21 +msgid "Lathe" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:48 -#: ../share/extensions/gcodetools_area.inx.h:29 -msgid "" -"Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift" -"+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by " -"colored arrows." +#: ../share/extensions/gcodetools_lathe.inx.h:22 +msgid "Lathe X axis remap:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:49 -#: ../share/extensions/gcodetools_orientation_points.inx.h:11 -msgid "Z depth:" +#: ../share/extensions/gcodetools_lathe.inx.h:23 +msgid "Lathe Z axis remap:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:50 -#: ../share/extensions/gcodetools_area.inx.h:30 -#: ../share/extensions/gcodetools_dxf_points.inx.h:17 -#: ../share/extensions/gcodetools_engraving.inx.h:24 -#: ../share/extensions/gcodetools_lathe.inx.h:29 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 -msgid "Z safe height for G00 move over blank:" +#: ../share/extensions/gcodetools_lathe.inx.h:24 +msgid "Lathe modify path" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:51 -#: ../share/extensions/gcodetools_orientation_points.inx.h:12 -msgid "Z surface:" +#: ../share/extensions/gcodetools_lathe.inx.h:25 +msgid "Lathe width:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:52 -#: ../share/extensions/gcodetools_dxf_points.inx.h:18 -msgid "clear dxfpoint sign" +#: ../share/extensions/gcodetools_lathe.inx.h:28 +msgid "Move path" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:53 -#: ../share/extensions/gcodetools_tools_library.inx.h:8 -msgid "cone" +#: ../share/extensions/gcodetools_lathe.inx.h:44 +msgid "" +"This function modifies path so it will be able to be cut with the " +"rectangular cutter." msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:54 -#: ../share/extensions/gcodetools_tools_library.inx.h:9 -msgid "cylinder" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:1 +msgid "-------------------------------------------------" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:55 -#: ../share/extensions/gcodetools_tools_library.inx.h:10 -msgid "default" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2 +msgid "Create in-out paths" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:56 -#: ../share/extensions/gcodetools_area.inx.h:31 -msgid "delete" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:3 +msgid "Do not add in-out reference points" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:57 -#: ../share/extensions/gcodetools_tools_library.inx.h:11 -msgid "lathe cutter" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:7 +msgid "In-out path length:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:58 -#: ../share/extensions/gcodetools_area.inx.h:32 -msgid "mark with an arrow" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:8 +msgid "In-out path max distance to reference point:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:59 -#: ../share/extensions/gcodetools_area.inx.h:33 -msgid "mark with style" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:9 +msgid "In-out path radius for round path:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:60 -#: ../share/extensions/gcodetools_tools_library.inx.h:12 -msgid "plasma" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:10 +msgid "In-out path type:" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:61 -#: ../share/extensions/gcodetools_dxf_points.inx.h:19 -msgid "set as dxfpoint and draw arrow" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:11 +msgid "Maximum angle for corner (0-180 deg):" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:62 -#: ../share/extensions/gcodetools_dxf_points.inx.h:20 -msgid "set as dxfpoint and save shape" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:12 +msgid "Perpendicular" msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:63 -#: ../share/extensions/gcodetools_tools_library.inx.h:13 -msgid "tangent knife" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 +msgid "Prepare corners" msgstr "" -#: ../share/extensions/gcodetools_check_for_updates.inx.h:1 -msgid "Check for Gcodetools latest stable version and try to get the updates." +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:14 +msgid "Prepare path for plasma or laser cuters" msgstr "" -#: ../share/extensions/gcodetools_check_for_updates.inx.h:2 -msgid "Check for updates" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:15 +msgid "Replace original path" msgstr "" -#: ../share/extensions/gcodetools_dxf_points.inx.h:5 -msgid "DXF Points" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:16 +msgid "Round" msgstr "" -#: ../share/extensions/gcodetools_engraving.inx.h:4 -msgid "Draw additional graphics to debug engraving path" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:17 +msgid "Stepout distance for corners:" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:5 -msgid "Create fine cut using:" +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:18 +msgid "Tangent" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:7 -msgid "File" +#: ../share/extensions/gcodetools_tools_library.inx.h:4 +msgid "Just check tools" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:8 -msgid "Fine cut count:" +#: ../share/extensions/gcodetools_tools_library.inx.h:5 +msgid "" +"Selected tool type fills appropriate default values. You can change these " +"values using the Text tool later on. The topmost (z order) tool in the " +"active layer is used. If there is no tool inside the current layer it is " +"taken from the upper layer. Press Apply to create new tool." msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:9 -msgid "Fine cut width:" +#: ../share/extensions/gcodetools_tools_library.inx.h:6 +msgid "Tools library" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:15 -msgid "Lathe" +#: ../share/extensions/gcodetools_tools_library.inx.h:7 +msgid "Tools type:" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:16 -msgid "Lathe X axis remap:" +#: ../share/extensions/gcodetools_tools_library.inx.h:8 +msgid "cone" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:17 -msgid "Lathe Z axis remap:" +#: ../share/extensions/gcodetools_tools_library.inx.h:9 +msgid "cylinder" msgstr "" -#: ../share/extensions/gcodetools_lathe.inx.h:18 -msgid "Lathe width:" +#: ../share/extensions/gcodetools_tools_library.inx.h:10 +msgid "default" msgstr "" -#: ../share/extensions/gcodetools_orientation_points.inx.h:7 -msgid "Orientation points" +#: ../share/extensions/gcodetools_tools_library.inx.h:11 +msgid "graffiti" +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:12 +msgid "lathe cutter" +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:13 +msgid "plasma" +msgstr "" + +#: ../share/extensions/gcodetools_tools_library.inx.h:14 +msgid "tangent knife" msgstr "" #: ../share/extensions/generate_voronoi.inx.h:1 @@ -52,8 +52,8 @@ msgid "" msgstr "" "Project-Id-Version: inkscape 0.49\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-15 21:40+0200\n" -"PO-Revision-Date: 2011-06-18 12:33+0100\n" +"POT-Creation-Date: 2011-07-10 19:44+0200\n" +"PO-Revision-Date: 2011-07-12 21:27+0100\n" "Last-Translator: Kris De Gussem <Kris.DeGussem@gmail.com>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n" "MIME-Version: 1.0\n" @@ -156,11 +156,23 @@ msgstr "Afbeelding geΓ«xtraheerd naar: %s" msgid "Unable to find image data." msgstr "Geen afbeeldingsdata gevonden." -#: ../share/extensions/gcodetools.py:3087 +#: ../share/extensions/gcodetools.py:3317 +#: ../share/extensions/gcodetools.py:4522 +#: ../share/extensions/gcodetools.py:4695 +#: ../share/extensions/gcodetools.py:6228 +#: ../share/extensions/gcodetools.py:6423 +msgid "No paths are selected! Trying to work on all available paths." +msgstr "Er zijn geen paden geselecteerd! Tracht te werken op alle aanwezige paden." + +#: ../share/extensions/gcodetools.py:3320 +msgid "Noting is selected. Please select something." +msgstr "Er is niets geselecteerd. Selecteer aub. iets." + +#: ../share/extensions/gcodetools.py:3860 msgid "Directory does not exist! Please specify existing directory at Preferences tab!" msgstr "Map bestaat niet! Geef alstublief een bestaande map op in het tabblad Voorkeuren!" -#: ../share/extensions/gcodetools.py:3112 +#: ../share/extensions/gcodetools.py:3890 #, python-format msgid "" "Can not write to specified file!\n" @@ -169,28 +181,33 @@ msgstr "" "Kan niet schrijven naar opgegeven bestand!\n" "%s" -#: ../share/extensions/gcodetools.py:3240 +#: ../share/extensions/gcodetools.py:4036 #, python-format msgid "Orientation points for '%s' layer have not been found! Please add orientation points using Orientation tab!" msgstr "OriΓ«ntatiepunten voor laag '%s' werden niet gevonden! Voeg aub oriΓ«ntatiepunten toe met de tab OriΓ«ntatie!" -#: ../share/extensions/gcodetools.py:3246 +#: ../share/extensions/gcodetools.py:4043 #, python-format msgid "There are more than one orientation point groups in '%s' layer" msgstr "Er is meer dan één oriΓ«ntatiepuntgroep in laag '%s'." -#: ../share/extensions/gcodetools.py:3277 -#: ../share/extensions/gcodetools.py:3279 -msgid "Orientation points are wrong! (if there are two orientation points they sould not be the same. If there are three orientation points they should not be in a straight line.)" +#: ../share/extensions/gcodetools.py:4074 +#: ../share/extensions/gcodetools.py:4076 +msgid "Orientation points are wrong! (if there are two orientation points they should not be the same. If there are three orientation points they should not be in a straight line.)" msgstr "OriΓ«ntatiepunten zijn foutief! (indien er twee oriΓ«ntatiepunten zijn, mogen deze niet identiek zijn. Indien er drie oriΓ«ntatiepunten zijn, mogen ze niet op een rechte lijn liggen.)" -#: ../share/extensions/gcodetools.py:3398 +#: ../share/extensions/gcodetools.py:4246 #, python-format msgid "Warning! Found bad orientation points in '%s' layer. Resulting Gcode could be corrupt!" msgstr "Waarschuwing! Slechte oriΓ«ntatiepunten gevonden in laag '%s'. Resulterende Gcode kan corrupt zijn!" +#: ../share/extensions/gcodetools.py:4259 +#, python-format +msgid "Warning! Found bad graffiti reference point in '%s' layer. Resulting Gcode could be corrupt!" +msgstr "Waarschuwing! Slechte graffiti oriΓ«ntatiepunten gevonden in laag '%s'. Resulterende Gcode kan corrupt zijn!" + #. xgettext:no-pango-format -#: ../share/extensions/gcodetools.py:3412 +#: ../share/extensions/gcodetools.py:4280 msgid "" "This extension works with Paths and Dynamic Offsets and groups of them only! All other objects will be ignored!\n" "Solution 1: press Path->Object to path or Shift+Ctrl+C.\n" @@ -202,76 +219,95 @@ msgstr "" "Oplossing 2: Pad->Dynamische offset of Ctrl+J.\n" "Oplossing 3: exporteer alle contouren naar PostScript niveau 2 (Bestand->Opslaan als->.ps) en dit vervolgens importeren (Bestand->Importeren)." -#: ../share/extensions/gcodetools.py:3469 +#: ../share/extensions/gcodetools.py:4286 +msgid "Document has no layers! Add at least one layer using layers panel (Ctrl+Shift+L)" +msgstr "" + +#: ../share/extensions/gcodetools.py:4290 +msgid "Warning! There are some paths in the root of the document, but not in any layer! Using bottom-most layer for them." +msgstr "" + +#: ../share/extensions/gcodetools.py:4367 #, python-format msgid "Warning! Tool's and default tool's parameter's (%s) types are not the same ( type('%s') != type('%s') )." msgstr "Waarschwing! De parametertypes van het gereedschap en het standaard gereedschap (%s) zijn verschillend ( type('%s') != type('%s') )." -#: ../share/extensions/gcodetools.py:3472 +#: ../share/extensions/gcodetools.py:4370 #, python-format msgid "Warning! Tool has parameter that default tool has not ( '%s': '%s' )." msgstr "Waarschuwing! Gereedschap bevat parameter dat standaard gereedschap niet heeft ( '%s': '%s' )." -#: ../share/extensions/gcodetools.py:3486 +#: ../share/extensions/gcodetools.py:4384 #, python-format msgid "Layer '%s' contains more than one tool!" msgstr "Laag '%s' bevat meer dan één gereedschap!" -#: ../share/extensions/gcodetools.py:3489 +#: ../share/extensions/gcodetools.py:4387 #, python-format msgid "Can not find tool for '%s' layer! Please add one with Tools library tab!" msgstr "Kan geen gereedschap vinden voor de laag '%s'! Voeg alstublieft één toe met het tabblad Gereedschappenbibliotheek!" -#: ../share/extensions/gcodetools.py:3592 -#: ../share/extensions/gcodetools.py:3673 -msgid "No paths are selected! Trying to work on all available paths." -msgstr "Er zijn geen paden geselecteerd! Tracht te werken op alle aanwezige paden." - -#: ../share/extensions/gcodetools.py:3611 -#: ../share/extensions/gcodetools.py:3682 -msgid "Warning: One or more paths dont have 'd' parameter, try to Ungroup (Ctrl+Shift+G) and Object to Path (Ctrl+Shift+C)!" +#: ../share/extensions/gcodetools.py:4549 +#: ../share/extensions/gcodetools.py:4704 +msgid "Warning: One or more paths do not have 'd' parameter, try to Ungroup (Ctrl+Shift+G) and Object to Path (Ctrl+Shift+C)!" msgstr "Waarschuwing: een of meer paden hebben geen 'd' parameter. Probeer Groep opheffen (Ctrl+Shift+G) en Object naar pad (Ctrl+Shift+C)!" -#: ../share/extensions/gcodetools.py:3641 -msgid "Nothing is selected. Please select something to convert to drill point (dxfpoint) or clear point sign." +#: ../share/extensions/gcodetools.py:4663 +msgid "Noting is selected. Please select something to convert to drill point (dxfpoint) or clear point sign." msgstr "Er is niets geselecteerd. Selecteer aub. iets om te converteren naar een boorpunt (dxf-punt) of open punt." -#: ../share/extensions/gcodetools.py:3714 -#: ../share/extensions/gcodetools.py:3808 +#: ../share/extensions/gcodetools.py:4746 +#: ../share/extensions/gcodetools.py:4992 msgid "This extension requires at least one selected path." msgstr "Deze uitbreiding vereist ten minste één geselecteerd pad." -#: ../share/extensions/gcodetools.py:3720 +#: ../share/extensions/gcodetools.py:4752 +#: ../share/extensions/gcodetools.py:4998 #, python-format msgid "Tool diameter must be > 0 but tool's diameter on '%s' layer is not!" msgstr "Diameter gereedschap moet > 0 zijn, maar dit is niet zo voor laag '%s'!" -#: ../share/extensions/gcodetools.py:3731 +#: ../share/extensions/gcodetools.py:4763 +#: ../share/extensions/gcodetools.py:4952 +#: ../share/extensions/gcodetools.py:5007 msgid "Warning: omitting non-path" msgstr "Waarschuwing: niet-pad overgeslagen" -#: ../share/extensions/gcodetools.py:4063 +#: ../share/extensions/gcodetools.py:5507 +msgid "Please select at least one path to engrave and run again." +msgstr "Selecteer minstens één pad om te graveren en voer opnieuw uit." + +#: ../share/extensions/gcodetools.py:5515 +msgid "Unknown unit selected. mm assumed" +msgstr "" + +#: ../share/extensions/gcodetools.py:5536 #, python-format -msgid "Tool '%s' has no shape!" -msgstr "Gereedschap '%s' heeft geen vorm!" +msgid "Tool '%s' has no shape. 45 degree cone assumed!" +msgstr "Gereedschap '%s' heeft geen vorm. 45 graden conus wordt verondersteld!" + +#: ../share/extensions/gcodetools.py:5607 +#: ../share/extensions/gcodetools.py:5612 +msgid "csp_normalised_normal error. See log." +msgstr "" -#: ../share/extensions/gcodetools.py:4073 +#: ../share/extensions/gcodetools.py:5800 msgid "No need to engrave sharp angles." msgstr "Het is niet nodig om scherpe hoeken te graveren." -#: ../share/extensions/gcodetools.py:4086 +#: ../share/extensions/gcodetools.py:5844 msgid "Active layer already has orientation points! Remove them or select another layer!" msgstr "Actieve laag bevat al oriΓ«ntatiepunten! Verwijder ze of selecteer een andere laag!" -#: ../share/extensions/gcodetools.py:4134 +#: ../share/extensions/gcodetools.py:5889 msgid "Active layer already has a tool! Remove it or select another layer!" msgstr "Actieve laag bevat al een gereedschap! Verwijder het of selecteer een andere laag!" -#: ../share/extensions/gcodetools.py:4258 +#: ../share/extensions/gcodetools.py:6004 msgid "Selection is empty! Will compute whole drawing." msgstr "Selectie is leeg! De volledige afbeelding wordt berekend." -#: ../share/extensions/gcodetools.py:4318 +#: ../share/extensions/gcodetools.py:6058 msgid "" "Tutorials, manuals and support can be found at\n" "English support forum:\n" @@ -285,23 +321,26 @@ msgstr "" "en Russisch support forum:\n" "\thttp://www.cnc-club.ru/gcodetoolsru" -#: ../share/extensions/gcodetools.py:4363 +#: ../share/extensions/gcodetools.py:6103 msgid "Lathe X and Z axis remap should be 'X', 'Y' or 'Z'. Exiting..." msgstr "X- en Z-as herindeling van draaibank zouden 'X', 'Y' of 'Z' moeten zijn. Bezig met afronden..." -#: ../share/extensions/gcodetools.py:4366 +#: ../share/extensions/gcodetools.py:6106 msgid "Lathe X and Z axis remap should be the same. Exiting..." msgstr "X- en Z-as herindeling van draaibank zouden gelijk moeten zijn. Bezig met afronden..." -#: ../share/extensions/gcodetools.py:4527 -msgid "Select one of the active tabs - Path to Gcode, Area, Engraving, DXF points, Orientation, Offset, Lathe or Tools library." -msgstr "Selecteer een van de actieve tabs - Pad naar Gcode, Oppervlak, Oppervlakteartefacten, Gravure, DXF-punten, Gereedschappenbibliotheek of OriΓ«ntatie." +#: ../share/extensions/gcodetools.py:6658 +#, fuzzy, python-format +msgid "" +"Select one of the action tabs - Path to Gcode, Area, Engraving, DXF points, Orientation, Offset, Lathe or Tools library.\n" +" Current active tab id is %s" +msgstr "Selecteer een van de actietabs - Pad naar Gcode, Oppervlak, Oppervlakteartefacten, Gravure, DXF-punten, Gereedschappenbibliotheek of OriΓ«ntatie." -#: ../share/extensions/gcodetools.py:4533 +#: ../share/extensions/gcodetools.py:6664 msgid "Orientation points have not been defined! A default set of orientation points has been automatically added." msgstr "OriΓ«ntatiepunten werden niet gedefinieerd! Een standaard set oriΓ«ntatiepunten werd automatisch toegevoegd." -#: ../share/extensions/gcodetools.py:4537 +#: ../share/extensions/gcodetools.py:6668 msgid "Cutting tool has not been defined! A default tool has been automatically added." msgstr "Snijgereedschap is niet gedefinieerd! Een standaard gereedschap werd automatisch toegevoegd." @@ -366,13 +405,13 @@ msgstr "" "Het eerste geselecteerde object is van het type '%s'.\n" "Probeer de procedure Paden->Object naar Pad." -#: ../share/extensions/perspective.py:74 -#: ../share/extensions/summersnight.py:50 +#: ../share/extensions/perspective.py:75 +#: ../share/extensions/summersnight.py:51 msgid "This extension requires that the second selected path be four nodes long." msgstr "Deze uitbreiding vereist dat het tweede geselecteerde pad vier knooppunten lang is." -#: ../share/extensions/perspective.py:99 -#: ../share/extensions/summersnight.py:82 +#: ../share/extensions/perspective.py:101 +#: ../share/extensions/summersnight.py:84 msgid "" "The second selected object is a group, not a path.\n" "Try using the procedure Object->Ungroup." @@ -380,8 +419,8 @@ msgstr "" "Het tweede geselecteerde object is een groep en geen pad.\n" "Probeer de procedure Object->Groep opheffen." -#: ../share/extensions/perspective.py:101 -#: ../share/extensions/summersnight.py:84 +#: ../share/extensions/perspective.py:103 +#: ../share/extensions/summersnight.py:86 msgid "" "The second selected object is not a path.\n" "Try using the procedure Path->Object to Path." @@ -389,8 +428,8 @@ msgstr "" "Het tweede geselecteerde object is geen pad.\n" "Probeer de procedure Paden->Object naar Pad." -#: ../share/extensions/perspective.py:104 -#: ../share/extensions/summersnight.py:87 +#: ../share/extensions/perspective.py:106 +#: ../share/extensions/summersnight.py:89 msgid "" "The first selected object is not a path.\n" "Try using the procedure Path->Object to Path." @@ -531,6 +570,7 @@ msgstr "Randen vervagen gedeeltelijk naar de buitenkant toe" #: ../share/filters/filters.svg.h:1 #: ../src/extension/internal/filter/abc.h:739 +#: ../src/extension/internal/filter/shadows.h:65 msgid "Cutout" msgstr "Uitsnijding" @@ -707,6 +747,7 @@ msgid "Edge detect" msgstr "Randherkenning" #: ../share/filters/filters.svg.h:1 +#: ../src/extension/internal/filter/image.h:65 msgid "Detect color edges in object" msgstr "Kleurranden in object detecteren" @@ -728,7 +769,7 @@ msgstr "Verticale kleurranden in object detecteren" #. Pencil #: ../share/filters/filters.svg.h:1 -#: ../src/ui/dialog/inkscape-preferences.cpp:521 +#: ../src/ui/dialog/inkscape-preferences.cpp:522 #: ../src/verbs.cpp:2520 msgid "Pencil" msgstr "Potlood" @@ -751,8 +792,8 @@ msgid "Desaturate" msgstr "Onverzadigd maken" #: ../share/filters/filters.svg.h:1 -#: ../src/dialogs/clonetiler.cpp:2543 -#: ../src/dialogs/clonetiler.cpp:2682 +#: ../src/dialogs/clonetiler.cpp:2517 +#: ../src/dialogs/clonetiler.cpp:2656 #: ../src/extension/internal/bitmap/colorize.cpp:51 #: ../src/extension/internal/filter/abc.h:477 #: ../src/extension/internal/filter/abc.h:580 @@ -760,6 +801,7 @@ msgstr "Onverzadigd maken" #: ../src/extension/internal/filter/color.h:153 #: ../src/extension/internal/filter/color.h:806 #: ../src/extension/internal/filter/experimental.h:97 +#: ../src/extension/internal/filter/shadows.h:69 #: ../share/extensions/color_blackandwhite.inx.h:2 #: ../share/extensions/color_brighter.inx.h:2 #: ../share/extensions/color_custom.inx.h:9 @@ -793,6 +835,7 @@ msgid "Invert" msgstr "Inverteren" #: ../share/filters/filters.svg.h:1 +#: ../src/extension/internal/filter/image.h:57 msgid "Invert colors" msgstr "Kleuren inverteren" @@ -999,6 +1042,7 @@ msgid "Leaves on the ground in Fall, or living foliage" msgstr "Bladeren op de grond in de herfst of een levend bladerdek" #: ../share/filters/filters.svg.h:1 +#: ../src/extension/internal/filter/experimental.h:338 msgid "Translucent" msgstr "Doorzichtig" @@ -3673,7 +3717,7 @@ msgid "Defines the direction and magnitude of the extrusion" msgstr "Bepaalt de richting en mate van uitrekking" #: ../src/sp-flowtext.cpp:382 -#: ../src/sp-text.cpp:435 +#: ../src/sp-text.cpp:434 #: ../src/text-context.cpp:1627 msgid " [truncated]" msgstr " [afgekort]" @@ -3778,12 +3822,12 @@ msgid "Select <b>at least one non-connector object</b>." msgstr "Selecteer <b>minstens één object</b> dat geen verbindingsobject is." #: ../src/connector-context.cpp:1968 -#: ../src/widgets/toolbox.cpp:8256 +#: ../src/widgets/toolbox.cpp:8298 msgid "Make connectors avoid selected objects" msgstr "Ervoor zorgen dat verbindingen geselecteerde objecten ontwijken" #: ../src/connector-context.cpp:1969 -#: ../src/widgets/toolbox.cpp:8266 +#: ../src/widgets/toolbox.cpp:8308 msgid "Make connectors ignore selected objects" msgstr "Ervoor zorgen dat verbindingen geselecteerde objecten negeren" @@ -3807,7 +3851,7 @@ msgstr "Hulplijn verplaatsen" #: ../src/desktop-events.cpp:429 #: ../src/desktop-events.cpp:475 -#: ../src/ui/dialog/guides.cpp:125 +#: ../src/ui/dialog/guides.cpp:133 msgid "Delete guide" msgstr "Hulplijn verwijderen" @@ -3824,674 +3868,669 @@ msgstr "Er is geen vorige zoom." msgid "No next zoom." msgstr "Er is geen volgende zoom." -#: ../src/dialogs/clonetiler.cpp:145 +#: ../src/dialogs/clonetiler.cpp:146 msgid "<small>Nothing selected.</small>" msgstr "<small>Niets geselecteerd.</small>" -#: ../src/dialogs/clonetiler.cpp:151 +#: ../src/dialogs/clonetiler.cpp:152 msgid "<small>More than one object selected.</small>" msgstr "<small>Meer dan één object geselecteerd.</small>" -#: ../src/dialogs/clonetiler.cpp:158 +#: ../src/dialogs/clonetiler.cpp:159 #, c-format msgid "<small>Object has <b>%d</b> tiled clones.</small>" msgstr "<small>Het object heeft <b>%d</b> getegelde klonen.</small>" -#: ../src/dialogs/clonetiler.cpp:163 +#: ../src/dialogs/clonetiler.cpp:164 msgid "<small>Object has no tiled clones.</small>" msgstr "<small>Het object heeft geen getegelde klonen.</small>" -#: ../src/dialogs/clonetiler.cpp:962 +#: ../src/dialogs/clonetiler.cpp:928 msgid "Select <b>one object</b> whose tiled clones to unclump." msgstr "Selecteer <b>één object</b> wiens klonen ontklonterd moeten worden." -#: ../src/dialogs/clonetiler.cpp:984 +#: ../src/dialogs/clonetiler.cpp:950 msgid "Unclump tiled clones" msgstr "Getegelde klonen ontklonteren" -#: ../src/dialogs/clonetiler.cpp:1013 +#: ../src/dialogs/clonetiler.cpp:979 msgid "Select <b>one object</b> whose tiled clones to remove." msgstr "Selecteer <b>één object</b> waarvan de getegelde klonen verwijderd moeten worden." -#: ../src/dialogs/clonetiler.cpp:1036 +#: ../src/dialogs/clonetiler.cpp:1002 msgid "Delete tiled clones" msgstr "Verwijder getegelde klonen" -#: ../src/dialogs/clonetiler.cpp:1083 -#: ../src/selection-chemistry.cpp:2048 +#: ../src/dialogs/clonetiler.cpp:1049 +#: ../src/selection-chemistry.cpp:2044 msgid "Select an <b>object</b> to clone." msgstr "Selecteer een <b>object</b> om te klonen." -#: ../src/dialogs/clonetiler.cpp:1089 +#: ../src/dialogs/clonetiler.cpp:1055 msgid "If you want to clone several objects, <b>group</b> them and <b>clone the group</b>." msgstr "Als u meerdere objecten wilt klonen, <b>groepeer</b> ze dan en <b>kloon de groep</b>." -#: ../src/dialogs/clonetiler.cpp:1098 +#: ../src/dialogs/clonetiler.cpp:1064 msgid "<small>Creating tiled clones...</small>" msgstr "<small>Getegelde klonen maken...</small>" -#: ../src/dialogs/clonetiler.cpp:1501 +#: ../src/dialogs/clonetiler.cpp:1467 msgid "Create tiled clones" msgstr "Tegelen met klonen" -#: ../src/dialogs/clonetiler.cpp:1681 +#: ../src/dialogs/clonetiler.cpp:1647 msgid "<small>Per row:</small>" msgstr "<small>Per rij:</small>" -#: ../src/dialogs/clonetiler.cpp:1694 +#: ../src/dialogs/clonetiler.cpp:1660 msgid "<small>Per column:</small>" msgstr "<small>Per kolom:</small>" -#: ../src/dialogs/clonetiler.cpp:1702 +#: ../src/dialogs/clonetiler.cpp:1668 msgid "<small>Randomize:</small>" msgstr "<small>Willekeurig:</small>" -#: ../src/dialogs/clonetiler.cpp:1847 +#: ../src/dialogs/clonetiler.cpp:1813 msgid "_Symmetry" msgstr "_Symmetrie" -#. TRANSLATORS: For the following 17 symmetry groups, see -#. * http://www.bib.ulb.ac.be/coursmath/doc/17.htm (visual examples); -#. * http://www.clarku.edu/~djoyce/wallpaper/seventeen.html (English vocabulary); or -#. * http://membres.lycos.fr/villemingerard/Geometri/Sym1D.htm (French vocabulary). -#. -#: ../src/dialogs/clonetiler.cpp:1855 -msgid "Select one of the 17 symmetry groups for the tiling" -msgstr "Selecteer één van de 17 symmetriegroepen voor het tegelen" - #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/dialogs/clonetiler.cpp:1866 +#: ../src/dialogs/clonetiler.cpp:1825 msgid "<b>P1</b>: simple translation" msgstr "<b>P1</b>: eenvoudige verplaatsing" -#: ../src/dialogs/clonetiler.cpp:1867 +#: ../src/dialogs/clonetiler.cpp:1826 msgid "<b>P2</b>: 180° rotation" msgstr "<b>P2</b>: 180° draaien" -#: ../src/dialogs/clonetiler.cpp:1868 +#: ../src/dialogs/clonetiler.cpp:1827 msgid "<b>PM</b>: reflection" msgstr "<b>PM</b>: spiegeling" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/dialogs/clonetiler.cpp:1871 +#: ../src/dialogs/clonetiler.cpp:1830 msgid "<b>PG</b>: glide reflection" msgstr "<b>PG</b>: schuifspiegeling" -#: ../src/dialogs/clonetiler.cpp:1872 +#: ../src/dialogs/clonetiler.cpp:1831 msgid "<b>CM</b>: reflection + glide reflection" msgstr "<b>CM</b>: spiegeling + schuifspiegeling" -#: ../src/dialogs/clonetiler.cpp:1873 +#: ../src/dialogs/clonetiler.cpp:1832 msgid "<b>PMM</b>: reflection + reflection" msgstr "<b>PMM</b>: spiegeling + spiegeling" -#: ../src/dialogs/clonetiler.cpp:1874 +#: ../src/dialogs/clonetiler.cpp:1833 msgid "<b>PMG</b>: reflection + 180° rotation" msgstr "<b>PMG</b>: spiegeling + 180° draaien" -#: ../src/dialogs/clonetiler.cpp:1875 +#: ../src/dialogs/clonetiler.cpp:1834 msgid "<b>PGG</b>: glide reflection + 180° rotation" msgstr "<b>PGG</b>: schuifspiegeling + 180° draaien" -#: ../src/dialogs/clonetiler.cpp:1876 +#: ../src/dialogs/clonetiler.cpp:1835 msgid "<b>CMM</b>: reflection + reflection + 180° rotation" msgstr "<b>CMM</b>: spiegeling + spiegeling + 180° draaien" -#: ../src/dialogs/clonetiler.cpp:1877 +#: ../src/dialogs/clonetiler.cpp:1836 msgid "<b>P4</b>: 90° rotation" msgstr "<b>P4</b>: 90° draaien" -#: ../src/dialogs/clonetiler.cpp:1878 +#: ../src/dialogs/clonetiler.cpp:1837 msgid "<b>P4M</b>: 90° rotation + 45° reflection" msgstr "<b>P4M</b>: 90° draaien + 45° spiegeling" -#: ../src/dialogs/clonetiler.cpp:1879 +#: ../src/dialogs/clonetiler.cpp:1838 msgid "<b>P4G</b>: 90° rotation + 90° reflection" msgstr "<b>P4G</b>: 90° draaien + 90° spiegeling" -#: ../src/dialogs/clonetiler.cpp:1880 +#: ../src/dialogs/clonetiler.cpp:1839 msgid "<b>P3</b>: 120° rotation" msgstr "<b>P3</b>: 120° draaien" -#: ../src/dialogs/clonetiler.cpp:1881 +#: ../src/dialogs/clonetiler.cpp:1840 msgid "<b>P31M</b>: reflection + 120° rotation, dense" msgstr "<b>P31M</b>: spiegeling + 120° draaien, dicht" -#: ../src/dialogs/clonetiler.cpp:1882 +#: ../src/dialogs/clonetiler.cpp:1841 msgid "<b>P3M1</b>: reflection + 120° rotation, sparse" msgstr "<b>P3M1</b>: spiegeling + 120° draaien, dun" -#: ../src/dialogs/clonetiler.cpp:1883 +#: ../src/dialogs/clonetiler.cpp:1842 msgid "<b>P6</b>: 60° rotation" msgstr "<b>P6</b>: 60° draaien" -#: ../src/dialogs/clonetiler.cpp:1884 +#: ../src/dialogs/clonetiler.cpp:1843 msgid "<b>P6M</b>: reflection + 60° rotation" msgstr "<b>P6M</b>: spiegeling + 60° draaien" -#: ../src/dialogs/clonetiler.cpp:1912 +#: ../src/dialogs/clonetiler.cpp:1865 +msgid "Select one of the 17 symmetry groups for the tiling" +msgstr "Selecteer één van de 17 symmetriegroepen voor het tegelen" + +#: ../src/dialogs/clonetiler.cpp:1886 msgid "S_hift" msgstr "Ver_plaatsing" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/dialogs/clonetiler.cpp:1922 +#: ../src/dialogs/clonetiler.cpp:1896 #, no-c-format msgid "<b>Shift X:</b>" msgstr "<b>X-verplaatsing:</b>" -#: ../src/dialogs/clonetiler.cpp:1930 +#: ../src/dialogs/clonetiler.cpp:1904 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" msgstr "Horizontale verplaatsing voor elke volgende rij (in % van de tegelbreedte)" -#: ../src/dialogs/clonetiler.cpp:1938 +#: ../src/dialogs/clonetiler.cpp:1912 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" msgstr "Horizontale verplaatsing voor elke volgende kolom (in % van de tegelbreedte)" -#: ../src/dialogs/clonetiler.cpp:1944 +#: ../src/dialogs/clonetiler.cpp:1918 msgid "Randomize the horizontal shift by this percentage" msgstr "De horizontale positie binnen dit percentage willekeurig aanpassen" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/dialogs/clonetiler.cpp:1954 +#: ../src/dialogs/clonetiler.cpp:1928 #, no-c-format msgid "<b>Shift Y:</b>" msgstr "<b>Y-verplaatsing:</b>" -#: ../src/dialogs/clonetiler.cpp:1962 +#: ../src/dialogs/clonetiler.cpp:1936 #, no-c-format msgid "Vertical shift per row (in % of tile height)" msgstr "Verticale verplaatsing voor elke volgende rij (in % van de tegelhoogte)" -#: ../src/dialogs/clonetiler.cpp:1970 +#: ../src/dialogs/clonetiler.cpp:1944 #, no-c-format msgid "Vertical shift per column (in % of tile height)" msgstr "Verticale verplaatsing voor elke volgende kolom (in % van de tegelhoogte)" -#: ../src/dialogs/clonetiler.cpp:1977 +#: ../src/dialogs/clonetiler.cpp:1951 msgid "Randomize the vertical shift by this percentage" msgstr "De verticale positie binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:1985 -#: ../src/dialogs/clonetiler.cpp:2131 +#: ../src/dialogs/clonetiler.cpp:1959 +#: ../src/dialogs/clonetiler.cpp:2105 msgid "<b>Exponent:</b>" msgstr "<b>Exponent:</b>" -#: ../src/dialogs/clonetiler.cpp:1992 +#: ../src/dialogs/clonetiler.cpp:1966 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Of de rij-afstand gelijk blijft (1), afneemt (<1) of toeneemt (>1)" -#: ../src/dialogs/clonetiler.cpp:1999 +#: ../src/dialogs/clonetiler.cpp:1973 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Of de kolom-afstand gelijk blijft (1), afneemt (<1) of toeneemt (>1)" #. TRANSLATORS: "Alternate" is a verb here -#: ../src/dialogs/clonetiler.cpp:2007 -#: ../src/dialogs/clonetiler.cpp:2171 -#: ../src/dialogs/clonetiler.cpp:2247 -#: ../src/dialogs/clonetiler.cpp:2320 -#: ../src/dialogs/clonetiler.cpp:2366 -#: ../src/dialogs/clonetiler.cpp:2488 +#: ../src/dialogs/clonetiler.cpp:1981 +#: ../src/dialogs/clonetiler.cpp:2145 +#: ../src/dialogs/clonetiler.cpp:2221 +#: ../src/dialogs/clonetiler.cpp:2294 +#: ../src/dialogs/clonetiler.cpp:2340 +#: ../src/dialogs/clonetiler.cpp:2462 msgid "<small>Alternate:</small>" msgstr "<small>Afwisselen:</small>" -#: ../src/dialogs/clonetiler.cpp:2013 +#: ../src/dialogs/clonetiler.cpp:1987 msgid "Alternate the sign of shifts for each row" msgstr "De verplaatsingen voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2018 +#: ../src/dialogs/clonetiler.cpp:1992 msgid "Alternate the sign of shifts for each column" msgstr "De verplaatsingen voor elke kolom om-en-om afwisselen" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:2025 -#: ../src/dialogs/clonetiler.cpp:2189 -#: ../src/dialogs/clonetiler.cpp:2265 +#: ../src/dialogs/clonetiler.cpp:1999 +#: ../src/dialogs/clonetiler.cpp:2163 +#: ../src/dialogs/clonetiler.cpp:2239 msgid "<small>Cumulate:</small>" msgstr "<small>Optellen:</small>" -#: ../src/dialogs/clonetiler.cpp:2031 +#: ../src/dialogs/clonetiler.cpp:2005 msgid "Cumulate the shifts for each row" msgstr "De verplaatsingen voor elke rij optellen" -#: ../src/dialogs/clonetiler.cpp:2036 +#: ../src/dialogs/clonetiler.cpp:2010 msgid "Cumulate the shifts for each column" msgstr "De verplaatsingen voor elke kolom optellen" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/dialogs/clonetiler.cpp:2043 +#: ../src/dialogs/clonetiler.cpp:2017 msgid "<small>Exclude tile:</small>" msgstr "<small>Tegel uitsluiten:</small>" -#: ../src/dialogs/clonetiler.cpp:2049 +#: ../src/dialogs/clonetiler.cpp:2023 msgid "Exclude tile height in shift" msgstr "Tegelhoogte niet bij verplaatsing optellen" -#: ../src/dialogs/clonetiler.cpp:2054 +#: ../src/dialogs/clonetiler.cpp:2028 msgid "Exclude tile width in shift" msgstr "Tegelbreedte niet bij verplaatsing optellen" -#: ../src/dialogs/clonetiler.cpp:2063 +#: ../src/dialogs/clonetiler.cpp:2037 msgid "Sc_ale" msgstr "_Schalen" -#: ../src/dialogs/clonetiler.cpp:2071 +#: ../src/dialogs/clonetiler.cpp:2045 msgid "<b>Scale X:</b>" msgstr "<b>X-vergroting:</b>" -#: ../src/dialogs/clonetiler.cpp:2079 +#: ../src/dialogs/clonetiler.cpp:2053 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" msgstr "Horizontale vergroting voor elke volgende rij (in % van de tegelbreedte)" -#: ../src/dialogs/clonetiler.cpp:2087 +#: ../src/dialogs/clonetiler.cpp:2061 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" msgstr "Horizontale vergroting voor elke volgende kolom (in % van de tegelbreedte)" -#: ../src/dialogs/clonetiler.cpp:2093 +#: ../src/dialogs/clonetiler.cpp:2067 msgid "Randomize the horizontal scale by this percentage" msgstr "De horizontale afmeting binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2101 +#: ../src/dialogs/clonetiler.cpp:2075 msgid "<b>Scale Y:</b>" msgstr "<b>Y-vergroting:</b>" -#: ../src/dialogs/clonetiler.cpp:2109 +#: ../src/dialogs/clonetiler.cpp:2083 #, no-c-format msgid "Vertical scale per row (in % of tile height)" msgstr "Verticale vergroting voor elke volgende rij (in % van de tegelhoogte)" -#: ../src/dialogs/clonetiler.cpp:2117 +#: ../src/dialogs/clonetiler.cpp:2091 #, no-c-format msgid "Vertical scale per column (in % of tile height)" msgstr "Verticale vergroting voor elke volgende kolom (in % van de tegelhoogte)" -#: ../src/dialogs/clonetiler.cpp:2123 +#: ../src/dialogs/clonetiler.cpp:2097 msgid "Randomize the vertical scale by this percentage" msgstr "De verticale afmeting binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2137 +#: ../src/dialogs/clonetiler.cpp:2111 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Soort rijvergroting: uniform (1), convergent (<1) of divergent (>1)" -#: ../src/dialogs/clonetiler.cpp:2143 +#: ../src/dialogs/clonetiler.cpp:2117 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Soort kolomvergroting: uniform (1), convergent (<1) of divergent (>1)" -#: ../src/dialogs/clonetiler.cpp:2151 +#: ../src/dialogs/clonetiler.cpp:2125 msgid "<b>Base:</b>" msgstr "<b>Grondtal:</b>" -#: ../src/dialogs/clonetiler.cpp:2157 -#: ../src/dialogs/clonetiler.cpp:2163 +#: ../src/dialogs/clonetiler.cpp:2131 +#: ../src/dialogs/clonetiler.cpp:2137 msgid "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" msgstr "Grondtal voor logaritmische spiraal: ongebruikt (0), convergent (<1) of divergent (>1)" -#: ../src/dialogs/clonetiler.cpp:2177 +#: ../src/dialogs/clonetiler.cpp:2151 msgid "Alternate the sign of scales for each row" msgstr "De vergroting voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2182 +#: ../src/dialogs/clonetiler.cpp:2156 msgid "Alternate the sign of scales for each column" msgstr "De vergroting voor elke kolom om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2195 +#: ../src/dialogs/clonetiler.cpp:2169 msgid "Cumulate the scales for each row" msgstr "De vergrotingen voor elke rij optellen" -#: ../src/dialogs/clonetiler.cpp:2200 +#: ../src/dialogs/clonetiler.cpp:2174 msgid "Cumulate the scales for each column" msgstr "De vergrotingen voor elke kolom optellen" -#: ../src/dialogs/clonetiler.cpp:2209 +#: ../src/dialogs/clonetiler.cpp:2183 msgid "_Rotation" msgstr "_Rotatie" -#: ../src/dialogs/clonetiler.cpp:2217 +#: ../src/dialogs/clonetiler.cpp:2191 msgid "<b>Angle:</b>" msgstr "<b>Hoek:</b>" -#: ../src/dialogs/clonetiler.cpp:2225 +#: ../src/dialogs/clonetiler.cpp:2199 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "Voor elke volgende rij de tegels over deze hoek draaien" -#: ../src/dialogs/clonetiler.cpp:2233 +#: ../src/dialogs/clonetiler.cpp:2207 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "Voor elke volgende kolom de tegels over deze hoek draaien" -#: ../src/dialogs/clonetiler.cpp:2239 +#: ../src/dialogs/clonetiler.cpp:2213 msgid "Randomize the rotation angle by this percentage" msgstr "De draaihoek binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2253 +#: ../src/dialogs/clonetiler.cpp:2227 msgid "Alternate the rotation direction for each row" msgstr "De draairichting voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2258 +#: ../src/dialogs/clonetiler.cpp:2232 msgid "Alternate the rotation direction for each column" msgstr "De draairichting voor elke kolom om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2271 +#: ../src/dialogs/clonetiler.cpp:2245 msgid "Cumulate the rotation for each row" msgstr "De rotaties voor elke rij optellen" -#: ../src/dialogs/clonetiler.cpp:2276 +#: ../src/dialogs/clonetiler.cpp:2250 msgid "Cumulate the rotation for each column" msgstr "De rotaties voor elke kolom optellen" -#: ../src/dialogs/clonetiler.cpp:2285 +#: ../src/dialogs/clonetiler.cpp:2259 msgid "_Blur & opacity" msgstr "_Vervaging & ondoorzichtigheid" -#: ../src/dialogs/clonetiler.cpp:2294 +#: ../src/dialogs/clonetiler.cpp:2268 msgid "<b>Blur:</b>" msgstr "<b>Vervaging:</b>" -#: ../src/dialogs/clonetiler.cpp:2300 +#: ../src/dialogs/clonetiler.cpp:2274 msgid "Blur tiles by this percentage for each row" msgstr "De tegels elke volgende rij met dit percentage vervagen" -#: ../src/dialogs/clonetiler.cpp:2306 +#: ../src/dialogs/clonetiler.cpp:2280 msgid "Blur tiles by this percentage for each column" msgstr "De tegels elke volgende kolom met dit percentage vervagen" -#: ../src/dialogs/clonetiler.cpp:2312 +#: ../src/dialogs/clonetiler.cpp:2286 msgid "Randomize the tile blur by this percentage" msgstr "Tegels binnen dit percentage willekeurig vervagen" -#: ../src/dialogs/clonetiler.cpp:2326 +#: ../src/dialogs/clonetiler.cpp:2300 msgid "Alternate the sign of blur change for each row" msgstr "De vervaging voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2331 +#: ../src/dialogs/clonetiler.cpp:2305 msgid "Alternate the sign of blur change for each column" msgstr "De vervaging voor elke kolom om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2340 +#: ../src/dialogs/clonetiler.cpp:2314 msgid "<b>Opacity:</b>" msgstr "<b>Ondoorzichtigheid</b>:" -#: ../src/dialogs/clonetiler.cpp:2346 +#: ../src/dialogs/clonetiler.cpp:2320 msgid "Decrease tile opacity by this percentage for each row" msgstr "De ondoorzichtigheid elke volgende rij met dit percentage verminderen" -#: ../src/dialogs/clonetiler.cpp:2352 +#: ../src/dialogs/clonetiler.cpp:2326 msgid "Decrease tile opacity by this percentage for each column" msgstr "De ondoorzichtigheid elke volgende kolom met dit percentage verminderen" -#: ../src/dialogs/clonetiler.cpp:2358 +#: ../src/dialogs/clonetiler.cpp:2332 msgid "Randomize the tile opacity by this percentage" msgstr "De ondoorzichtigheid binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2372 +#: ../src/dialogs/clonetiler.cpp:2346 msgid "Alternate the sign of opacity change for each row" msgstr "De doorzichtigheid voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2377 +#: ../src/dialogs/clonetiler.cpp:2351 msgid "Alternate the sign of opacity change for each column" msgstr "De doorzichtigheid voor elke kolom om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2385 +#: ../src/dialogs/clonetiler.cpp:2359 msgid "Co_lor" msgstr "_Kleur" -#: ../src/dialogs/clonetiler.cpp:2390 +#: ../src/dialogs/clonetiler.cpp:2364 msgid "Initial color: " msgstr "Beginkleur: " -#: ../src/dialogs/clonetiler.cpp:2394 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "Initial color of tiled clones" msgstr "Beginkleur van getegelde klonen" -#: ../src/dialogs/clonetiler.cpp:2394 +#: ../src/dialogs/clonetiler.cpp:2368 msgid "Initial color for clones (works only if the original has unset fill or stroke)" msgstr "Beginkleur van klonen (werkt alleen als het origineel geen vulling of lijn heeft)" -#: ../src/dialogs/clonetiler.cpp:2409 +#: ../src/dialogs/clonetiler.cpp:2383 msgid "<b>H:</b>" msgstr "<b>Tint:</b>" -#: ../src/dialogs/clonetiler.cpp:2415 +#: ../src/dialogs/clonetiler.cpp:2389 msgid "Change the tile hue by this percentage for each row" msgstr "De tint elke volgende rij met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2421 +#: ../src/dialogs/clonetiler.cpp:2395 msgid "Change the tile hue by this percentage for each column" msgstr "De tint elke volgende kolom met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2427 +#: ../src/dialogs/clonetiler.cpp:2401 msgid "Randomize the tile hue by this percentage" msgstr "De tint binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2436 +#: ../src/dialogs/clonetiler.cpp:2410 msgid "<b>S:</b>" msgstr "<b>Verzadiging:</b>" -#: ../src/dialogs/clonetiler.cpp:2442 +#: ../src/dialogs/clonetiler.cpp:2416 msgid "Change the color saturation by this percentage for each row" msgstr "De verzadiging elke volgende rij met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2448 +#: ../src/dialogs/clonetiler.cpp:2422 msgid "Change the color saturation by this percentage for each column" msgstr "De verzadiging elke volgende kolom met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2454 +#: ../src/dialogs/clonetiler.cpp:2428 msgid "Randomize the color saturation by this percentage" msgstr "De verzadiging binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2462 +#: ../src/dialogs/clonetiler.cpp:2436 msgid "<b>L:</b>" msgstr "<b>Helderheid:</b>" -#: ../src/dialogs/clonetiler.cpp:2468 +#: ../src/dialogs/clonetiler.cpp:2442 msgid "Change the color lightness by this percentage for each row" msgstr "De helderheid elke volgende rij met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2474 +#: ../src/dialogs/clonetiler.cpp:2448 msgid "Change the color lightness by this percentage for each column" msgstr "De helderheid elke volgende kolom met dit percentage aanpassen" -#: ../src/dialogs/clonetiler.cpp:2480 +#: ../src/dialogs/clonetiler.cpp:2454 msgid "Randomize the color lightness by this percentage" msgstr "De helderheid binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2494 +#: ../src/dialogs/clonetiler.cpp:2468 msgid "Alternate the sign of color changes for each row" msgstr "De kleurwijzigingen voor elke rij om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2499 +#: ../src/dialogs/clonetiler.cpp:2473 msgid "Alternate the sign of color changes for each column" msgstr "De kleurwijzigingen voor elke kolom om-en-om afwisselen" -#: ../src/dialogs/clonetiler.cpp:2507 +#: ../src/dialogs/clonetiler.cpp:2481 msgid "_Trace" msgstr "_Overtrekken" -#: ../src/dialogs/clonetiler.cpp:2514 +#: ../src/dialogs/clonetiler.cpp:2488 msgid "Trace the drawing under the tiles" msgstr "De tekening onder de tegels gebruiken" -#: ../src/dialogs/clonetiler.cpp:2518 +#: ../src/dialogs/clonetiler.cpp:2492 msgid "For each clone, pick a value from the drawing in that clone's location and apply it to the clone" msgstr "Voor elke kloon een eigenschap van de tekening op dat punt gebruiken om die kloon te beΓ―nvloeden." -#: ../src/dialogs/clonetiler.cpp:2532 +#: ../src/dialogs/clonetiler.cpp:2506 msgid "1. Pick from the drawing:" msgstr "1. Kies een eigenschap uit de tekening:" -#: ../src/dialogs/clonetiler.cpp:2544 +#: ../src/dialogs/clonetiler.cpp:2518 msgid "Pick the visible color and opacity" msgstr "Selecteer de zichtbare kleur en de ondoorzichtigheid" -#: ../src/dialogs/clonetiler.cpp:2551 -#: ../src/dialogs/clonetiler.cpp:2692 +#: ../src/dialogs/clonetiler.cpp:2525 +#: ../src/dialogs/clonetiler.cpp:2666 #: ../src/extension/internal/bitmap/opacity.cpp:37 -#: ../src/widgets/toolbox.cpp:4553 +#: ../src/widgets/toolbox.cpp:4601 #: ../share/extensions/interp_att_g.inx.h:14 msgid "Opacity" msgstr "Ondoorzichtigheid" -#: ../src/dialogs/clonetiler.cpp:2552 +#: ../src/dialogs/clonetiler.cpp:2526 msgid "Pick the total accumulated opacity" msgstr "Selecteer de gesommeerde ondoorzichtigheid" -#: ../src/dialogs/clonetiler.cpp:2559 +#: ../src/dialogs/clonetiler.cpp:2533 msgid "R" msgstr "R" -#: ../src/dialogs/clonetiler.cpp:2560 +#: ../src/dialogs/clonetiler.cpp:2534 msgid "Pick the Red component of the color" msgstr "Selecteer de roodcomponent van de kleur" -#: ../src/dialogs/clonetiler.cpp:2567 +#: ../src/dialogs/clonetiler.cpp:2541 msgid "G" msgstr "G" -#: ../src/dialogs/clonetiler.cpp:2568 +#: ../src/dialogs/clonetiler.cpp:2542 msgid "Pick the Green component of the color" msgstr "Selecteer de groencomponent van de kleur" -#: ../src/dialogs/clonetiler.cpp:2575 +#: ../src/dialogs/clonetiler.cpp:2549 msgid "B" msgstr "B" -#: ../src/dialogs/clonetiler.cpp:2576 +#: ../src/dialogs/clonetiler.cpp:2550 msgid "Pick the Blue component of the color" msgstr "Selecteer de blauwcomponent van de kleur" -#: ../src/dialogs/clonetiler.cpp:2583 +#: ../src/dialogs/clonetiler.cpp:2557 msgctxt "Clonetiler color hue" msgid "H" msgstr "T" -#: ../src/dialogs/clonetiler.cpp:2584 +#: ../src/dialogs/clonetiler.cpp:2558 msgid "Pick the hue of the color" msgstr "De tint van de kleur kiezen" -#: ../src/dialogs/clonetiler.cpp:2591 +#: ../src/dialogs/clonetiler.cpp:2565 msgctxt "Clonetiler color saturation" msgid "S" msgstr "V" -#: ../src/dialogs/clonetiler.cpp:2592 +#: ../src/dialogs/clonetiler.cpp:2566 msgid "Pick the saturation of the color" msgstr "De verzadiging van de kleur kiezen" -#: ../src/dialogs/clonetiler.cpp:2599 +#: ../src/dialogs/clonetiler.cpp:2573 msgctxt "Clonetiler color lightness" msgid "L" msgstr "L" -#: ../src/dialogs/clonetiler.cpp:2600 +#: ../src/dialogs/clonetiler.cpp:2574 msgid "Pick the lightness of the color" msgstr "De helderheid van de kleur kiezen" -#: ../src/dialogs/clonetiler.cpp:2610 +#: ../src/dialogs/clonetiler.cpp:2584 msgid "2. Tweak the picked value:" msgstr "2. De geselecteerde eigenschap fijnafstemmen:" -#: ../src/dialogs/clonetiler.cpp:2620 +#: ../src/dialogs/clonetiler.cpp:2594 msgid "Gamma-correct:" msgstr "Gammacorrectie:" -#: ../src/dialogs/clonetiler.cpp:2624 +#: ../src/dialogs/clonetiler.cpp:2598 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" msgstr "Het middengebied van de gekozen eigenschap verhogen (>0) of verlagen (<0)" -#: ../src/dialogs/clonetiler.cpp:2631 +#: ../src/dialogs/clonetiler.cpp:2605 msgid "Randomize:" msgstr "Willekeur:" -#: ../src/dialogs/clonetiler.cpp:2635 +#: ../src/dialogs/clonetiler.cpp:2609 msgid "Randomize the picked value by this percentage" msgstr "De geselecteerde eigenschap binnen dit percentage willekeurig aanpassen" -#: ../src/dialogs/clonetiler.cpp:2642 +#: ../src/dialogs/clonetiler.cpp:2616 msgid "Invert:" msgstr "Omdraaien:" -#: ../src/dialogs/clonetiler.cpp:2646 +#: ../src/dialogs/clonetiler.cpp:2620 msgid "Invert the picked value" msgstr "Draai de geselecteerde eigenschap om" -#: ../src/dialogs/clonetiler.cpp:2652 +#: ../src/dialogs/clonetiler.cpp:2626 msgid "3. Apply the value to the clones':" msgstr "3. De relatie tussen de eigenschap en de klonen:" -#: ../src/dialogs/clonetiler.cpp:2662 +#: ../src/dialogs/clonetiler.cpp:2636 msgid "Presence" msgstr "Aanwezigheid" -#: ../src/dialogs/clonetiler.cpp:2665 +#: ../src/dialogs/clonetiler.cpp:2639 msgid "Each clone is created with the probability determined by the picked value in that point" msgstr "De kans dat een kloon op een plek wordt gemaakt is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt." -#: ../src/dialogs/clonetiler.cpp:2672 +#: ../src/dialogs/clonetiler.cpp:2646 msgid "Size" msgstr "Afmeting" -#: ../src/dialogs/clonetiler.cpp:2675 +#: ../src/dialogs/clonetiler.cpp:2649 msgid "Each clone's size is determined by the picked value in that point" msgstr "De grootte van een kloon is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt" -#: ../src/dialogs/clonetiler.cpp:2685 +#: ../src/dialogs/clonetiler.cpp:2659 msgid "Each clone is painted by the picked color (the original must have unset fill or stroke)" msgstr "Klonen worden getekend in de geselecteerde kleur (werkt alleen als de kleur van de lijnen of de vulling van het origineel verwijderd is)" -#: ../src/dialogs/clonetiler.cpp:2695 +#: ../src/dialogs/clonetiler.cpp:2669 msgid "Each clone's opacity is determined by the picked value in that point" msgstr "De ondoorzichtigheid van een kloon is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt" -#: ../src/dialogs/clonetiler.cpp:2722 +#: ../src/dialogs/clonetiler.cpp:2696 msgid "How many rows in the tiling" msgstr "Hoeveel rijen er betegeld moeten worden" -#: ../src/dialogs/clonetiler.cpp:2742 +#: ../src/dialogs/clonetiler.cpp:2716 msgid "How many columns in the tiling" msgstr "Hoeveel kolommen er betegeld moeten worden" -#: ../src/dialogs/clonetiler.cpp:2772 +#: ../src/dialogs/clonetiler.cpp:2746 msgid "Width of the rectangle to be filled" msgstr "Breedte van de rechthoek die gevuld moet worden" -#: ../src/dialogs/clonetiler.cpp:2797 +#: ../src/dialogs/clonetiler.cpp:2771 msgid "Height of the rectangle to be filled" msgstr "Hoogte van de rechthoek die gevuld moet worden" -#: ../src/dialogs/clonetiler.cpp:2812 +#: ../src/dialogs/clonetiler.cpp:2786 msgid "Rows, columns: " msgstr "Rijen, kolommen: " -#: ../src/dialogs/clonetiler.cpp:2813 +#: ../src/dialogs/clonetiler.cpp:2787 msgid "Create the specified number of rows and columns" msgstr "Het opgegeven aantal rijen en kolommen aanmaken" -#: ../src/dialogs/clonetiler.cpp:2822 +#: ../src/dialogs/clonetiler.cpp:2796 msgid "Width, height: " msgstr "Breedte, hoogte: " -#: ../src/dialogs/clonetiler.cpp:2823 +#: ../src/dialogs/clonetiler.cpp:2797 msgid "Fill the specified width and height with the tiling" msgstr "Vul een gebied met opgegeven breedte en hoogte met de betegeling" -#: ../src/dialogs/clonetiler.cpp:2839 +#: ../src/dialogs/clonetiler.cpp:2813 msgid "Use saved size and position of the tile" msgstr "De opgeslagen grootte en positie van de tegel gebruiken" -#: ../src/dialogs/clonetiler.cpp:2842 +#: ../src/dialogs/clonetiler.cpp:2816 msgid "Pretend that the size and position of the tile are the same as the last time you tiled it (if any), instead of using the current size" msgstr "Doen alsof de grootte en positie van de tegel hetzelfde zijn als de laatste keer dat u er mee tegelde, in plaats van de huidige grootte en positie te gebruiken." -#: ../src/dialogs/clonetiler.cpp:2866 +#: ../src/dialogs/clonetiler.cpp:2840 msgid " <b>_Create</b> " msgstr " <b>_Aanmaken</b> " -#: ../src/dialogs/clonetiler.cpp:2868 +#: ../src/dialogs/clonetiler.cpp:2842 msgid "Create and tile the clones of the selection" msgstr "Maak klonen van de selectie en gebruik ze als betegeling" @@ -4500,28 +4539,28 @@ msgstr "Maak klonen van de selectie en gebruik ze als betegeling" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/dialogs/clonetiler.cpp:2883 +#: ../src/dialogs/clonetiler.cpp:2857 msgid " _Unclump " msgstr " _Ontklonteren " -#: ../src/dialogs/clonetiler.cpp:2884 +#: ../src/dialogs/clonetiler.cpp:2858 msgid "Spread out clones to reduce clumping; can be applied repeatedly" msgstr "De klonen verspreiden om ze te ontklonteren; kan herhaaldelijk worden toegepast" -#: ../src/dialogs/clonetiler.cpp:2890 +#: ../src/dialogs/clonetiler.cpp:2864 msgid " Re_move " msgstr " Ver_wijderen " -#: ../src/dialogs/clonetiler.cpp:2891 +#: ../src/dialogs/clonetiler.cpp:2865 msgid "Remove existing tiled clones of the selected object (siblings only)" msgstr "Verwijder bestaande getegelde klonen van het geselecteerde object" -#: ../src/dialogs/clonetiler.cpp:2907 +#: ../src/dialogs/clonetiler.cpp:2881 msgid " R_eset " msgstr " _Beginwaarden " #. TRANSLATORS: "change" is a noun here -#: ../src/dialogs/clonetiler.cpp:2909 +#: ../src/dialogs/clonetiler.cpp:2883 msgid "Reset all shifts, scales, rotates, opacity and color changes in the dialog to zero" msgstr "Alle verplaatsingen, vergrotingen, rotaties en kleurveranderingen in het venster terugzetten op nul" @@ -4549,7 +4588,8 @@ msgid "<big><b>Export area</b></big>" msgstr "<big><b>Exportgebied</b></big>" #: ../src/dialogs/export.cpp:290 -#: ../src/widgets/toolbox.cpp:1677 +#: ../src/widgets/toolbox.cpp:1680 +#: ../src/widgets/toolbox.cpp:1688 #: ../share/extensions/gears.inx.h:7 msgid "Units:" msgstr "Eenheden:" @@ -4585,7 +4625,7 @@ msgstr "<big><b>Bitmap-grootte</b></big>" #: ../src/dialogs/export.cpp:487 #: ../src/live_effects/lpe-bendpath.cpp:56 #: ../src/live_effects/lpe-patternalongpath.cpp:64 -#: ../src/ui/dialog/transformation.cpp:88 +#: ../src/ui/dialog/transformation.cpp:87 #: ../src/ui/widget/page-sizer.cpp:232 msgid "_Width:" msgstr "B_reedte:" @@ -4600,14 +4640,14 @@ msgid "dp_i" msgstr "pp_i" #: ../src/dialogs/export.cpp:501 -#: ../src/ui/dialog/transformation.cpp:90 +#: ../src/ui/dialog/transformation.cpp:89 #: ../src/ui/widget/page-sizer.cpp:233 msgid "_Height:" msgstr "_Hoogte:" #: ../src/dialogs/export.cpp:512 -#: ../src/ui/dialog/inkscape-preferences.cpp:836 -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "dpi" msgstr "ppi" @@ -4787,7 +4827,7 @@ msgstr "Paden, lijnen en veellijnen doorzoeken" #: ../src/dialogs/find.cpp:604 #: ../src/ui/dialog/find.cpp:78 -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2340 msgid "Paths" msgstr "Paden" @@ -4858,9 +4898,9 @@ msgstr "Zoek objecten op tekstinhoud (exacte of gedeeltelijke overeenkomst)" #. Create the label for the object id #: ../src/dialogs/find.cpp:695 #: ../src/dialogs/item-properties.cpp:112 -#: ../src/dialogs/item-properties.cpp:326 -#: ../src/dialogs/item-properties.cpp:435 -#: ../src/dialogs/item-properties.cpp:442 +#: ../src/dialogs/item-properties.cpp:324 +#: ../src/dialogs/item-properties.cpp:433 +#: ../src/dialogs/item-properties.cpp:440 #: ../src/ui/dialog/find.cpp:64 msgid "_ID:" msgstr "_ID:" @@ -4958,98 +4998,99 @@ msgstr "Alle objecten selecteren met de hierboven ingevulde eigenschappen" msgid "The id= attribute (only letters, digits, and the characters .-_: allowed)" msgstr "Het 'id='-attribuut (alleen letters, cijfers en de tekens .-_: zijn toegestaan)" -#. Button for setting the object's id, label, title and description. -#: ../src/dialogs/item-properties.cpp:135 -#: ../src/verbs.cpp:2488 -#: ../src/verbs.cpp:2494 -msgid "_Set" -msgstr "In_stellen" - #. Create the label for the object label -#: ../src/dialogs/item-properties.cpp:144 +#: ../src/dialogs/item-properties.cpp:135 +#: ../src/ui/dialog/guides.cpp:45 msgid "_Label:" msgstr "_Label:" -#: ../src/dialogs/item-properties.cpp:153 +#: ../src/dialogs/item-properties.cpp:144 msgid "A freeform label for the object" msgstr "Een vrij te kiezen label" #. Create the label for the object title -#: ../src/dialogs/item-properties.cpp:165 +#: ../src/dialogs/item-properties.cpp:156 msgid "_Title:" msgstr "_Titel:" #. Create the frame for the object description -#: ../src/dialogs/item-properties.cpp:183 +#: ../src/dialogs/item-properties.cpp:174 msgid "_Description" msgstr "_Beschrijving" #. Hide -#: ../src/dialogs/item-properties.cpp:214 +#: ../src/dialogs/item-properties.cpp:205 msgid "_Hide" msgstr "_Verbergen" -#: ../src/dialogs/item-properties.cpp:215 +#: ../src/dialogs/item-properties.cpp:206 msgid "Check to make the object invisible" msgstr "Selecteer dit om het object onzichtbaar te maken" +#. Button for setting the object's id, label, title and description. +#: ../src/dialogs/item-properties.cpp:214 +#: ../src/verbs.cpp:2488 +#: ../src/verbs.cpp:2494 +msgid "_Set" +msgstr "In_stellen" + #. Lock #. TRANSLATORS: "Lock" is a verb here -#: ../src/dialogs/item-properties.cpp:224 +#: ../src/dialogs/item-properties.cpp:222 msgid "L_ock" msgstr "Ver_grendelen" -#: ../src/dialogs/item-properties.cpp:225 +#: ../src/dialogs/item-properties.cpp:223 msgid "Check to make the object insensitive (not selectable by mouse)" msgstr "Selecteer dit om het object ongevoelig te maken (niet-selecteerbaar met de muis)" #. Create the frame for interactivity options -#: ../src/dialogs/item-properties.cpp:235 +#: ../src/dialogs/item-properties.cpp:233 msgid "_Interactivity" msgstr "I_nteractiviteit" -#: ../src/dialogs/item-properties.cpp:309 -#: ../src/dialogs/item-properties.cpp:316 +#: ../src/dialogs/item-properties.cpp:307 +#: ../src/dialogs/item-properties.cpp:314 msgid "Ref" msgstr "Referentie" -#: ../src/dialogs/item-properties.cpp:394 +#: ../src/dialogs/item-properties.cpp:392 msgid "Lock object" msgstr "Object vergrendelen" -#: ../src/dialogs/item-properties.cpp:394 +#: ../src/dialogs/item-properties.cpp:392 msgid "Unlock object" msgstr "Object ontgrendelen" -#: ../src/dialogs/item-properties.cpp:413 +#: ../src/dialogs/item-properties.cpp:411 msgid "Hide object" msgstr "Object verbergen" -#: ../src/dialogs/item-properties.cpp:413 +#: ../src/dialogs/item-properties.cpp:411 msgid "Unhide object" msgstr "Object weergeven" -#: ../src/dialogs/item-properties.cpp:437 +#: ../src/dialogs/item-properties.cpp:435 msgid "Id invalid! " msgstr "Ongeldig ID. " -#: ../src/dialogs/item-properties.cpp:439 +#: ../src/dialogs/item-properties.cpp:437 msgid "Id exists! " msgstr "ID bestaat al. " -#: ../src/dialogs/item-properties.cpp:446 +#: ../src/dialogs/item-properties.cpp:444 msgid "Set object ID" msgstr "Object-ID instellen" -#: ../src/dialogs/item-properties.cpp:461 +#: ../src/dialogs/item-properties.cpp:459 msgid "Set object label" msgstr "Objectlabel instellen" -#: ../src/dialogs/item-properties.cpp:469 +#: ../src/dialogs/item-properties.cpp:467 msgid "Set object title" msgstr "Objecttitel instellen" -#: ../src/dialogs/item-properties.cpp:479 +#: ../src/dialogs/item-properties.cpp:477 msgid "Set object description" msgstr "Objectomschrijving instellen" @@ -5114,19 +5155,17 @@ msgstr "URL:" #: ../src/dialogs/object-attributes.cpp:52 #: ../src/dialogs/object-attributes.cpp:60 -#: ../src/ui/dialog/guides.cpp:43 #: ../src/ui/dialog/tile.cpp:618 #: ../src/widgets/desktop-widget.cpp:514 -#: ../src/widgets/toolbox.cpp:1563 +#: ../src/widgets/toolbox.cpp:1565 msgid "X:" msgstr "X:" #: ../src/dialogs/object-attributes.cpp:53 #: ../src/dialogs/object-attributes.cpp:61 -#: ../src/ui/dialog/guides.cpp:44 #: ../src/ui/dialog/tile.cpp:619 #: ../src/widgets/desktop-widget.cpp:517 -#: ../src/widgets/toolbox.cpp:1581 +#: ../src/widgets/toolbox.cpp:1583 msgid "Y:" msgstr "Y:" @@ -5137,10 +5176,10 @@ msgstr "Y:" #: ../src/extension/internal/bitmap/sample.cpp:40 #: ../src/extension/internal/bluredge.cpp:136 #: ../src/extension/internal/filter/abc.h:574 -#: ../src/widgets/toolbox.cpp:4347 -#: ../src/widgets/toolbox.cpp:4667 -#: ../src/widgets/toolbox.cpp:5162 -#: ../src/widgets/toolbox.cpp:6224 +#: ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 +#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:6266 #: ../share/extensions/foldablebox.inx.h:9 msgid "Width:" msgstr "Breedte:" @@ -5244,61 +5283,71 @@ msgstr "_Begin" msgid "Start the check" msgstr "De controle beginnen" -#: ../src/dialogs/text-edit.cpp:204 +#: ../src/dialogs/text-edit.cpp:202 #: ../src/ui/dialog/svg-fonts-dialog.cpp:886 msgid "_Font" msgstr "_Lettertype" -#: ../src/dialogs/text-edit.cpp:227 +#: ../src/dialogs/text-edit.cpp:225 #: ../share/extensions/svgcalendar.inx.h:10 msgid "Layout" msgstr "Lay-out" -#: ../src/dialogs/text-edit.cpp:241 +#: ../src/dialogs/text-edit.cpp:239 msgid "Align lines left" msgstr "Regels links uitlijnen" #. TRANSLATORS: `Center' here is a verb. -#: ../src/dialogs/text-edit.cpp:256 +#: ../src/dialogs/text-edit.cpp:254 msgid "Center lines" msgstr "Regels centreren" -#: ../src/dialogs/text-edit.cpp:270 +#: ../src/dialogs/text-edit.cpp:268 msgid "Align lines right" msgstr "Regels rechts uitlijnen" -#: ../src/dialogs/text-edit.cpp:284 +#: ../src/dialogs/text-edit.cpp:282 msgid "Justify lines" msgstr "Lijnen uitvullen" -#: ../src/dialogs/text-edit.cpp:306 -#: ../src/widgets/toolbox.cpp:7713 +#: ../src/dialogs/text-edit.cpp:304 +#: ../src/widgets/toolbox.cpp:7755 msgid "Horizontal text" msgstr "Horizontale tekst" -#: ../src/dialogs/text-edit.cpp:320 -#: ../src/widgets/toolbox.cpp:7720 +#: ../src/dialogs/text-edit.cpp:318 +#: ../src/widgets/toolbox.cpp:7762 msgid "Vertical text" msgstr "Verticale tekst" -#: ../src/dialogs/text-edit.cpp:335 +#: ../src/dialogs/text-edit.cpp:333 msgid "Line spacing:" msgstr "Regelafstand:" -#: ../src/dialogs/text-edit.cpp:380 -#: ../src/menus-skeleton.h:236 +#: ../src/dialogs/text-edit.cpp:389 +#: ../src/menus-skeleton.h:237 msgid "_Text" msgstr "_Tekst" -#: ../src/dialogs/text-edit.cpp:427 +#: ../src/dialogs/text-edit.cpp:436 msgid "Set as _default" msgstr "_Instellen als standaard" -#: ../src/dialogs/text-edit.cpp:678 +#: ../src/dialogs/text-edit.cpp:695 #: ../src/text-context.cpp:1518 msgid "Set text style" msgstr "Tekststijl instellen" +#. TRANSLATORS: Test string used in text and font dialog (when no +#. * text has been entered) to get a preview of the font. Choose +#. * some representative characters that users of your locale will be +#. * interested in. +#: ../src/dialogs/text-edit.cpp:732 +#: ../src/dialogs/text-edit.cpp:868 +#: ../src/dialogs/text-edit.cpp:921 +msgid "AaBbCcIiPpQq12369$€¢?.;/()" +msgstr "AaBbCcIiMmPpQqWw(12369)€£$!?.;/@" + #: ../src/dialogs/xml-tree.cpp:157 msgid "<b>Click</b> to select nodes, <b>drag</b> to rearrange." msgstr "<b>Klik</b> om een item te selecteren, <b>sleep</b> om het te verplaatsen." @@ -5316,258 +5365,258 @@ msgstr "Attribuut <b>%s</b> is geselecteerd. Druk op <b>Ctrl+Enter</b> om wijzig msgid "Drag to reorder nodes" msgstr "Sleep om de items te herschikken" -#: ../src/dialogs/xml-tree.cpp:287 +#: ../src/dialogs/xml-tree.cpp:284 msgid "New element node" msgstr "Nieuw elementitem" -#: ../src/dialogs/xml-tree.cpp:309 +#: ../src/dialogs/xml-tree.cpp:306 msgid "New text node" msgstr "Nieuw tekstitem" -#: ../src/dialogs/xml-tree.cpp:330 -#: ../src/dialogs/xml-tree.cpp:1416 +#: ../src/dialogs/xml-tree.cpp:327 +#: ../src/dialogs/xml-tree.cpp:1428 msgid "Duplicate node" msgstr "Item dupliceren" -#: ../src/dialogs/xml-tree.cpp:351 +#: ../src/dialogs/xml-tree.cpp:349 msgid "nodeAsInXMLdialogTooltip|Delete node" msgstr "Item verwijderen" #: ../src/dialogs/xml-tree.cpp:367 -#: ../src/dialogs/xml-tree.cpp:1578 +#: ../src/dialogs/xml-tree.cpp:1590 msgid "Unindent node" msgstr "Item minder inspringen" -#: ../src/dialogs/xml-tree.cpp:382 -#: ../src/dialogs/xml-tree.cpp:1557 +#: ../src/dialogs/xml-tree.cpp:384 +#: ../src/dialogs/xml-tree.cpp:1569 msgid "Indent node" msgstr "Item meer inspringen" -#: ../src/dialogs/xml-tree.cpp:394 -#: ../src/dialogs/xml-tree.cpp:1510 +#: ../src/dialogs/xml-tree.cpp:398 +#: ../src/dialogs/xml-tree.cpp:1522 msgid "Raise node" msgstr "Item omhoog brengen" -#: ../src/dialogs/xml-tree.cpp:406 -#: ../src/dialogs/xml-tree.cpp:1527 +#: ../src/dialogs/xml-tree.cpp:412 +#: ../src/dialogs/xml-tree.cpp:1539 msgid "Lower node" msgstr "Item omlaag brengen" -#: ../src/dialogs/xml-tree.cpp:451 -#: ../src/dialogs/xml-tree.cpp:1451 +#: ../src/dialogs/xml-tree.cpp:459 +#: ../src/dialogs/xml-tree.cpp:1463 msgid "Delete attribute" msgstr "Attribuut verwijderen" #. TRANSLATORS: "Attribute" is a noun here -#: ../src/dialogs/xml-tree.cpp:496 +#: ../src/dialogs/xml-tree.cpp:504 msgid "Attribute name" msgstr "Attribuutnaam" #. TRANSLATORS: "Set" is a verb here -#: ../src/dialogs/xml-tree.cpp:516 -#: ../src/widgets/sp-attribute-widget.cpp:159 -#: ../src/widgets/sp-attribute-widget.cpp:765 +#: ../src/dialogs/xml-tree.cpp:524 +#: ../src/widgets/sp-attribute-widget.cpp:157 +#: ../src/widgets/sp-attribute-widget.cpp:759 msgid "Set attribute" msgstr "Attribuut instellen" #. TRANSLATORS: "Set" is a verb here -#: ../src/dialogs/xml-tree.cpp:518 +#: ../src/dialogs/xml-tree.cpp:526 msgid "Set" msgstr "Instellen" #. TRANSLATORS: "Attribute" is a noun here -#: ../src/dialogs/xml-tree.cpp:541 +#: ../src/dialogs/xml-tree.cpp:549 msgid "Attribute value" msgstr "Attribuutwaarde" -#: ../src/dialogs/xml-tree.cpp:884 +#: ../src/dialogs/xml-tree.cpp:896 msgid "Drag XML subtree" msgstr "Versleep een XML-subboom" -#: ../src/dialogs/xml-tree.cpp:1319 +#: ../src/dialogs/xml-tree.cpp:1331 msgid "New element node..." msgstr "Nieuw item toevoegen..." -#: ../src/dialogs/xml-tree.cpp:1341 +#: ../src/dialogs/xml-tree.cpp:1353 msgid "Cancel" msgstr "Annuleren" -#: ../src/dialogs/xml-tree.cpp:1348 +#: ../src/dialogs/xml-tree.cpp:1360 msgid "Create" msgstr "Aanmaken" -#: ../src/dialogs/xml-tree.cpp:1382 +#: ../src/dialogs/xml-tree.cpp:1394 msgid "Create new element node" msgstr "Nieuw item maken" -#: ../src/dialogs/xml-tree.cpp:1398 +#: ../src/dialogs/xml-tree.cpp:1410 msgid "Create new text node" msgstr "Nieuw tekstitem maken" -#: ../src/dialogs/xml-tree.cpp:1433 +#: ../src/dialogs/xml-tree.cpp:1445 msgid "nodeAsInXMLinHistoryDialog|Delete node" msgstr "Item verwijderen" -#: ../src/dialogs/xml-tree.cpp:1480 +#: ../src/dialogs/xml-tree.cpp:1492 msgid "Change attribute" msgstr "Attribuut instellen" -#: ../src/display/canvas-axonomgrid.cpp:393 -#: ../src/display/canvas-grid.cpp:671 +#: ../src/display/canvas-axonomgrid.cpp:356 +#: ../src/display/canvas-grid.cpp:674 msgid "Grid _units:" msgstr "Raster_eenheid:" -#: ../src/display/canvas-axonomgrid.cpp:395 -#: ../src/display/canvas-grid.cpp:673 +#: ../src/display/canvas-axonomgrid.cpp:358 +#: ../src/display/canvas-grid.cpp:676 msgid "_Origin X:" msgstr "X-_oorsprong:" -#: ../src/display/canvas-axonomgrid.cpp:395 -#: ../src/display/canvas-grid.cpp:673 -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/display/canvas-axonomgrid.cpp:358 +#: ../src/display/canvas-grid.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "X coordinate of grid origin" msgstr "X-coΓ¶rdinaat vanaf de rasteroorsprong" -#: ../src/display/canvas-axonomgrid.cpp:397 -#: ../src/display/canvas-grid.cpp:675 +#: ../src/display/canvas-axonomgrid.cpp:360 +#: ../src/display/canvas-grid.cpp:678 msgid "O_rigin Y:" msgstr "Y-oo_rsprong:" -#: ../src/display/canvas-axonomgrid.cpp:397 -#: ../src/display/canvas-grid.cpp:675 -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/display/canvas-axonomgrid.cpp:360 +#: ../src/display/canvas-grid.cpp:678 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Y coordinate of grid origin" msgstr "Y-coΓ¶rdinaat vanaf de rasteroorsprong" -#: ../src/display/canvas-axonomgrid.cpp:399 -#: ../src/display/canvas-grid.cpp:679 +#: ../src/display/canvas-axonomgrid.cpp:362 +#: ../src/display/canvas-grid.cpp:682 msgid "Spacing _Y:" msgstr "_Y-tussenafstand:" -#: ../src/display/canvas-axonomgrid.cpp:399 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/display/canvas-axonomgrid.cpp:362 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Base length of z-axis" msgstr "Basislengte van z-as" -#: ../src/display/canvas-axonomgrid.cpp:401 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 -#: ../src/widgets/toolbox.cpp:3660 +#: ../src/display/canvas-axonomgrid.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle X:" msgstr "X-hoek:" -#: ../src/display/canvas-axonomgrid.cpp:401 -#: ../src/ui/dialog/inkscape-preferences.cpp:1073 +#: ../src/display/canvas-axonomgrid.cpp:364 +#: ../src/ui/dialog/inkscape-preferences.cpp:1074 msgid "Angle of x-axis" msgstr "Hoek van de x-as" -#: ../src/display/canvas-axonomgrid.cpp:403 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 -#: ../src/widgets/toolbox.cpp:3739 +#: ../src/display/canvas-axonomgrid.cpp:366 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle Z:" msgstr "Z-hoek:" -#: ../src/display/canvas-axonomgrid.cpp:403 -#: ../src/ui/dialog/inkscape-preferences.cpp:1074 +#: ../src/display/canvas-axonomgrid.cpp:366 +#: ../src/ui/dialog/inkscape-preferences.cpp:1075 msgid "Angle of z-axis" msgstr "Hoek van de z-as" -#: ../src/display/canvas-axonomgrid.cpp:407 -#: ../src/display/canvas-grid.cpp:683 +#: ../src/display/canvas-axonomgrid.cpp:370 +#: ../src/display/canvas-grid.cpp:686 msgid "Grid line _color:" msgstr "Kleur rasterlijn:" -#: ../src/display/canvas-axonomgrid.cpp:407 -#: ../src/display/canvas-grid.cpp:683 +#: ../src/display/canvas-axonomgrid.cpp:370 +#: ../src/display/canvas-grid.cpp:686 msgid "Grid line color" msgstr "Kleur hulplijnen" -#: ../src/display/canvas-axonomgrid.cpp:407 -#: ../src/display/canvas-grid.cpp:683 +#: ../src/display/canvas-axonomgrid.cpp:370 +#: ../src/display/canvas-grid.cpp:686 msgid "Color of grid lines" msgstr "Kleur van de rasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:412 -#: ../src/display/canvas-grid.cpp:688 +#: ../src/display/canvas-axonomgrid.cpp:375 +#: ../src/display/canvas-grid.cpp:691 msgid "Ma_jor grid line color:" msgstr "Kleur _hoofdrasterlijnen:" -#: ../src/display/canvas-axonomgrid.cpp:412 -#: ../src/display/canvas-grid.cpp:688 +#: ../src/display/canvas-axonomgrid.cpp:375 +#: ../src/display/canvas-grid.cpp:691 msgid "Major grid line color" msgstr "Kleur van hoofdrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:413 -#: ../src/display/canvas-grid.cpp:689 +#: ../src/display/canvas-axonomgrid.cpp:376 +#: ../src/display/canvas-grid.cpp:692 msgid "Color of the major (highlighted) grid lines" msgstr "Kleur van de (geselecteerde) hoofdrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:417 -#: ../src/display/canvas-grid.cpp:693 +#: ../src/display/canvas-axonomgrid.cpp:380 +#: ../src/display/canvas-grid.cpp:696 msgid "_Major grid line every:" msgstr "Een hoofdr_asterlijn elke:" -#: ../src/display/canvas-axonomgrid.cpp:417 -#: ../src/display/canvas-grid.cpp:693 +#: ../src/display/canvas-axonomgrid.cpp:380 +#: ../src/display/canvas-grid.cpp:696 msgid "lines" msgstr "rasterlijnen" -#: ../src/display/canvas-grid.cpp:40 +#: ../src/display/canvas-grid.cpp:41 msgid "Rectangular grid" msgstr "Rechthoekig raster" -#: ../src/display/canvas-grid.cpp:41 +#: ../src/display/canvas-grid.cpp:42 msgid "Axonometric grid" msgstr "Axonometrisch raster" -#: ../src/display/canvas-grid.cpp:259 +#: ../src/display/canvas-grid.cpp:262 msgid "Create new grid" msgstr "Nieuw raster maken" -#: ../src/display/canvas-grid.cpp:325 +#: ../src/display/canvas-grid.cpp:328 msgid "_Enabled" msgstr "_Actief" -#: ../src/display/canvas-grid.cpp:326 +#: ../src/display/canvas-grid.cpp:329 msgid "Determines whether to snap to this grid or not. Can be 'on' for invisible grids." msgstr "Bepaalt of er aan dit raster gekleefd moet worden of niet. Kan ingeschakeld zijn voor onzichtbare rasters." -#: ../src/display/canvas-grid.cpp:330 +#: ../src/display/canvas-grid.cpp:333 msgid "Snap to visible _grid lines only" msgstr "Alleen aan zichtbare _rasterlijnen kleven" -#: ../src/display/canvas-grid.cpp:331 +#: ../src/display/canvas-grid.cpp:334 msgid "When zoomed out, not all grid lines will be displayed. Only the visible ones will be snapped to" msgstr "Bij uitzoomen worden niet alle rasterlijnen getoond. Er wordt alleen gekleefd aan de zichtbare rasterlijnen" -#: ../src/display/canvas-grid.cpp:335 +#: ../src/display/canvas-grid.cpp:338 msgid "_Visible" msgstr "_Zichtbaar" -#: ../src/display/canvas-grid.cpp:336 +#: ../src/display/canvas-grid.cpp:339 msgid "Determines whether the grid is displayed or not. Objects are still snapped to invisible grids." msgstr "Bepaalt of het raster weergegven moet worden of niet. Objecten worden ook aan onzichtbare rasters gekleefd." -#: ../src/display/canvas-grid.cpp:677 +#: ../src/display/canvas-grid.cpp:680 msgid "Spacing _X:" msgstr "_X-tussenafstand:" -#: ../src/display/canvas-grid.cpp:677 -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/display/canvas-grid.cpp:680 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Distance between vertical grid lines" msgstr "Afstand tussen verticale rasterlijnen" -#: ../src/display/canvas-grid.cpp:679 -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 +#: ../src/display/canvas-grid.cpp:682 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 msgid "Distance between horizontal grid lines" msgstr "Afstand tussen horizontale rasterlijnen" -#: ../src/display/canvas-grid.cpp:712 +#: ../src/display/canvas-grid.cpp:715 msgid "_Show dots instead of lines" msgstr "_Punten weergeven in plaats van lijnen" -#: ../src/display/canvas-grid.cpp:713 +#: ../src/display/canvas-grid.cpp:716 msgid "If set, displays dots at gridpoints instead of gridlines" msgstr "Indien aangevinkt, worden punten op de rasterkruispunten weergegeven in plaats van rasterlijnen." @@ -5668,13 +5717,13 @@ msgid "quadrant point" msgstr "punt kwadrant" #: ../src/display/snap-indicator.cpp:142 -msgid "center" -msgstr "midden" - -#: ../src/display/snap-indicator.cpp:145 msgid "corner" msgstr "hoek" +#: ../src/display/snap-indicator.cpp:145 +msgid "text anchor" +msgstr "" + #: ../src/display/snap-indicator.cpp:148 msgid "text baseline" msgstr "grondlijn tekst" @@ -5746,22 +5795,19 @@ msgid "Quadrant point" msgstr "Punt kwadrant" #: ../src/display/snap-indicator.cpp:210 -msgid "Center" -msgstr "Midden" - -#: ../src/display/snap-indicator.cpp:213 msgid "Corner" msgstr "Hoek" -#: ../src/display/snap-indicator.cpp:216 -msgid "Text baseline" -msgstr "Grondlijn tekst" +#: ../src/display/snap-indicator.cpp:213 +#, fuzzy +msgid "Text anchor" +msgstr "Lettertype tekst" -#: ../src/display/snap-indicator.cpp:219 +#: ../src/display/snap-indicator.cpp:216 msgid "Multiple of grid spacing" msgstr "Veelvoud van rasterafstand" -#: ../src/display/snap-indicator.cpp:250 +#: ../src/display/snap-indicator.cpp:247 msgid " to " msgstr " met " @@ -5781,80 +5827,80 @@ msgid "Unnamed document %d" msgstr "Naamloos document %d" #. We hit green anchor, closing Green-Blue-Red -#: ../src/draw-context.cpp:561 +#: ../src/draw-context.cpp:562 msgid "Path is closed." msgstr "Het pad is gesloten." #. We hit bot start and end of single curve, closing paths -#: ../src/draw-context.cpp:576 +#: ../src/draw-context.cpp:577 msgid "Closing path." msgstr "Het pad wordt gesloten." -#: ../src/draw-context.cpp:686 +#: ../src/draw-context.cpp:687 msgid "Draw path" msgstr "Pad tekenen" -#: ../src/draw-context.cpp:847 +#: ../src/draw-context.cpp:848 msgid "Creating single dot" msgstr "Maken van één stip" -#: ../src/draw-context.cpp:848 +#: ../src/draw-context.cpp:849 msgid "Create single dot" msgstr "Enkele stip maken" #. alpha of color under cursor, to show in the statusbar #. locale-sensitive printf is OK, since this goes to the UI, not into SVG -#: ../src/dropper-context.cpp:313 +#: ../src/dropper-context.cpp:289 #, c-format msgid " alpha %.3g" msgstr " alfa %.3g" #. where the color is picked, to show in the statusbar -#: ../src/dropper-context.cpp:315 +#: ../src/dropper-context.cpp:291 #, c-format msgid ", averaged with radius %d" msgstr ", het gemiddelde in een cirkel met straal %d" -#: ../src/dropper-context.cpp:315 +#: ../src/dropper-context.cpp:291 #, c-format msgid " under cursor" msgstr " onder de cursor" #. message, to show in the statusbar -#: ../src/dropper-context.cpp:317 +#: ../src/dropper-context.cpp:293 msgid "<b>Release mouse</b> to set color." msgstr "<b>Laat de muisknop los</b> om de kleur in te stellen." -#: ../src/dropper-context.cpp:317 +#: ../src/dropper-context.cpp:293 #: ../src/tools-switch.cpp:223 msgid "<b>Click</b> to set fill, <b>Shift+click</b> to set stroke; <b>drag</b> to average color in area; with <b>Alt</b> to pick inverse color; <b>Ctrl+C</b> to copy the color under mouse to clipboard" msgstr "<b>Klik</b> om de vulkleur te kiezen, <b>Shift+klik</b> voor lijnkleur, <b>sleep</b> voor gemiddelde kleur van een gebied, <b>Alt</b> voor geΓ―nverteerde kleur, <b>Ctrl+C</b> om kleur naar het klembord te kopiΓ«ren." -#: ../src/dropper-context.cpp:355 +#: ../src/dropper-context.cpp:331 msgid "Set picked color" msgstr "Gekozen kleur instellen" -#: ../src/dyna-draw-context.cpp:617 +#: ../src/dyna-draw-context.cpp:618 msgid "<b>Guide path selected</b>; start drawing along the guide with <b>Ctrl</b>" msgstr "<b>Hulplijn is geselecteerd</b>; begin met <b>Ctrl</b> langs de hulplijn te tekenen" -#: ../src/dyna-draw-context.cpp:619 +#: ../src/dyna-draw-context.cpp:620 msgid "<b>Select a guide path</b> to track with <b>Ctrl</b>" msgstr "<b>Selecteer een hulplijn</b> om met <b>Ctrl</b> te volgen" -#: ../src/dyna-draw-context.cpp:754 +#: ../src/dyna-draw-context.cpp:755 msgid "Tracking: <b>connection to guide path lost!</b>" msgstr "Volgen: <b>connectie met hulplijn is verloren gegaan!</b>" -#: ../src/dyna-draw-context.cpp:754 +#: ../src/dyna-draw-context.cpp:755 msgid "<b>Tracking</b> a guide path" msgstr "<b>Volgen</b> van hulplijn" -#: ../src/dyna-draw-context.cpp:757 +#: ../src/dyna-draw-context.cpp:758 msgid "<b>Drawing</b> a calligraphic stroke" msgstr "<b>Tekenen</b> van een kalligrafische lijn" -#: ../src/dyna-draw-context.cpp:1046 +#: ../src/dyna-draw-context.cpp:1047 msgid "Draw calligraphic stroke" msgstr "Kalligrafische lijn tekenen" @@ -5877,13 +5923,13 @@ msgstr "[Onveranderd]" #. Edit #: ../src/event-log.cpp:264 #: ../src/event-log.cpp:267 -#: ../src/verbs.cpp:2278 +#: ../src/verbs.cpp:2276 msgid "_Undo" msgstr "_Ongedaan maken" #: ../src/event-log.cpp:274 #: ../src/event-log.cpp:278 -#: ../src/verbs.cpp:2280 +#: ../src/verbs.cpp:2278 msgid "_Redo" msgstr "Opn_ieuw" @@ -6001,15 +6047,15 @@ msgstr "Uitgeschakeld" msgid "Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension." msgstr "Er is momenteel geen help beschikbaar voor deze uitbreiding. Kijk aub. op de Inkscape website of vraag op de mailinglijsten indien je vragen hebt over deze uitbreiding." -#: ../src/extension/implementation/script.cpp:989 +#: ../src/extension/implementation/script.cpp:990 msgid "Inkscape has received additional data from the script executed. The script did not return an error, but this may indicate the results will not be as expected." msgstr "Inkscape heeft extra informatie ontvangen van het script dat was aangeroepen. Het script gaf geen foutmelding, maar dit zou kunnen betekenen dat de resultaten anders zijn dan verwacht." -#: ../src/extension/init.cpp:281 +#: ../src/extension/init.cpp:279 msgid "Null external module directory name. Modules will not be loaded." msgstr "Geen mapnaam gevonden voor de uitbreidingen. De uitbreidingen worden niet geladen." -#: ../src/extension/init.cpp:295 +#: ../src/extension/init.cpp:293 #: ../src/extension/internal/filter/filter-file.cpp:58 #, c-format msgid "Modules directory (%s) is unavailable. External modules in that directory will not be loaded." @@ -6220,7 +6266,7 @@ msgstr "Palet verdraaien" #: ../src/extension/internal/bitmap/cycleColormap.cpp:38 #: ../src/extension/internal/bitmap/spread.cpp:38 #: ../src/extension/internal/bitmap/unsharpmask.cpp:44 -#: ../src/widgets/toolbox.cpp:4759 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount:" msgstr "Aantal:" @@ -6380,7 +6426,7 @@ msgstr "Geselecteerde bitmap(s) stileren, zodat ze eruit zien als een olieverfsc #: ../src/extension/internal/bitmap/opacity.cpp:39 #: ../src/ui/dialog/filter-effects-dialog.cpp:2240 -#: ../src/widgets/toolbox.cpp:5754 +#: ../src/widgets/toolbox.cpp:5796 msgid "Opacity:" msgstr "Ondoorzichtigheid:" @@ -6481,11 +6527,11 @@ msgstr "Drempelwaarde" #: ../src/extension/internal/bitmap/threshold.cpp:39 #: ../src/extension/internal/bitmap/unsharpmask.cpp:45 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 #: ../src/ui/dialog/tracedialog.cpp:420 #: ../src/ui/dialog/tracedialog.cpp:453 #: ../src/ui/dialog/tracedialog.cpp:596 -#: ../src/widgets/toolbox.cpp:8497 +#: ../src/widgets/toolbox.cpp:8539 msgid "Threshold:" msgstr "Grenswaarde:" @@ -6566,8 +6612,8 @@ msgstr "PostScript niveau 2" #: ../src/extension/internal/cairo-ps-out.cpp:325 #: ../src/extension/internal/cairo-ps-out.cpp:363 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:248 -#: ../src/extension/internal/emf-win32-inout.cpp:2556 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:250 +#: ../src/extension/internal/emf-win32-inout.cpp:2511 msgid "Convert texts to paths" msgstr "Tekst naar paden omzetten" @@ -6577,31 +6623,31 @@ msgstr "PS+LaTeX: tekst in PS negeren en LaTeX-bestand maken" #: ../src/extension/internal/cairo-ps-out.cpp:327 #: ../src/extension/internal/cairo-ps-out.cpp:365 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:250 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:252 msgid "Rasterize filter effects" msgstr "SVG-filtereffecten rasteriseren" #: ../src/extension/internal/cairo-ps-out.cpp:328 #: ../src/extension/internal/cairo-ps-out.cpp:366 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:251 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:253 msgid "Resolution for rasterization (dpi):" msgstr "Resolutie voor rasteriseren (ppi):" #: ../src/extension/internal/cairo-ps-out.cpp:329 #: ../src/extension/internal/cairo-ps-out.cpp:367 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:252 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:254 msgid "Export area is drawing" msgstr "Het geΓ«xporteerde gebied is de tekening" #: ../src/extension/internal/cairo-ps-out.cpp:330 #: ../src/extension/internal/cairo-ps-out.cpp:368 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:253 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:255 msgid "Export area is page" msgstr "Het geΓ«xporteerde gebied is de pagina" #: ../src/extension/internal/cairo-ps-out.cpp:331 #: ../src/extension/internal/cairo-ps-out.cpp:369 -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:254 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:256 msgid "Limit export to the object with ID:" msgstr "Export limiteren tot het object met ID:" @@ -6632,55 +6678,55 @@ msgstr "Encapsulated Postscript (*.eps)" msgid "Encapsulated PostScript File" msgstr "Encapsulated Postscript File" -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:242 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:244 msgid "Restrict to PDF version:" msgstr "Beperken tot PDF-versie:" -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:244 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:246 msgid "PDF 1.5" msgstr "PDF 1.5" -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:246 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:248 msgid "PDF 1.4" msgstr "PDF 1.4" -#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:249 +#: ../src/extension/internal/cairo-renderer-pdf-out.cpp:251 msgid "PDF+LaTeX: Omit text in PDF, and create LaTeX file" msgstr "PDF+LaTeX: tekst in PDF negeren en LaTeX-bestand maken" -#: ../src/extension/internal/emf-win32-inout.cpp:2526 +#: ../src/extension/internal/emf-win32-inout.cpp:2481 msgid "EMF Input" msgstr "EMF-invoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2531 +#: ../src/extension/internal/emf-win32-inout.cpp:2486 msgid "Enhanced Metafiles (*.emf)" msgstr "Enhanced Metafiles (*.emf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2532 +#: ../src/extension/internal/emf-win32-inout.cpp:2487 msgid "Enhanced Metafiles" msgstr "Enhanced Metafiles" -#: ../src/extension/internal/emf-win32-inout.cpp:2540 +#: ../src/extension/internal/emf-win32-inout.cpp:2495 msgid "WMF Input" msgstr "WMF-invoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2545 +#: ../src/extension/internal/emf-win32-inout.cpp:2500 msgid "Windows Metafiles (*.wmf)" msgstr "Windows Metafiles (*.wmf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2546 +#: ../src/extension/internal/emf-win32-inout.cpp:2501 msgid "Windows Metafiles" msgstr "Windows Metafiles" -#: ../src/extension/internal/emf-win32-inout.cpp:2554 +#: ../src/extension/internal/emf-win32-inout.cpp:2509 msgid "EMF Output" msgstr "EMF-uitvoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2560 +#: ../src/extension/internal/emf-win32-inout.cpp:2515 msgid "Enhanced Metafile (*.emf)" msgstr "Enhanced Metafile (*.emf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2561 +#: ../src/extension/internal/emf-win32-inout.cpp:2516 msgid "Enhanced Metafile" msgstr "Enhanced Metafile" @@ -6726,9 +6772,11 @@ msgstr "Vertical vervaging:" #: ../src/extension/internal/filter/experimental.h:723 #: ../src/extension/internal/filter/filter-file.cpp:150 #: ../src/extension/internal/filter/filter.cpp:216 +#: ../src/extension/internal/filter/image.h:61 #: ../src/extension/internal/filter/morphology.h:61 +#: ../src/extension/internal/filter/shadows.h:76 #: ../src/extension/internal/filter/snow.h:38 -#: ../src/ui/dialog/inkscape-preferences.cpp:801 +#: ../src/ui/dialog/inkscape-preferences.cpp:802 msgid "Filters" msgstr "Filters" @@ -6758,7 +6806,9 @@ msgstr "Filters" #: ../src/extension/internal/filter/experimental.h:516 #: ../src/extension/internal/filter/experimental.h:627 #: ../src/extension/internal/filter/experimental.h:724 +#: ../src/extension/internal/filter/image.h:62 #: ../src/extension/internal/filter/morphology.h:62 +#: ../src/extension/internal/filter/shadows.h:77 msgid "Experimental" msgstr "Experimenteel" @@ -6818,7 +6868,8 @@ msgstr "Azimut (Β°):" #: ../src/extension/internal/filter/abc.h:240 #: ../src/extension/internal/filter/abc.h:378 #: ../src/extension/internal/filter/abc.h:818 -msgid "Lightning color" +#, fuzzy +msgid "Lighting color" msgstr "Belichtingskleur" #: ../src/extension/internal/filter/abc.h:311 @@ -6979,7 +7030,7 @@ msgstr "Vermenigvuldigen" #: ../src/extension/internal/filter/color.h:784 #: ../src/extension/internal/filter/color.h:797 #: ../src/filter-enums.cpp:51 -#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:597 msgid "Normal" msgstr "Normaal" @@ -7118,7 +7169,7 @@ msgstr "Transparant" #: ../src/extension/internal/filter/color.h:468 msgid "Customize greyscale components" -msgstr "" +msgstr "Grijswaarden aanpassen" #: ../src/extension/internal/filter/color.h:536 msgid "Lightness, custom (Color)" @@ -7176,11 +7227,11 @@ msgstr "Tint verbeteren" #: ../src/extension/internal/filter/color.h:786 msgid "Radiation" -msgstr "" +msgstr "Straling" #: ../src/extension/internal/filter/color.h:787 msgid "Hue to background" -msgstr "" +msgstr "Tint naar achtergrond" #: ../src/extension/internal/filter/color.h:789 msgid "Global blend:" @@ -7192,7 +7243,7 @@ msgstr "Gloed:" #: ../src/extension/internal/filter/color.h:796 msgid "Glow blend:" -msgstr "Mengen gloed" +msgstr "Mengen gloed:" #: ../src/extension/internal/filter/color.h:801 msgid "Local light:" @@ -7212,6 +7263,7 @@ msgstr "Slagschaduw" #: ../src/extension/internal/filter/drop-shadow.h:37 #: ../src/extension/internal/filter/drop-shadow.h:97 +#: ../src/extension/internal/filter/shadows.h:59 msgid "Blur radius (px):" msgstr "Straal vervagen (px):" @@ -7222,11 +7274,13 @@ msgstr "Ondoorzichtigheid (%):" #: ../src/extension/internal/filter/drop-shadow.h:39 #: ../src/extension/internal/filter/drop-shadow.h:99 +#: ../src/extension/internal/filter/shadows.h:60 msgid "Horizontal offset (px):" msgstr "Horizontale verplaatsing (px):" #: ../src/extension/internal/filter/drop-shadow.h:40 #: ../src/extension/internal/filter/drop-shadow.h:100 +#: ../src/extension/internal/filter/shadows.h:61 msgid "Vertical offset (px):" msgstr "Verticale verplaatsing (px):" @@ -7289,7 +7343,7 @@ msgid "Clean-up:" msgstr "Uiteinde:" #: ../src/extension/internal/filter/experimental.h:237 -#: ../src/widgets/toolbox.cpp:8324 +#: ../src/widgets/toolbox.cpp:8366 msgid "Length:" msgstr "Lengte:" @@ -7305,11 +7359,8 @@ msgstr "Tekening, aanpasbaar" msgid "Erase:" msgstr "Gommen:" -#: ../src/extension/internal/filter/experimental.h:338 -msgid "Transluscent" -msgstr "Doorzichtig" - #: ../src/extension/internal/filter/experimental.h:344 +#: ../src/extension/internal/filter/image.h:56 msgid "Level:" msgstr "Niveau:" @@ -7319,7 +7370,7 @@ msgstr "Vulkleur" #: ../src/extension/internal/filter/experimental.h:350 msgid "Image on fill" -msgstr "" +msgstr "Afbeelding op de vulling" #: ../src/extension/internal/filter/experimental.h:353 msgid "Stroke color" @@ -7327,7 +7378,7 @@ msgstr "Lijnkleur" #: ../src/extension/internal/filter/experimental.h:354 msgid "Image on stroke" -msgstr "" +msgstr "Afbeelding op de lijn" #: ../src/extension/internal/filter/experimental.h:365 msgid "Convert images to duochrome drawings" @@ -7369,11 +7420,11 @@ msgstr "Uitvoer:" #: ../src/extension/internal/filter/experimental.h:618 msgid "Simplify (primary):" -msgstr "" +msgstr "Vereenvoudigen (primair):" #: ../src/extension/internal/filter/experimental.h:619 msgid "Simplify (secondary):" -msgstr "" +msgstr "Vereenvoudigen (secundair):" #: ../src/extension/internal/filter/experimental.h:620 msgid "Pre-saturation:" @@ -7411,6 +7462,30 @@ msgstr "Persoonlijk" msgid "Null external module directory name. Filters will not be loaded." msgstr "Map voor uitbreidingen niet beschikbaar. Filters kunnen niet geladen worden." +#: ../src/extension/internal/filter/image.h:49 +msgid "Edge detect, custom (Image)" +msgstr "" + +#: ../src/extension/internal/filter/image.h:51 +#, fuzzy +msgid "Detect:" +msgstr "Datum:" + +#: ../src/extension/internal/filter/image.h:52 +#, fuzzy +msgid "All" +msgstr "alle" + +#: ../src/extension/internal/filter/image.h:53 +#, fuzzy +msgid "Vertical lines" +msgstr "Verticale straal" + +#: ../src/extension/internal/filter/image.h:54 +#, fuzzy +msgid "Horizontal lines" +msgstr "Horizontale straal" + #: ../src/extension/internal/filter/morphology.h:51 msgid "Cross-smooth, custom (Morphology)" msgstr "Kruis-vervagen, aanpasbaar (morfologie)" @@ -7419,6 +7494,72 @@ msgstr "Kruis-vervagen, aanpasbaar (morfologie)" msgid "Smooth edges and angles of shapes" msgstr "Randen en hoeken van vormen vervagen" +#: ../src/extension/internal/filter/shadows.h:55 +#, fuzzy +msgid "Drop shadow, custom (Shadows and Glows)" +msgstr "Schaduw en gloed" + +#. ## end option page +#: ../src/extension/internal/filter/shadows.h:58 +#: ../src/ui/dialog/tracedialog.cpp:617 +#: ../src/ui/dialog/tracedialog.cpp:623 +#: ../share/extensions/color_custom.inx.h:14 +#: ../share/extensions/color_randomize.inx.h:6 +#: ../share/extensions/dots.inx.h:5 +#: ../share/extensions/dxf_input.inx.h:15 +#: ../share/extensions/dxf_outlines.inx.h:9 +#: ../share/extensions/gcodetools_area.inx.h:34 +#: ../share/extensions/gcodetools_engraving.inx.h:21 +#: ../share/extensions/gcodetools_graffiti.inx.h:24 +#: ../share/extensions/gcodetools_lathe.inx.h:32 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 +#: ../share/extensions/generate_voronoi.inx.h:7 +#: ../share/extensions/gimp_xcf.inx.h:4 +#: ../share/extensions/interp_att_g.inx.h:15 +#: ../share/extensions/jessyInk_uninstall.inx.h:3 +#: ../share/extensions/lorem_ipsum.inx.h:4 +#: ../share/extensions/pathalongpath.inx.h:7 +#: ../share/extensions/pathscatter.inx.h:10 +#: ../share/extensions/radiusrand.inx.h:6 +#: ../share/extensions/scour.inx.h:20 +#: ../share/extensions/split.inx.h:2 +#: ../share/extensions/voronoi2svg.inx.h:6 +#: ../share/extensions/webslicer_create_group.inx.h:7 +#: ../share/extensions/webslicer_export.inx.h:6 +#: ../share/extensions/web-set-att.inx.h:6 +#: ../share/extensions/web-transmit-att.inx.h:6 +msgid "Options" +msgstr "Opties" + +#: ../src/extension/internal/filter/shadows.h:62 +#, fuzzy +msgid "Blur type:" +msgstr "Vervagen" + +#: ../src/extension/internal/filter/shadows.h:63 +#, fuzzy +msgid "Outer" +msgstr "Anders" + +#: ../src/extension/internal/filter/shadows.h:64 +#, fuzzy +msgid "Inner" +msgstr "Inverteren" + +#: ../src/extension/internal/filter/shadows.h:68 +#, fuzzy +msgid "Blur color" +msgstr "Vulkleur" + +#: ../src/extension/internal/filter/shadows.h:70 +#, fuzzy +msgid "Use object's color" +msgstr "Kleurnamen gebruiken" + +#: ../src/extension/internal/filter/shadows.h:80 +msgid "Colorizable Drop shadow" +msgstr "Gekleurde slagschaduw" + #: ../src/extension/internal/filter/snow.h:32 msgid "Snow crest" msgstr "Sneeuwlaag" @@ -7517,9 +7658,9 @@ msgid "Render" msgstr "Render" #: ../src/extension/internal/grid.cpp:211 -#: ../src/ui/dialog/document-properties.cpp:119 -#: ../src/ui/dialog/inkscape-preferences.cpp:1082 -#: ../src/widgets/toolbox.cpp:2390 +#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/inkscape-preferences.cpp:1083 +#: ../src/widgets/toolbox.cpp:2430 msgid "Grids" msgstr "Rasters" @@ -7770,10 +7911,6 @@ msgstr "Gecomprimeerde gewone SVG (*.svgz)" msgid "Scalable Vector Graphics format compressed with GZip" msgstr "Scalable Vector Graphics-formaat gecomprimeerd met GZip" -#: ../src/extension/internal/win32.cpp:486 -msgid "Windows 32-bit Print" -msgstr "Windows 32-bit print" - #: ../src/extension/internal/wpg-input.cpp:123 msgid "WPG Input" msgstr "WPG-invoer" @@ -7799,130 +7936,130 @@ msgstr "Het effect live voorvertonen op het canvas?" msgid "Format autodetect failed. The file is being opened as SVG." msgstr "Het automatisch detecteren van de bestandsindeling is mislukt. Het bestand wordt geopend als SVG." -#: ../src/file.cpp:149 +#: ../src/file.cpp:148 msgid "default.svg" msgstr "default.nl.svg" -#: ../src/file.cpp:266 +#: ../src/file.cpp:265 msgid "Broken links have been changed to point to existing files." msgstr "" -#: ../src/file.cpp:274 -#: ../src/file.cpp:1073 +#: ../src/file.cpp:273 +#: ../src/file.cpp:1072 #, c-format msgid "Failed to load the requested file %s" msgstr "Het laden van het gevraagde bestand %s is mislukt" -#: ../src/file.cpp:298 +#: ../src/file.cpp:297 msgid "Document not saved yet. Cannot revert." msgstr "Het bestand is nog niet opgeslagen. Kan het niet terugdraaien." -#: ../src/file.cpp:304 +#: ../src/file.cpp:303 #, c-format msgid "Changes will be lost! Are you sure you want to reload document %s?" msgstr "Wijzigingen zullen verloren gaan! Weet u zeker dat u bestand %s opnieuw wilt laden?" -#: ../src/file.cpp:333 +#: ../src/file.cpp:332 msgid "Document reverted." msgstr "Het bestand is teruggezet." -#: ../src/file.cpp:335 +#: ../src/file.cpp:334 msgid "Document not reverted." msgstr "Het bestand is niet teruggezet." -#: ../src/file.cpp:485 +#: ../src/file.cpp:484 msgid "Select file to open" msgstr "Selecteer een bestand om te openen" -#: ../src/file.cpp:569 +#: ../src/file.cpp:568 msgid "Vacuum <defs>" msgstr "<Defs> opruimen" -#: ../src/file.cpp:574 +#: ../src/file.cpp:573 #, c-format msgid "Removed <b>%i</b> unused definition in <defs>." msgid_plural "Removed <b>%i</b> unused definitions in <defs>." msgstr[0] "In <defs> is <b>%i</b> ongebruikte definitie verwijderd." msgstr[1] "In <defs> zijn <b>%i</b> ongebruikte definities verwijderd." -#: ../src/file.cpp:579 +#: ../src/file.cpp:578 msgid "No unused definitions in <defs>." msgstr "Er zijn geen ongebruikte definities in <defs>." -#: ../src/file.cpp:610 +#: ../src/file.cpp:609 #, c-format msgid "No Inkscape extension found to save document (%s). This may have been caused by an unknown filename extension." msgstr "Er werd geen Inkscape-uitbreiding aangetroffen om het bestand (%s) op te slaan. Dit kan komen door een onbekende bestandsextensie." -#: ../src/file.cpp:611 -#: ../src/file.cpp:619 -#: ../src/file.cpp:627 -#: ../src/file.cpp:633 -#: ../src/file.cpp:638 +#: ../src/file.cpp:610 +#: ../src/file.cpp:618 +#: ../src/file.cpp:626 +#: ../src/file.cpp:632 +#: ../src/file.cpp:637 msgid "Document not saved." msgstr "Document is niet opgeslagen." -#: ../src/file.cpp:618 +#: ../src/file.cpp:617 #, c-format msgid "File %s is write protected. Please remove write protection and try again." msgstr "Bestand %s is schrijfbeveiligd. Verwijder aub de schrijfbeveiliging en probeer opnieuw." -#: ../src/file.cpp:626 +#: ../src/file.cpp:625 #, c-format msgid "File %s could not be saved." msgstr "Bestand %s kon niet worden opgeslagen." -#: ../src/file.cpp:643 +#: ../src/file.cpp:642 msgid "Document saved." msgstr "Document is opgeslagen." #. We are saving for the first time; create a unique default filename -#: ../src/file.cpp:776 -#: ../src/file.cpp:1210 +#: ../src/file.cpp:775 +#: ../src/file.cpp:1209 #, c-format msgid "drawing%s" msgstr "Tekening%s" -#: ../src/file.cpp:782 +#: ../src/file.cpp:781 #, c-format msgid "drawing-%d%s" msgstr "Tekening-%d%s" -#: ../src/file.cpp:786 +#: ../src/file.cpp:785 #, c-format msgid "%s" msgstr "%s" -#: ../src/file.cpp:801 +#: ../src/file.cpp:800 msgid "Select file to save a copy to" msgstr "Selecteer een bestand om een kopie naar op te slaan" -#: ../src/file.cpp:803 +#: ../src/file.cpp:802 msgid "Select file to save to" msgstr "Selecteer een bestand om in op te slaan" -#: ../src/file.cpp:898 +#: ../src/file.cpp:897 msgid "No changes need to be saved." msgstr "Er zijn geen wijzigingen die opgeslagen hoeven te worden." -#: ../src/file.cpp:915 +#: ../src/file.cpp:914 msgid "Saving document..." msgstr "Opslaan van document..." -#: ../src/file.cpp:1070 +#: ../src/file.cpp:1069 msgid "Import" msgstr "Importeren" -#: ../src/file.cpp:1120 +#: ../src/file.cpp:1119 msgid "Select file to import" msgstr "Selecteer een bestand om te importeren" -#: ../src/file.cpp:1232 +#: ../src/file.cpp:1231 msgid "Select file to export to" msgstr "Selecteer een bestand om naar te exporteren" -#: ../src/file.cpp:1475 -#: ../src/verbs.cpp:2267 +#: ../src/file.cpp:1474 +#: ../src/verbs.cpp:2265 msgid "Import From Open Clip Art Library" msgstr "Uit 'Open Clip Art'-mediatheek importeren" @@ -8027,7 +8164,7 @@ msgstr "Luminantie naar alfa" #. File #: ../src/filter-enums.cpp:70 -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:848 #: ../src/verbs.cpp:2244 #: ../share/extensions/jessyInk_mouseHandler.inx.h:1 #: ../share/extensions/jessyInk_transitions.inx.h:2 @@ -8071,7 +8208,7 @@ msgid "Gamma" msgstr "Gamma" #: ../src/filter-enums.cpp:92 -#: ../src/selection-chemistry.cpp:436 +#: ../src/selection-chemistry.cpp:432 #: ../src/widgets/gradient-selector.cpp:141 msgid "Duplicate" msgstr "Dupliceren" @@ -8082,19 +8219,24 @@ msgstr "Meer rijen" #: ../src/filter-enums.cpp:94 #: ../src/live_effects/lpe-ruler.cpp:34 -#: ../src/ui/dialog/document-properties.cpp:326 #: ../src/ui/dialog/filter-effects-dialog.cpp:477 -#: ../src/ui/dialog/inkscape-preferences.cpp:267 -#: ../src/ui/dialog/inkscape-preferences.cpp:433 -#: ../src/ui/dialog/inkscape-preferences.cpp:595 -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 -#: ../src/ui/dialog/inkscape-preferences.cpp:1297 +#: ../src/ui/dialog/inkscape-preferences.cpp:268 +#: ../src/ui/dialog/inkscape-preferences.cpp:434 +#: ../src/ui/dialog/inkscape-preferences.cpp:596 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 #: ../src/ui/dialog/input.cpp:607 #: ../src/ui/dialog/input.cpp:608 #: ../src/ui/dialog/input.cpp:1269 #: ../src/verbs.cpp:2241 #: ../src/widgets/stroke-style.cpp:366 -#: ../src/widgets/toolbox.cpp:4123 +#: ../src/widgets/toolbox.cpp:4171 +#: ../share/extensions/gcodetools_area.inx.h:32 +#: ../share/extensions/gcodetools_dxf_points.inx.h:15 +#: ../share/extensions/gcodetools_engraving.inx.h:19 +#: ../share/extensions/gcodetools_graffiti.inx.h:22 +#: ../share/extensions/gcodetools_lathe.inx.h:29 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 #: ../share/extensions/grid_polar.inx.h:18 #: ../share/extensions/guides_creator.inx.h:15 #: ../share/extensions/scour.inx.h:16 @@ -8102,31 +8244,31 @@ msgid "None" msgstr "Geen" #: ../src/filter-enums.cpp:100 -#: ../src/flood-context.cpp:249 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/flood-context.cpp:241 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:403 #: ../src/widgets/sp-color-scales.cpp:404 msgid "Red" msgstr "Rood" #: ../src/filter-enums.cpp:101 -#: ../src/flood-context.cpp:250 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/flood-context.cpp:242 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:406 #: ../src/widgets/sp-color-scales.cpp:407 msgid "Green" msgstr "Groen" #: ../src/filter-enums.cpp:102 -#: ../src/flood-context.cpp:251 -#: ../src/widgets/sp-color-icc-selector.cpp:227 +#: ../src/flood-context.cpp:243 +#: ../src/widgets/sp-color-icc-selector.cpp:228 #: ../src/widgets/sp-color-scales.cpp:409 #: ../src/widgets/sp-color-scales.cpp:410 msgid "Blue" msgstr "Blauw" #: ../src/filter-enums.cpp:103 -#: ../src/flood-context.cpp:255 +#: ../src/flood-context.cpp:247 msgid "Alpha" msgstr "Alfa" @@ -8144,7 +8286,7 @@ msgstr "Fractale ruis" #: ../src/filter-enums.cpp:123 msgid "Distant Light" -msgstr "Veraf licht" +msgstr "Ver licht" #: ../src/filter-enums.cpp:124 msgid "Point Light" @@ -8154,150 +8296,150 @@ msgstr "Puntlicht" msgid "Spot Light" msgstr "Spotlicht" -#: ../src/flood-context.cpp:248 +#: ../src/flood-context.cpp:240 msgid "Visible Colors" msgstr "Zichtbare kleuren" -#: ../src/flood-context.cpp:252 -#: ../src/widgets/sp-color-icc-selector.cpp:229 +#: ../src/flood-context.cpp:244 #: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:429 #: ../src/widgets/sp-color-scales.cpp:430 -#: ../src/widgets/toolbox.cpp:4505 +#: ../src/widgets/toolbox.cpp:4553 #: ../share/extensions/color_randomize.inx.h:4 msgid "Hue" msgstr "Tint" -#: ../src/flood-context.cpp:253 -#: ../src/ui/dialog/inkscape-preferences.cpp:898 -#: ../src/widgets/sp-color-icc-selector.cpp:229 +#: ../src/flood-context.cpp:245 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 #: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:432 #: ../src/widgets/sp-color-scales.cpp:433 -#: ../src/widgets/toolbox.cpp:4521 +#: ../src/widgets/toolbox.cpp:4569 #: ../share/extensions/color_randomize.inx.h:8 msgid "Saturation" msgstr "Verzadiging" -#: ../src/flood-context.cpp:254 -#: ../src/widgets/sp-color-icc-selector.cpp:230 +#: ../src/flood-context.cpp:246 +#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-scales.cpp:435 #: ../src/widgets/sp-color-scales.cpp:436 -#: ../src/widgets/toolbox.cpp:4537 +#: ../src/widgets/toolbox.cpp:4585 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "Lichtheid" -#: ../src/flood-context.cpp:266 +#: ../src/flood-context.cpp:258 msgctxt "Flood autogap" msgid "None" msgstr "Geen" -#: ../src/flood-context.cpp:267 +#: ../src/flood-context.cpp:259 msgctxt "Flood autogap" msgid "Small" msgstr "Klein" -#: ../src/flood-context.cpp:268 +#: ../src/flood-context.cpp:260 msgctxt "Flood autogap" msgid "Medium" msgstr "Middel" -#: ../src/flood-context.cpp:269 +#: ../src/flood-context.cpp:261 msgctxt "Flood autogap" msgid "Large" msgstr "Groot" -#: ../src/flood-context.cpp:471 +#: ../src/flood-context.cpp:474 msgid "<b>Too much inset</b>, the result is empty." msgstr "<b>Te veel versmalling</b>, het resultaat is leeg." -#: ../src/flood-context.cpp:511 +#: ../src/flood-context.cpp:514 #, c-format msgid "Area filled, path with <b>%d</b> node created and unioned with selection." msgid_plural "Area filled, path with <b>%d</b> nodes created and unioned with selection." msgstr[0] "Gebied is gevuld, pad met <b>%d</b> knooppunt is gemaakt en verenigd met selectie." msgstr[1] "Gebied is gevuld, pad met <b>%d</b> knooppunten is gemaakt en verenigd met selectie." -#: ../src/flood-context.cpp:515 +#: ../src/flood-context.cpp:518 #, c-format msgid "Area filled, path with <b>%d</b> node created." msgid_plural "Area filled, path with <b>%d</b> nodes created." msgstr[0] "Gebied is gevuld, pad met <b>%d</b> knooppunt is gemaakt." msgstr[1] "Gebied is gevuld, pad met <b>%d</b> knooppunten is gemaakt." -#: ../src/flood-context.cpp:787 -#: ../src/flood-context.cpp:1101 +#: ../src/flood-context.cpp:790 +#: ../src/flood-context.cpp:1094 msgid "<b>Area is not bounded</b>, cannot fill." msgstr "<b>Gebied is niet gesloten</b>, kan het niet vullen." -#: ../src/flood-context.cpp:1106 +#: ../src/flood-context.cpp:1099 msgid "<b>Only the visible part of the bounded area was filled.</b> If you want to fill all of the area, undo, zoom out, and fill again." msgstr "<b>Enkel het zichtbare deel van een afgebakend gebied werd gevuld.</b> Als u het hele gebied wilt vullen, ongedaan maken, uitzoomen en opnieuw vullen." -#: ../src/flood-context.cpp:1124 -#: ../src/flood-context.cpp:1283 +#: ../src/flood-context.cpp:1117 +#: ../src/flood-context.cpp:1276 msgid "Fill bounded area" msgstr "Afgebakend gebied vullen" -#: ../src/flood-context.cpp:1143 +#: ../src/flood-context.cpp:1136 msgid "Set style on object" msgstr "Stijl aan object geven" -#: ../src/flood-context.cpp:1202 +#: ../src/flood-context.cpp:1195 msgid "<b>Draw over</b> areas to add to fill, hold <b>Alt</b> for touch fill" msgstr "<b>Sleep over</b> gebieden om ze aan vulling toe te voegen; gebruik <b>Alt</b> voor aanraakvulling" -#: ../src/gradient-context.cpp:132 +#: ../src/gradient-context.cpp:133 #: ../src/gradient-drag.cpp:78 msgid "Linear gradient <b>start</b>" msgstr "<b>Begin</b> van lineair kleurverloop" #. POINT_LG_BEGIN -#: ../src/gradient-context.cpp:133 +#: ../src/gradient-context.cpp:134 #: ../src/gradient-drag.cpp:79 msgid "Linear gradient <b>end</b>" msgstr "<b>Einde</b> van lineair kleurverloop" -#: ../src/gradient-context.cpp:134 +#: ../src/gradient-context.cpp:135 #: ../src/gradient-drag.cpp:80 msgid "Linear gradient <b>mid stop</b>" msgstr "<b>Overgang</b> in lineair kleurverloop" -#: ../src/gradient-context.cpp:135 +#: ../src/gradient-context.cpp:136 #: ../src/gradient-drag.cpp:81 msgid "Radial gradient <b>center</b>" msgstr "<b>Centrum</b> van radiaal kleurverloop" -#: ../src/gradient-context.cpp:136 #: ../src/gradient-context.cpp:137 +#: ../src/gradient-context.cpp:138 #: ../src/gradient-drag.cpp:82 #: ../src/gradient-drag.cpp:83 msgid "Radial gradient <b>radius</b>" msgstr "<b>Straal</b> van radiaal kleurverloop" -#: ../src/gradient-context.cpp:138 +#: ../src/gradient-context.cpp:139 #: ../src/gradient-drag.cpp:84 msgid "Radial gradient <b>focus</b>" msgstr "<b>Brandpunt</b> van radiaal kleurverloop" #. POINT_RG_FOCUS -#: ../src/gradient-context.cpp:139 #: ../src/gradient-context.cpp:140 +#: ../src/gradient-context.cpp:141 #: ../src/gradient-drag.cpp:85 #: ../src/gradient-drag.cpp:86 msgid "Radial gradient <b>mid stop</b>" msgstr "<b>Overgang</b> in radiaal kleurverloop" #. TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message -#: ../src/gradient-context.cpp:165 +#: ../src/gradient-context.cpp:166 #, c-format msgid "%s selected" msgstr "%s geselecteerd" #. TRANSLATORS: Mind the space in front. This is part of a compound message -#: ../src/gradient-context.cpp:167 -#: ../src/gradient-context.cpp:176 +#: ../src/gradient-context.cpp:168 +#: ../src/gradient-context.cpp:177 #, c-format msgid " out of %d gradient handle" msgid_plural " out of %d gradient handles" @@ -8305,9 +8447,9 @@ msgstr[0] " van %d kleurverloophandvat" msgstr[1] " van %d kleurverloophandvatten" #. TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message -#: ../src/gradient-context.cpp:168 -#: ../src/gradient-context.cpp:177 -#: ../src/gradient-context.cpp:184 +#: ../src/gradient-context.cpp:169 +#: ../src/gradient-context.cpp:178 +#: ../src/gradient-context.cpp:185 #, c-format msgid " on %d selected object" msgid_plural " on %d selected objects" @@ -8315,7 +8457,7 @@ msgstr[0] " aan %d geselecteerd object" msgstr[1] " aan %d geselecteerde objecten" #. TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) -#: ../src/gradient-context.cpp:174 +#: ../src/gradient-context.cpp:175 #, c-format msgid "One handle merging %d stop (drag with <b>Shift</b> to separate) selected" msgid_plural "One handle merging %d stops (drag with <b>Shift</b> to separate) selected" @@ -8323,7 +8465,7 @@ msgstr[0] "Handvat geselecteerd dat %d overgang verenigt (sleep met <b>Shift</b> msgstr[1] "Handvat geselecteerd dat %d overgangen verenigt (sleep met <b>Shift</b> om te scheiden)" #. TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) -#: ../src/gradient-context.cpp:182 +#: ../src/gradient-context.cpp:183 #, c-format msgid "<b>%d</b> gradient handle selected out of %d" msgid_plural "<b>%d</b> gradient handles selected out of %d" @@ -8331,52 +8473,52 @@ msgstr[0] "<b>%d</b> (van %d) kleurverloophandvat geselecteerd" msgstr[1] "<b>%d</b> (van %d) kleurverloophandvatten geselecteerd" #. TRANSLATORS: The plural refers to number of selected objects -#: ../src/gradient-context.cpp:189 +#: ../src/gradient-context.cpp:190 #, c-format msgid "<b>No</b> gradient handles selected out of %d on %d selected object" msgid_plural "<b>No</b> gradient handles selected out of %d on %d selected objects" msgstr[0] "<b>Geen</b> (van %d) kleurverloophandvat geselecteerd op %d geselecteerd object" msgstr[1] "<b>Geen</b> (van %d) kleurverloophandvat geselecteerd op %d geselecteerde objecten" -#: ../src/gradient-context.cpp:389 -#: ../src/gradient-context.cpp:482 +#: ../src/gradient-context.cpp:390 +#: ../src/gradient-context.cpp:483 #: ../src/ui/dialog/swatches.cpp:182 #: ../src/widgets/gradient-vector.cpp:741 msgid "Add gradient stop" msgstr "Kleurverloopovergang toevoegen" -#: ../src/gradient-context.cpp:457 +#: ../src/gradient-context.cpp:458 msgid "Simplify gradient" msgstr "Kleurverloop vereenvoudigen" -#: ../src/gradient-context.cpp:534 +#: ../src/gradient-context.cpp:535 msgid "Create default gradient" msgstr "Standaardkleurverloop maken" -#: ../src/gradient-context.cpp:589 +#: ../src/gradient-context.cpp:592 msgid "<b>Draw around</b> handles to select them" msgstr "<b>Sleep rondom</b> handvatten om ze te selecteren" -#: ../src/gradient-context.cpp:698 +#: ../src/gradient-context.cpp:701 msgid "<b>Ctrl</b>: snap gradient angle" msgstr "<b>Ctrl</b>: draait kleurverloop in stappen" -#: ../src/gradient-context.cpp:699 +#: ../src/gradient-context.cpp:702 msgid "<b>Shift</b>: draw gradient around the starting point" msgstr "<b>Shift</b>: tekent kleurverloop rondom het startpunt" -#: ../src/gradient-context.cpp:819 +#: ../src/gradient-context.cpp:822 msgid "Invert gradient" msgstr "Kleurverloop inverteren" -#: ../src/gradient-context.cpp:936 +#: ../src/gradient-context.cpp:939 #, c-format msgid "<b>Gradient</b> for %d object; with <b>Ctrl</b> to snap angle" msgid_plural "<b>Gradient</b> for %d objects; with <b>Ctrl</b> to snap angle" msgstr[0] "<b>Kleurverloop</b> voor %d object; gebruik <b>Ctrl</b> om in stappen te draaien" msgstr[1] "<b>Kleurverloop</b> voor %d objecten; gebruik <b>Ctrl</b> om in stappen te draaien" -#: ../src/gradient-context.cpp:940 +#: ../src/gradient-context.cpp:943 msgid "Select <b>objects</b> on which to create gradient." msgstr "Selecteer <b>objecten</b> om een kleurverloop voor te maken." @@ -8439,12 +8581,11 @@ msgstr "Eenheid" #. Add the units menu. #: ../src/helper/units.cpp:37 -#: ../src/widgets/select-toolbar.cpp:514 -#: ../src/widgets/toolbox.cpp:1595 -#: ../src/widgets/toolbox.cpp:1677 -#: ../src/widgets/toolbox.cpp:3390 -#: ../src/widgets/toolbox.cpp:6114 -#: ../src/widgets/toolbox.cpp:8516 +#: ../src/widgets/select-toolbar.cpp:521 +#: ../src/widgets/toolbox.cpp:1597 +#: ../src/widgets/toolbox.cpp:3438 +#: ../src/widgets/toolbox.cpp:6156 +#: ../src/widgets/toolbox.cpp:8558 #: ../share/extensions/dxf_outlines.inx.h:10 msgid "Units" msgstr "Eenheden" @@ -8510,7 +8651,7 @@ msgid "Percent" msgstr "procent" #: ../src/helper/units.cpp:42 -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "%" msgstr "%" @@ -8526,6 +8667,13 @@ msgstr "millimeter" #: ../src/ui/widget/selected-style.cpp:298 #: ../share/extensions/dxf_outlines.inx.h:15 #: ../share/extensions/gears.inx.h:9 +#: ../share/extensions/gcodetools_area.inx.h:55 +#: ../share/extensions/gcodetools_dxf_points.inx.h:24 +#: ../share/extensions/gcodetools_engraving.inx.h:33 +#: ../share/extensions/gcodetools_graffiti.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:48 +#: ../share/extensions/gcodetools_orientation_points.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:37 msgid "mm" msgstr "mm" @@ -8567,6 +8715,13 @@ msgstr "inch" #: ../src/helper/units.cpp:46 #: ../share/extensions/dxf_outlines.inx.h:13 #: ../share/extensions/gears.inx.h:8 +#: ../share/extensions/gcodetools_area.inx.h:52 +#: ../share/extensions/gcodetools_dxf_points.inx.h:23 +#: ../share/extensions/gcodetools_engraving.inx.h:32 +#: ../share/extensions/gcodetools_graffiti.inx.h:42 +#: ../share/extensions/gcodetools_lathe.inx.h:47 +#: ../share/extensions/gcodetools_orientation_points.inx.h:13 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:36 msgid "in" msgstr "inch" @@ -8614,158 +8769,158 @@ msgstr "ex" msgid "Ex squares" msgstr "Ex kwadraat" -#: ../src/inkscape.cpp:324 +#: ../src/inkscape.cpp:320 msgid "Autosaving documents..." msgstr "Auto-opslaan van document..." -#: ../src/inkscape.cpp:395 +#: ../src/inkscape.cpp:391 msgid "Autosave failed! Could not find inkscape extension to save document." msgstr "Auto-opslaan mislukt! Kon de inkscapeuitbreiding om document te bewaren niet vinden." -#: ../src/inkscape.cpp:398 -#: ../src/inkscape.cpp:405 +#: ../src/inkscape.cpp:394 +#: ../src/inkscape.cpp:401 #, c-format msgid "Autosave failed! File %s could not be saved." msgstr "Auto-opslaan mislukt! Bestand %s kon niet bewaard worden." -#: ../src/inkscape.cpp:420 +#: ../src/inkscape.cpp:416 msgid "Autosave complete." msgstr "Auto-opslaan afgelopen." -#: ../src/inkscape.cpp:666 +#: ../src/inkscape.cpp:662 msgid "Untitled document" msgstr "Naamloos document" #. Show nice dialog box -#: ../src/inkscape.cpp:698 +#: ../src/inkscape.cpp:694 msgid "Inkscape encountered an internal error and will close now.\n" msgstr "Er is een interne fout opgetreden in Inkscape. Het programma wordt afgesloten.\n" -#: ../src/inkscape.cpp:699 +#: ../src/inkscape.cpp:695 msgid "Automatic backups of unsaved documents were done to the following locations:\n" msgstr "Automatische reservekopieΓ«n van niet-opgeslagen documenten werden gemaakt op de volgende locaties:\n" -#: ../src/inkscape.cpp:700 +#: ../src/inkscape.cpp:696 msgid "Automatic backup of the following documents failed:\n" msgstr "Het automatisch maken van een reservekopie is mislukt voor de volgende bestanden:\n" #. sp_ui_menu_append_check_item_from_verb(m, view, _("_Menu"), _("Show or hide the menu bar"), "menu", #. checkitem_toggled, checkitem_update, 0); -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:826 msgid "_Commands Bar" msgstr "_Opdrachtenbalk" -#: ../src/interface.cpp:832 +#: ../src/interface.cpp:826 msgid "Show or hide the Commands bar (under the menu)" msgstr "Opdrachtenbalk weergeven of verbergen (onder de menubalk)" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:828 msgid "Sn_ap Controls Bar" msgstr "Klee_findicatoren" -#: ../src/interface.cpp:834 +#: ../src/interface.cpp:828 msgid "Show or hide the snapping controls" msgstr "Balk met kleefinstellingen weergeven of verbergen" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:830 msgid "T_ool Controls Bar" msgstr "G_ereedschapsdetails" -#: ../src/interface.cpp:836 +#: ../src/interface.cpp:830 msgid "Show or hide the Tool Controls bar" msgstr "Gereedschapsdetailsbalk weergeven of verbergen" -#: ../src/interface.cpp:838 +#: ../src/interface.cpp:832 msgid "_Toolbox" msgstr "_Gereedschappen" -#: ../src/interface.cpp:838 +#: ../src/interface.cpp:832 msgid "Show or hide the main toolbox (on the left)" msgstr "Gereedschappenbalk weergeven of verbergen (aan de linkerzijde)" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:838 msgid "_Palette" msgstr "_Palet" -#: ../src/interface.cpp:844 +#: ../src/interface.cpp:838 msgid "Show or hide the color palette" msgstr "Paletbalk weergeven of verbergen (onderaan)" -#: ../src/interface.cpp:846 +#: ../src/interface.cpp:840 msgid "_Statusbar" msgstr "_Statusbalk" -#: ../src/interface.cpp:846 +#: ../src/interface.cpp:840 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "Statusbalk weergeven of verbergen (onderaan)" -#: ../src/interface.cpp:854 +#: ../src/interface.cpp:848 msgid "Default interface setup" msgstr "Standaard interface setup" -#: ../src/interface.cpp:855 +#: ../src/interface.cpp:849 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1437 #: ../share/extensions/color_custom.inx.h:10 #: ../share/extensions/markers_strokepaint.inx.h:5 msgid "Custom" msgstr "Aangepast" -#: ../src/interface.cpp:855 +#: ../src/interface.cpp:849 msgid "Set the custom task" msgstr "Aangepaste taak instellen" -#: ../src/interface.cpp:856 +#: ../src/interface.cpp:850 msgid "Wide" msgstr "Breedbeeld" -#: ../src/interface.cpp:856 +#: ../src/interface.cpp:850 msgid "Setup for widescreen work" msgstr "Setup voor breedbeeldwerk" -#: ../src/interface.cpp:953 +#: ../src/interface.cpp:947 #, c-format msgid "Verb \"%s\" Unknown" msgstr "Werkwoord \"%s\" is onbekend" -#: ../src/interface.cpp:995 +#: ../src/interface.cpp:989 msgid "Open _Recent" msgstr "_Recente bestanden" #. TRANSLATORS: #%s is the id of the group e.g. <g id="#g7">, not a number. -#: ../src/interface.cpp:1100 +#: ../src/interface.cpp:1094 #, c-format msgid "Enter group #%s" msgstr "Groep #%s binnengaan" -#: ../src/interface.cpp:1111 +#: ../src/interface.cpp:1105 msgid "Go to parent" msgstr "Naar de ouder gaan" -#: ../src/interface.cpp:1202 -#: ../src/interface.cpp:1288 -#: ../src/interface.cpp:1391 +#: ../src/interface.cpp:1196 +#: ../src/interface.cpp:1282 +#: ../src/interface.cpp:1385 #: ../src/ui/widget/selected-style.cpp:469 msgid "Drop color" msgstr "Kleur plakken" -#: ../src/interface.cpp:1241 -#: ../src/interface.cpp:1351 +#: ../src/interface.cpp:1235 +#: ../src/interface.cpp:1345 msgid "Drop color on gradient" msgstr "Kleur plakken op kleurverloop" -#: ../src/interface.cpp:1404 +#: ../src/interface.cpp:1398 msgid "Could not parse SVG data" msgstr "De SVG-gegevens konden niet worden verwerkt." -#: ../src/interface.cpp:1443 +#: ../src/interface.cpp:1437 msgid "Drop SVG" msgstr "SVG plakken" -#: ../src/interface.cpp:1477 +#: ../src/interface.cpp:1471 msgid "Drop bitmap image" msgstr "Bitmap plakken" -#: ../src/interface.cpp:1569 +#: ../src/interface.cpp:1563 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">A file named \"%s\" already exists. Do you want to replace it?</span>\n" @@ -8776,7 +8931,7 @@ msgstr "" "\n" "Het bestand bestaat al in \"%s\". Door dit te vervangen, wordt de oude inhoud overschreven." -#: ../src/interface.cpp:1576 +#: ../src/interface.cpp:1570 #: ../share/extensions/web-set-att.inx.h:7 #: ../share/extensions/web-transmit-att.inx.h:7 msgid "Replace" @@ -8823,156 +8978,157 @@ msgstr "Paneelstijl" msgid "Dockbar style to show items on it" msgstr "Paneelstijl om items in weer te geven" -#: ../src/libgdl/gdl-dock-item-grip.c:384 -msgid "Iconify" -msgstr "Inklappen" +#: ../src/libgdl/gdl-dock-item-grip.c:379 +msgid "Iconify this dock" +msgstr "Dit paneel inklappen" -#: ../src/libgdl/gdl-dock-item-grip.c:386 -msgid "Close" -msgstr "Sluiten" +#: ../src/libgdl/gdl-dock-item-grip.c:381 +msgid "Close this dock" +msgstr "Dit paneel sluiten" -#: ../src/libgdl/gdl-dock-item-grip.c:695 +#: ../src/libgdl/gdl-dock-item-grip.c:703 #: ../src/libgdl/gdl-dock-tablabel.c:128 msgid "Controlling dock item" msgstr "Aansturend paneelitem" -#: ../src/libgdl/gdl-dock-item-grip.c:696 +#: ../src/libgdl/gdl-dock-item-grip.c:704 msgid "Dockitem which 'owns' this grip" msgstr "Paneelitem die dit grijppunt 'beheert'" #. Name -#: ../src/libgdl/gdl-dock-item.c:287 -#: ../src/widgets/toolbox.cpp:7725 -#: ../share/extensions/gcodetools_all_in_one.inx.h:34 +#: ../src/libgdl/gdl-dock-item.c:297 +#: ../src/widgets/toolbox.cpp:7767 +#: ../share/extensions/gcodetools_graffiti.inx.h:25 #: ../share/extensions/gcodetools_orientation_points.inx.h:6 msgid "Orientation" msgstr "OriΓ«ntatie" -#: ../src/libgdl/gdl-dock-item.c:288 +#: ../src/libgdl/gdl-dock-item.c:298 msgid "Orientation of the docking item" msgstr "OriΓ«ntatie van het paneelitem" -#: ../src/libgdl/gdl-dock-item.c:303 +#: ../src/libgdl/gdl-dock-item.c:313 msgid "Resizable" msgstr "Herschaalbaar" -#: ../src/libgdl/gdl-dock-item.c:304 -msgid "If set, the dock item can be resized when docked in a panel" +#: ../src/libgdl/gdl-dock-item.c:314 +#, fuzzy +msgid "If set, the dock item can be resized when docked in a GtkPanel widget" msgstr "Indien aangevinkt, kan het dockitem herschalen wanneer het in een paneel gezet is" -#: ../src/libgdl/gdl-dock-item.c:311 +#: ../src/libgdl/gdl-dock-item.c:321 msgid "Item behavior" msgstr "Itemgedrag" -#: ../src/libgdl/gdl-dock-item.c:312 +#: ../src/libgdl/gdl-dock-item.c:322 msgid "General behavior for the dock item (i.e. whether it can float, if it's locked, etc.)" msgstr "Algemeen gedrag voor het paneelitem (bijv. of het kan zweven, of het vergrendeld is, etc.)" -#: ../src/libgdl/gdl-dock-item.c:320 -#: ../src/libgdl/gdl-dock-master.c:151 +#: ../src/libgdl/gdl-dock-item.c:330 +#: ../src/libgdl/gdl-dock-master.c:153 msgid "Locked" msgstr "Vergrendeld" -#: ../src/libgdl/gdl-dock-item.c:321 +#: ../src/libgdl/gdl-dock-item.c:331 msgid "If set, the dock item cannot be dragged around and it doesn't show a grip" msgstr "Indien aangevinkt, kan het paneelitem niet rondgesleept worden en toont het geen grijppunt" -#: ../src/libgdl/gdl-dock-item.c:329 +#: ../src/libgdl/gdl-dock-item.c:339 msgid "Preferred width" msgstr "Voorkeursbreedte" -#: ../src/libgdl/gdl-dock-item.c:330 +#: ../src/libgdl/gdl-dock-item.c:340 msgid "Preferred width for the dock item" msgstr "Voorkeursbreedte voor panelen" -#: ../src/libgdl/gdl-dock-item.c:336 +#: ../src/libgdl/gdl-dock-item.c:346 msgid "Preferred height" msgstr "Voorkeurshoogte" -#: ../src/libgdl/gdl-dock-item.c:337 +#: ../src/libgdl/gdl-dock-item.c:347 msgid "Preferred height for the dock item" msgstr "Voorkeurshoogte voor panelen" -#: ../src/libgdl/gdl-dock-item.c:616 +#: ../src/libgdl/gdl-dock-item.c:664 #, c-format msgid "You can't add a dock object (%p of type %s) inside a %s. Use a GdlDock or some other compound dock object." msgstr "U kunt geen paneelobject (%p van type %s) binnen een %s toevoegen. Gebruik een GdlDock of een ander paneelobject." -#: ../src/libgdl/gdl-dock-item.c:623 +#: ../src/libgdl/gdl-dock-item.c:671 #, c-format msgid "Attempting to add a widget with type %s to a %s, but it can only contain one widget at a time; it already contains a widget of type %s" msgstr "Kan geen widget van type %s aan %s toe te voegen, omdat deze er maar eentje kan bevatten; het bevat al een widget van type %s" -#: ../src/libgdl/gdl-dock-item.c:1345 -#: ../src/libgdl/gdl-dock-item.c:1390 +#: ../src/libgdl/gdl-dock-item.c:1392 +#: ../src/libgdl/gdl-dock-item.c:1442 #, c-format msgid "Unsupported docking strategy %s in dock object of type %s" msgstr "Niet-ondersteunde paneelstrategie %s in paneelobject van type %s" #. UnLock menuitem -#: ../src/libgdl/gdl-dock-item.c:1479 +#: ../src/libgdl/gdl-dock-item.c:1553 msgid "UnLock" msgstr "Ontgrendelen" #. Hide menuitem. -#: ../src/libgdl/gdl-dock-item.c:1486 +#: ../src/libgdl/gdl-dock-item.c:1560 msgid "Hide" msgstr "Verbergen" #. Lock menuitem -#: ../src/libgdl/gdl-dock-item.c:1491 +#: ../src/libgdl/gdl-dock-item.c:1565 msgid "Lock" msgstr "Vergrendelen" -#: ../src/libgdl/gdl-dock-item.c:1717 +#: ../src/libgdl/gdl-dock-item.c:1829 #, c-format msgid "Attempt to bind an unbound item %p" msgstr "Poging tot binden van ongebonden item %p" -#: ../src/libgdl/gdl-dock-master.c:144 +#: ../src/libgdl/gdl-dock-master.c:146 #: ../src/libgdl/gdl-dock.c:183 msgid "Default title" msgstr "Standaardtitel" -#: ../src/libgdl/gdl-dock-master.c:145 +#: ../src/libgdl/gdl-dock-master.c:147 msgid "Default title for newly created floating docks" msgstr "Standaardtitel voor nieuw aangemaakte zwevende panelen" -#: ../src/libgdl/gdl-dock-master.c:152 +#: ../src/libgdl/gdl-dock-master.c:154 msgid "If is set to 1, all the dock items bound to the master are locked; if it's 0, all are unlocked; -1 indicates inconsistency among the items" msgstr "Indien ingesteld op 1, zijn alle paneelitems vergrendeld die gebonden zijn aan de meester; indien 0, is alles ontgrendeld; -1 geeft aan dat items verschillend ingesteld zijn" -#: ../src/libgdl/gdl-dock-master.c:160 -#: ../src/libgdl/gdl-switcher.c:698 +#: ../src/libgdl/gdl-dock-master.c:162 +#: ../src/libgdl/gdl-switcher.c:692 msgid "Switcher Style" msgstr "Stijl wisselen" -#: ../src/libgdl/gdl-dock-master.c:161 -#: ../src/libgdl/gdl-switcher.c:699 +#: ../src/libgdl/gdl-dock-master.c:163 +#: ../src/libgdl/gdl-switcher.c:693 msgid "Switcher buttons style" msgstr "Stijl knoppen wisselen" -#: ../src/libgdl/gdl-dock-master.c:168 +#: ../src/libgdl/gdl-dock-master.c:170 msgid "Expand direction" msgstr "Uitbreidingsrichting" -#: ../src/libgdl/gdl-dock-master.c:169 +#: ../src/libgdl/gdl-dock-master.c:171 msgid "Allow the master's dock items to expand their container dock objects in the given direction" msgstr "De paneelitems van de meester toestaan om hun containerobjecten uit te breiden in de aangegeven richting" -#: ../src/libgdl/gdl-dock-master.c:796 +#: ../src/libgdl/gdl-dock-master.c:807 #, c-format msgid "master %p: unable to add object %p[%s] to the hash. There already is an item with that name (%p)." msgstr "Meester %p: kan object %p[%s] niet aan de hash toevoegen. Er is al een item met die naam (%p)." -#: ../src/libgdl/gdl-dock-master.c:969 +#: ../src/libgdl/gdl-dock-master.c:979 #, c-format msgid "The new dock controller %p is automatic. Only manual dock objects should be named controller." msgstr "De nieuwe dock-controller %p is automatisch. Enkel manuele dock-objecten mogen controller genoemd worden." #: ../src/libgdl/gdl-dock-notebook.c:134 #: ../src/ui/dialog/align-and-distribute.cpp:1034 -#: ../src/ui/dialog/document-properties.cpp:117 +#: ../src/ui/dialog/document-properties.cpp:116 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1429 #: ../src/widgets/desktop-widget.cpp:1725 #: ../share/extensions/voronoi2svg.inx.h:8 @@ -9024,22 +9180,22 @@ msgstr "Paneelmeester" msgid "Dock master this dock object is bound to" msgstr "Paneelmeester waar dit paneelobject aan gebonden is" -#: ../src/libgdl/gdl-dock-object.c:434 +#: ../src/libgdl/gdl-dock-object.c:462 #, c-format msgid "Call to gdl_dock_object_dock in a dock object %p (object type is %s) which hasn't implemented this method" msgstr "Aanroep van gdl_dock_object_dock() in een paneelobject %p (objecttype %s) die deze methode niet geΓ―mplementeerd heeft" -#: ../src/libgdl/gdl-dock-object.c:563 +#: ../src/libgdl/gdl-dock-object.c:595 #, c-format msgid "Dock operation requested in a non-bound object %p. The application might crash" msgstr "Een paneelbewerking werd aangevraagd in niet-gebonden object %p. De toepassing kan crashen." -#: ../src/libgdl/gdl-dock-object.c:570 +#: ../src/libgdl/gdl-dock-object.c:602 #, c-format msgid "Cannot dock %p to %p because they belong to different masters" msgstr "Kan %p niet aan %p koppelen, omdat ze aan verschillende meesters toebehoren" -#: ../src/libgdl/gdl-dock-object.c:612 +#: ../src/libgdl/gdl-dock-object.c:644 #, c-format msgid "Attempt to bind to %p an already bound dock object %p (current master: %p)" msgstr "Poging tot binden aan %p van een reeds gebonden paneelobject %p (huidige meester: %p)" @@ -9052,88 +9208,90 @@ msgstr "Positie" msgid "Position of the divider in pixels" msgstr "Positie van de scheider in pixels" -#: ../src/libgdl/gdl-dock-placeholder.c:143 +#: ../src/libgdl/gdl-dock-placeholder.c:144 msgid "Sticky" msgstr "Klevend" -#: ../src/libgdl/gdl-dock-placeholder.c:144 +#: ../src/libgdl/gdl-dock-placeholder.c:145 msgid "Whether the placeholder will stick to its host or move up the hierarchy when the host is redocked" msgstr "Of de plaatshouder bij de ouder blijft of omhoogschuift in de hiΓ«rarchie wanneer de ouder herplaatst wordt" -#: ../src/libgdl/gdl-dock-placeholder.c:151 +#: ../src/libgdl/gdl-dock-placeholder.c:152 msgid "Host" msgstr "Ouder" -#: ../src/libgdl/gdl-dock-placeholder.c:152 +#: ../src/libgdl/gdl-dock-placeholder.c:153 msgid "The dock object this placeholder is attached to" msgstr "Het paneelobject waar deze plaatshouder aan verbonden is" -#: ../src/libgdl/gdl-dock-placeholder.c:159 +#: ../src/libgdl/gdl-dock-placeholder.c:160 msgid "Next placement" msgstr "Volgende plaatsing" -#: ../src/libgdl/gdl-dock-placeholder.c:160 +#: ../src/libgdl/gdl-dock-placeholder.c:161 msgid "The position an item will be docked to our host if a request is made to dock to us" msgstr "De positie waar een item geplaatst zal worden ten opzichte van de ouder wanneer er een verzoek is tot herplaatsen" -#: ../src/libgdl/gdl-dock-placeholder.c:169 +#: ../src/libgdl/gdl-dock-placeholder.c:170 #: ../src/libgdl/gdl-dock.c:190 -#: ../src/widgets/toolbox.cpp:3329 -#: ../src/widgets/toolbox.cpp:4347 -#: ../src/widgets/toolbox.cpp:4667 +#: ../src/widgets/toolbox.cpp:3377 +#: ../src/widgets/toolbox.cpp:4395 +#: ../src/widgets/toolbox.cpp:4709 #: ../share/extensions/interp_att_g.inx.h:28 msgid "Width" msgstr "Breedte" -#: ../src/libgdl/gdl-dock-placeholder.c:170 +#: ../src/libgdl/gdl-dock-placeholder.c:171 msgid "Width for the widget when it's attached to the placeholder" msgstr "Breedte van het widget wanneer het verbonden is met de plaatshouder" -#: ../src/libgdl/gdl-dock-placeholder.c:177 +#: ../src/libgdl/gdl-dock-placeholder.c:178 #: ../src/libgdl/gdl-dock.c:198 -#: ../src/widgets/toolbox.cpp:3346 +#: ../src/widgets/toolbox.cpp:3394 #: ../share/extensions/interp_att_g.inx.h:7 msgid "Height" msgstr "Hoogte" -#: ../src/libgdl/gdl-dock-placeholder.c:178 +#: ../src/libgdl/gdl-dock-placeholder.c:179 msgid "Height for the widget when it's attached to the placeholder" msgstr "Hoogte van het widget wanneer het verbonden is met de plaatshouder" -#: ../src/libgdl/gdl-dock-placeholder.c:184 +#: ../src/libgdl/gdl-dock-placeholder.c:185 msgid "Floating Toplevel" msgstr "Zwevend topniveau" -#: ../src/libgdl/gdl-dock-placeholder.c:185 +#: ../src/libgdl/gdl-dock-placeholder.c:186 msgid "Whether the placeholder is standing in for a floating toplevel dock" msgstr "Of de plaatshouder instaat voor een vlottend paneel op het hoogste niveau" -#: ../src/libgdl/gdl-dock-placeholder.c:191 +#: ../src/libgdl/gdl-dock-placeholder.c:192 msgid "X-Coordinate" msgstr "X-coΓ¶rdinaat" -#: ../src/libgdl/gdl-dock-placeholder.c:192 -msgid "X coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:193 +#, fuzzy +msgid "X-Coordinate for dock when floating" msgstr "X-coΓ¶rdinaat voor zwevend paneel" -#: ../src/libgdl/gdl-dock-placeholder.c:198 +#: ../src/libgdl/gdl-dock-placeholder.c:199 msgid "Y-Coordinate" msgstr "Y-coΓ¶rdinaat" -#: ../src/libgdl/gdl-dock-placeholder.c:199 -msgid "Y coordinate for dock when floating" +#: ../src/libgdl/gdl-dock-placeholder.c:200 +#, fuzzy +msgid "Y-Coordinate for dock when floating" msgstr "Y-coΓ¶rdinaat voor zwevend paneel" -#: ../src/libgdl/gdl-dock-placeholder.c:495 +#: ../src/libgdl/gdl-dock-placeholder.c:498 msgid "Attempt to dock a dock object to an unbound placeholder" msgstr "Probeer een paneelobject aan een ongebonden plaatshouder te verbinden" -#: ../src/libgdl/gdl-dock-placeholder.c:619 +#: ../src/libgdl/gdl-dock-placeholder.c:626 #, c-format msgid "Got a detach signal from an object (%p) who is not our host %p" msgstr "Kreeg een ontkoppelingssignaal van een object (%p) die niet op onze host %p is." -#: ../src/libgdl/gdl-dock-placeholder.c:644 +#: ../src/libgdl/gdl-dock-placeholder.c:651 #, c-format msgid "Something weird happened while getting the child placement for %p from parent %p" msgstr "Iets vreemd gebeurde tijdens het opvragen van de positie van dochter %p van ouder %p" @@ -9143,8 +9301,8 @@ msgid "Dockitem which 'owns' this tablabel" msgstr "Paneelitem die dit tabbladlabel 'beheert'" #: ../src/libgdl/gdl-dock.c:175 -#: ../src/ui/dialog/inkscape-preferences.cpp:590 -#: ../src/ui/dialog/inkscape-preferences.cpp:611 +#: ../src/ui/dialog/inkscape-preferences.cpp:591 +#: ../src/ui/dialog/inkscape-preferences.cpp:612 msgid "Floating" msgstr "Zwevend" @@ -9180,7 +9338,7 @@ msgstr "Zwevend Y" msgid "Y coordinate for a floating dock" msgstr "Y-coΓ¶rdinaat voor een zwevend paneel" -#: ../src/libgdl/gdl-dock.c:499 +#: ../src/libgdl/gdl-dock.c:486 #, c-format msgid "Dock #%d" msgstr "Paneel #%d" @@ -9870,12 +10028,12 @@ msgid "Both" msgstr "Beide" #: ../src/live_effects/lpe-ruler.cpp:35 -#: ../src/widgets/toolbox.cpp:5621 +#: ../src/widgets/toolbox.cpp:5663 msgid "Start" msgstr "Begin" #: ../src/live_effects/lpe-ruler.cpp:36 -#: ../src/widgets/toolbox.cpp:5634 +#: ../src/widgets/toolbox.cpp:5676 msgid "End" msgstr "Einde" @@ -10200,216 +10358,216 @@ msgstr "Niet in staat verb ID '%s' te vinden zoals opgegeven op de commandoregel msgid "Unable to find node ID: '%s'\n" msgstr "Kan node-ID '%s' niet vinden.\n" -#: ../src/main.cpp:263 +#: ../src/main.cpp:262 msgid "Print the Inkscape version number" msgstr "Het versienummer van Inkscape tonen" -#: ../src/main.cpp:268 +#: ../src/main.cpp:267 msgid "Do not use X server (only process files from console)" msgstr "X-server niet gebruiken (alleen bestanden van de terminal verwerken)" -#: ../src/main.cpp:273 +#: ../src/main.cpp:272 msgid "Try to use X server (even if $DISPLAY is not set)" msgstr "X-server proberen te gebruiken (zelfs als $DISPLAY geen waarde heeft)" -#: ../src/main.cpp:278 +#: ../src/main.cpp:277 msgid "Open specified document(s) (option string may be excluded)" msgstr "Gegeven document(en) openen (optie-tekenreeks hoeft niet te worden opgegeven)" -#: ../src/main.cpp:279 -#: ../src/main.cpp:284 -#: ../src/main.cpp:289 -#: ../src/main.cpp:356 -#: ../src/main.cpp:361 -#: ../src/main.cpp:366 -#: ../src/main.cpp:371 -#: ../src/main.cpp:382 +#: ../src/main.cpp:278 +#: ../src/main.cpp:283 +#: ../src/main.cpp:288 +#: ../src/main.cpp:355 +#: ../src/main.cpp:360 +#: ../src/main.cpp:365 +#: ../src/main.cpp:370 +#: ../src/main.cpp:381 msgid "FILENAME" msgstr "BESTANDSNAAM" -#: ../src/main.cpp:283 +#: ../src/main.cpp:282 msgid "Print document(s) to specified output file (use '| program' for pipe)" msgstr "Document(en) afdrukken naar het opgegeven bestand (gebruik '| programma' voor een pijp)" -#: ../src/main.cpp:288 +#: ../src/main.cpp:287 msgid "Export document to a PNG file" msgstr "Document exporteren naar PNG-bestand" -#: ../src/main.cpp:293 +#: ../src/main.cpp:292 msgid "Resolution for exporting to bitmap and for rasterization of filters in PS/EPS/PDF (default 90)" msgstr "Resolutie voor het exporteren van de bitmap en voor rasterisatie van filters in PS/EPS/PDF (standaard 90)" -#: ../src/main.cpp:294 +#: ../src/main.cpp:293 #: ../src/ui/widget/rendering-options.cpp:43 msgid "DPI" msgstr "PPI" -#: ../src/main.cpp:298 +#: ../src/main.cpp:297 msgid "Exported area in SVG user units (default is the page; 0,0 is lower-left corner)" msgstr "GeΓ«xporteerde oppervlakte in SVG-eenheden (standaard de volledige pagina; 0,0 is de hoek linksonder)" -#: ../src/main.cpp:299 +#: ../src/main.cpp:298 msgid "x0:y0:x1:y1" msgstr "x0:y0:x1:y1" -#: ../src/main.cpp:303 +#: ../src/main.cpp:302 msgid "Exported area is the entire drawing (not page)" msgstr "Het geΓ«xporteerde gebied is de volledige tekening (niet de pagina)" -#: ../src/main.cpp:308 +#: ../src/main.cpp:307 msgid "Exported area is the entire page" msgstr "Het geΓ«xporteerde gebied is de volledige pagina" -#: ../src/main.cpp:313 +#: ../src/main.cpp:312 msgid "Snap the bitmap export area outwards to the nearest integer values (in SVG user units)" msgstr "De grootte van het te exporteren bitmap-gebied naar boven afronden op een geheel getal (in SVG-eenheden)" -#: ../src/main.cpp:318 +#: ../src/main.cpp:317 msgid "The width of exported bitmap in pixels (overrides export-dpi)" msgstr "De breedte van de gegenereerde bitmap in pixels (dit negeert de PPI)" -#: ../src/main.cpp:319 +#: ../src/main.cpp:318 msgid "WIDTH" msgstr "BREEDTE" -#: ../src/main.cpp:323 +#: ../src/main.cpp:322 msgid "The height of exported bitmap in pixels (overrides export-dpi)" msgstr "De hoogte van de gegenereerde bitmap in pixels (dit negeert de PPI)" -#: ../src/main.cpp:324 +#: ../src/main.cpp:323 msgid "HEIGHT" msgstr "HOOGTE" -#: ../src/main.cpp:328 +#: ../src/main.cpp:327 msgid "The ID of the object to export" msgstr "Het ID van het te exporteren object" -#: ../src/main.cpp:329 -#: ../src/main.cpp:427 +#: ../src/main.cpp:328 +#: ../src/main.cpp:426 msgid "ID" msgstr "ID" #. TRANSLATORS: this means: "Only export the object whose id is given in --export-id". #. See "man inkscape" for details. -#: ../src/main.cpp:335 +#: ../src/main.cpp:334 msgid "Export just the object with export-id, hide all others (only with export-id)" msgstr "Alleen het object met het gegeven ID exporteren; alle andere objecten verbergen (alleen samen met '--export-id')" -#: ../src/main.cpp:340 +#: ../src/main.cpp:339 msgid "Use stored filename and DPI hints when exporting (only with export-id)" msgstr "De opgeslagen bestandsnaam en PPI-hints gebruiken bij het exporteren (alleen samen met '--export-id')" -#: ../src/main.cpp:345 +#: ../src/main.cpp:344 msgid "Background color of exported bitmap (any SVG-supported color string)" msgstr "Achtergrondkleur van de geΓ«xporteerde bitmap (kan iedere door SVG ondersteunde kleur zijn)" -#: ../src/main.cpp:346 +#: ../src/main.cpp:345 msgid "COLOR" msgstr "KLEUR" -#: ../src/main.cpp:350 +#: ../src/main.cpp:349 msgid "Background opacity of exported bitmap (either 0.0 to 1.0, or 1 to 255)" msgstr "Achtergrondondoorzichtigheid van de geΓ«xporteerde bitmap (ofwel tussen 0.0 en 1.0, of tussen 1 en 255)" -#: ../src/main.cpp:351 +#: ../src/main.cpp:350 msgid "VALUE" msgstr "WAARDE" -#: ../src/main.cpp:355 +#: ../src/main.cpp:354 msgid "Export document to plain SVG file (no sodipodi or inkscape namespaces)" msgstr "Document exporteren naar gewoon SVG-bestand (geen sodipodi- of inkscape-naamruimte)" -#: ../src/main.cpp:360 +#: ../src/main.cpp:359 msgid "Export document to a PS file" msgstr "Document exporteren naar een PS-bestand" -#: ../src/main.cpp:365 +#: ../src/main.cpp:364 msgid "Export document to an EPS file" msgstr "Document exporteren naar een EPS-bestand" -#: ../src/main.cpp:370 +#: ../src/main.cpp:369 msgid "Export document to a PDF file" msgstr "Document exporteren naar een PDF-bestand" -#: ../src/main.cpp:375 +#: ../src/main.cpp:374 msgid "Export PDF/PS/EPS without text. Besides the PDF/PS/EPS, a LaTeX file is exported, putting the text on top of the PDF/PS/EPS file. Include the result in LaTeX like: \\input{latexfile.tex}" msgstr "PDF/PS/EPS zonder tekst exporteren. Behalve de PDF/PS/EPS wordt een LaTeX-bestand geΓ«xporteerd dat de tekst op het PDF/PS/EPS-bestand plaatst. Voeg het resultaat in LaTeX in met: \\input{latexfile.tex}" -#: ../src/main.cpp:381 +#: ../src/main.cpp:380 msgid "Export document to an Enhanced Metafile (EMF) File" msgstr "Document exporteren naar een EMF-bestand (Enhanced Metafile)" -#: ../src/main.cpp:387 +#: ../src/main.cpp:386 msgid "Convert text object to paths on export (PS, EPS, PDF)" msgstr "Tekst omzetten naar paden bij het exporteren (PS, EPS, PDF)" -#: ../src/main.cpp:392 +#: ../src/main.cpp:391 msgid "Render filtered objects without filters, instead of rasterizing (PS, EPS, PDF)" msgstr "Gefilterde objecten renderen zonder filters in plaats van rasteriseren (PS, EPS, PDF)" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:398 +#: ../src/main.cpp:397 msgid "Query the X coordinate of the drawing or, if specified, of the object with --query-id" msgstr "De X-coΓ¶rdinaat van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:404 +#: ../src/main.cpp:403 msgid "Query the Y coordinate of the drawing or, if specified, of the object with --query-id" msgstr "De Y-coΓ¶rdinaat van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:410 +#: ../src/main.cpp:409 msgid "Query the width of the drawing or, if specified, of the object with --query-id" msgstr "De breedte van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:416 +#: ../src/main.cpp:415 msgid "Query the height of the drawing or, if specified, of the object with --query-id" msgstr "De hoogte van de tekening opvragen, of - indien opgegeven met --query-id - van het object" -#: ../src/main.cpp:421 +#: ../src/main.cpp:420 msgid "List id,x,y,w,h for all objects" msgstr "Lijst id,x,y,b,h van alle objecten" -#: ../src/main.cpp:426 +#: ../src/main.cpp:425 msgid "The ID of the object whose dimensions are queried" msgstr "Het ID van het object waarvan de informatie wordt opgevraagd" #. TRANSLATORS: this option makes Inkscape print the name (path) of the extension directory -#: ../src/main.cpp:432 +#: ../src/main.cpp:431 msgid "Print out the extension directory and exit" msgstr "De naam van de uitbreidingenmap tonen en stoppen" -#: ../src/main.cpp:437 +#: ../src/main.cpp:436 msgid "Remove unused definitions from the defs section(s) of the document" msgstr "Ongebruikte definities uit de 'defs'-onderdelen van het bestand verwijderen" -#: ../src/main.cpp:442 +#: ../src/main.cpp:441 msgid "List the IDs of all the verbs in Inkscape" msgstr "Lijst met ID's van alle verbs in Inkscape" -#: ../src/main.cpp:447 +#: ../src/main.cpp:446 msgid "Verb to call when Inkscape opens." msgstr "Verb om aan te roepen als Inkscape start." -#: ../src/main.cpp:448 +#: ../src/main.cpp:447 msgid "VERB-ID" msgstr "VERB-ID" -#: ../src/main.cpp:452 +#: ../src/main.cpp:451 msgid "Object ID to select when Inkscape opens." msgstr "Te selecteren object-ID wanneer Inkscape opent." -#: ../src/main.cpp:453 +#: ../src/main.cpp:452 msgid "OBJECT-ID" msgstr "OBJECT-ID" -#: ../src/main.cpp:457 +#: ../src/main.cpp:456 msgid "Start Inkscape in interactive shell mode." msgstr "Inkscape in interactieve commandomodus starten." -#: ../src/main.cpp:795 -#: ../src/main.cpp:1121 +#: ../src/main.cpp:791 +#: ../src/main.cpp:1117 msgid "" "[OPTIONS...] [FILE...]\n" "\n" @@ -10438,7 +10596,7 @@ msgid "_Edit" msgstr "Be_werken" #: ../src/menus-skeleton.h:57 -#: ../src/verbs.cpp:2290 +#: ../src/verbs.cpp:2288 msgid "Paste Si_ze" msgstr "_Grootte plakken" @@ -10446,147 +10604,147 @@ msgstr "_Grootte plakken" msgid "Clo_ne" msgstr "_Klonen" -#: ../src/menus-skeleton.h:89 +#: ../src/menus-skeleton.h:90 msgid "_View" msgstr "Beel_d" -#: ../src/menus-skeleton.h:90 +#: ../src/menus-skeleton.h:91 msgid "_Zoom" msgstr "_Zoomen" -#: ../src/menus-skeleton.h:106 +#: ../src/menus-skeleton.h:107 msgid "_Display mode" msgstr "_Afbeeldingsmodus" #. Better location in menu needs to be found #. " <verb verb-id=\"ViewModePrintColorsPreview\" radio=\"yes\"/>\n" #. " <verb verb-id=\"DialogPrintColorsPreview\" />\n" -#: ../src/menus-skeleton.h:115 +#: ../src/menus-skeleton.h:116 msgid "_Color display mode" msgstr "_Kleurweergavemodus" #. Better location in menu needs to be found #. " <verb verb-id=\"ViewColorModePrintColorsPreview\" radio=\"yes\"/>\n" #. " <verb verb-id=\"DialogPrintColorsPreview\" />\n" -#: ../src/menus-skeleton.h:129 +#: ../src/menus-skeleton.h:130 msgid "Sh_ow/Hide" msgstr "_Weergeven/verbergen" #. " <verb verb-id=\"DialogScript\" />\n" #. Not quite ready to be in the menus. #. " <verb verb-id=\"FocusToggle\" />\n" -#: ../src/menus-skeleton.h:150 +#: ../src/menus-skeleton.h:151 msgid "_Layer" msgstr "_Laag" -#: ../src/menus-skeleton.h:170 +#: ../src/menus-skeleton.h:171 msgid "_Object" msgstr "_Object" -#: ../src/menus-skeleton.h:177 +#: ../src/menus-skeleton.h:178 msgid "Cli_p" msgstr "Masker_pad" -#: ../src/menus-skeleton.h:181 +#: ../src/menus-skeleton.h:182 msgid "Mas_k" msgstr "Mas_ker" -#: ../src/menus-skeleton.h:185 +#: ../src/menus-skeleton.h:186 msgid "Patter_n" msgstr "Patroo_n" -#: ../src/menus-skeleton.h:209 +#: ../src/menus-skeleton.h:210 msgid "_Path" msgstr "_Paden" -#: ../src/menus-skeleton.h:256 +#: ../src/menus-skeleton.h:257 msgid "Filter_s" msgstr "_Filters" -#: ../src/menus-skeleton.h:262 +#: ../src/menus-skeleton.h:263 msgid "Exte_nsions" msgstr "_Uitbreidingen" -#: ../src/menus-skeleton.h:269 +#: ../src/menus-skeleton.h:270 msgid "Whiteboa_rd" msgstr "_Samenwerken" -#: ../src/menus-skeleton.h:273 +#: ../src/menus-skeleton.h:274 msgid "_Help" msgstr "_Help" -#: ../src/menus-skeleton.h:277 +#: ../src/menus-skeleton.h:278 msgid "Tutorials" msgstr "_Handleidingen" -#: ../src/object-edit.cpp:437 +#: ../src/object-edit.cpp:430 msgid "Adjust the <b>horizontal rounding</b> radius; with <b>Ctrl</b> to make the vertical radius the same" msgstr "De straal van de <b>horizontale afronding</b> van hoeken instellen; gebruik <b>Ctrl</b> om de verticale straal gelijk te maken" -#: ../src/object-edit.cpp:441 +#: ../src/object-edit.cpp:434 msgid "Adjust the <b>vertical rounding</b> radius; with <b>Ctrl</b> to make the horizontal radius the same" msgstr "De straal van de <b>verticale afronding</b> van hoeken instellen; gebruik <b>Ctrl</b> om de horizontale straal gelijk te maken" -#: ../src/object-edit.cpp:445 -#: ../src/object-edit.cpp:449 +#: ../src/object-edit.cpp:438 +#: ../src/object-edit.cpp:442 msgid "Adjust the <b>width and height</b> of the rectangle; with <b>Ctrl</b> to lock ratio or stretch in one dimension only" msgstr "De <b>hoogte en breedte</b> van de rechthoek aanpassen; gebruik <b>Ctrl</b> om de verhouding te vergrendelen of om in één dimensie te schalen" -#: ../src/object-edit.cpp:683 -#: ../src/object-edit.cpp:686 -#: ../src/object-edit.cpp:689 -#: ../src/object-edit.cpp:692 +#: ../src/object-edit.cpp:676 +#: ../src/object-edit.cpp:679 +#: ../src/object-edit.cpp:682 +#: ../src/object-edit.cpp:685 msgid "Resize box in X/Y direction; with <b>Shift</b> along the Z axis; with <b>Ctrl</b> to constrain to the directions of edges or diagonals" msgstr "Verander kubus grootte in X/Y-richting; met <b>Shift</b> over de Z-as; met <b>Ctrl</b> om de richting van randen en diagonalen vast te zetten." -#: ../src/object-edit.cpp:695 -#: ../src/object-edit.cpp:698 -#: ../src/object-edit.cpp:701 -#: ../src/object-edit.cpp:704 +#: ../src/object-edit.cpp:688 +#: ../src/object-edit.cpp:691 +#: ../src/object-edit.cpp:694 +#: ../src/object-edit.cpp:697 msgid "Resize box along the Z axis; with <b>Shift</b> in X/Y direction; with <b>Ctrl</b> to constrain to the directions of edges or diagonals" msgstr "Verander grootte van kubus over de Z-as; met <b>Shift</b> in X/Y-richting; met <b>Ctrl</b> om de richting van randen of diagonalen vast te zetten" -#: ../src/object-edit.cpp:707 +#: ../src/object-edit.cpp:700 msgid "Move the box in perspective" msgstr "De kubus in perspectief verplaatsen" -#: ../src/object-edit.cpp:925 +#: ../src/object-edit.cpp:918 msgid "Adjust ellipse <b>width</b>, with <b>Ctrl</b> to make circle" msgstr "De <b>breedte</b> van de ellips aanpassen; gebruik <b>Ctrl</b> om een cirkel te maken" -#: ../src/object-edit.cpp:928 +#: ../src/object-edit.cpp:921 msgid "Adjust ellipse <b>height</b>, with <b>Ctrl</b> to make circle" msgstr "De <b>hoogte</b> van de ellips aanpassen; gebruik <b>Ctrl</b> om een cirkel te maken" -#: ../src/object-edit.cpp:931 +#: ../src/object-edit.cpp:924 msgid "Position the <b>start point</b> of the arc or segment; with <b>Ctrl</b> to snap angle; drag <b>inside</b> the ellipse for arc, <b>outside</b> for segment" msgstr "Positioneer het <b>beginpunt</b> van boog of segment; <b>Ctrl</b> om te draaien in stappen; sleep <b>binnen</b> de ellips voor een boog, <b>erbuiten</b> voor een segment" -#: ../src/object-edit.cpp:935 +#: ../src/object-edit.cpp:928 msgid "Position the <b>end point</b> of the arc or segment; with <b>Ctrl</b> to snap angle; drag <b>inside</b> the ellipse for arc, <b>outside</b> for segment" msgstr "Positioneer het <b>eindpunt</b> van boog of segment; <b>Ctrl</b> om te draaien in stappen; sleep <b>binnen</b> de ellips voor een boog, <b>erbuiten</b> voor een segment" -#: ../src/object-edit.cpp:1074 +#: ../src/object-edit.cpp:1067 msgid "Adjust the <b>tip radius</b> of the star or polygon; with <b>Shift</b> to round; with <b>Alt</b> to randomize" msgstr "De <b>puntstraal</b> van ster of veelhoek aanpassen: <b>Shift</b> om af te ronden; <b>Alt</b> voor willekeur" -#: ../src/object-edit.cpp:1081 +#: ../src/object-edit.cpp:1074 msgid "Adjust the <b>base radius</b> of the star; with <b>Ctrl</b> to keep star rays radial (no skew); with <b>Shift</b> to round; with <b>Alt</b> to randomize" msgstr "De <b>binnenstraal</b> van ster of veelhoek aanpassen: <b>Ctrl</b> om de punten radiaal te houden; <b>Shift</b> om af te ronden; <b>Alt</b> voor willekeur" -#: ../src/object-edit.cpp:1270 +#: ../src/object-edit.cpp:1263 msgid "Roll/unroll the spiral from <b>inside</b>; with <b>Ctrl</b> to snap angle; with <b>Alt</b> to converge/diverge" msgstr "De spiraal op- of afrollen langs de <b>binnenkant</b>; <b>Ctrl</b> om te draaien in stappen; <b>Alt</b> om te convergeren/uit te waaieren" -#: ../src/object-edit.cpp:1273 +#: ../src/object-edit.cpp:1266 msgid "Roll/unroll the spiral from <b>outside</b>; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to scale/rotate" msgstr "De spiraal op- of afrollen langs de <b>buitenkant</b>; <b>Ctrl</b> om te draaien in stappen; <b>Shift</b> om te schalen/draaien" -#: ../src/object-edit.cpp:1317 +#: ../src/object-edit.cpp:1310 msgid "Adjust the <b>offset distance</b>" msgstr "De <b>afstand voor verplaatsen</b> aanpassen" -#: ../src/object-edit.cpp:1353 +#: ../src/object-edit.cpp:1346 msgid "Drag to resize the <b>flowed text frame</b>" msgstr "Sleep om het <b>kader van de ingekaderde tekst</b> te schalen" @@ -10926,7 +11084,7 @@ msgid "Unique URI to a related document" msgstr "Een unieke URI naar een gerelateerd document" #: ../src/rdf.cpp:263 -#: ../src/ui/dialog/inkscape-preferences.cpp:1316 +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "Language:" msgstr "Taal:" @@ -11056,360 +11214,360 @@ msgstr "<b>Alt</b>: klik voor onderselectie; scroll muiswiel om de selectie te w msgid "Selected object is not a group. Cannot enter." msgstr "Het geselecteerde object is geen groep. Kan er niet in gaan." -#: ../src/selection-chemistry.cpp:306 +#: ../src/selection-chemistry.cpp:302 msgid "Delete text" msgstr "Tekst verwijderen" -#: ../src/selection-chemistry.cpp:314 +#: ../src/selection-chemistry.cpp:310 msgid "<b>Nothing</b> was deleted." msgstr "Er is <b>niets</b> verwijderd." -#: ../src/selection-chemistry.cpp:332 +#: ../src/selection-chemistry.cpp:328 #: ../src/text-context.cpp:1026 #: ../src/ui/dialog/swatches.cpp:204 #: ../src/ui/dialog/swatches.cpp:267 -#: ../src/widgets/toolbox.cpp:1383 -#: ../src/widgets/toolbox.cpp:6189 +#: ../src/widgets/toolbox.cpp:1385 +#: ../src/widgets/toolbox.cpp:6231 msgid "Delete" msgstr "Verwijderen" -#: ../src/selection-chemistry.cpp:360 +#: ../src/selection-chemistry.cpp:356 msgid "Select <b>object(s)</b> to duplicate." msgstr "Selecteer (een) <b>object(en)</b> om te dupliceren." -#: ../src/selection-chemistry.cpp:461 +#: ../src/selection-chemistry.cpp:457 msgid "Delete all" msgstr "Alles verwijderen" -#: ../src/selection-chemistry.cpp:647 +#: ../src/selection-chemistry.cpp:643 msgid "Select <b>some objects</b> to group." msgstr "Selecteer <b>twee objecten of meer objecten</b> om te groeperen." -#: ../src/selection-chemistry.cpp:662 +#: ../src/selection-chemistry.cpp:658 #: ../src/selection-describer.cpp:52 msgid "Group" msgstr "Groeperen" -#: ../src/selection-chemistry.cpp:676 +#: ../src/selection-chemistry.cpp:672 msgid "Select a <b>group</b> to ungroup." msgstr "Selecteer een <b>groep</b> om op te heffen" -#: ../src/selection-chemistry.cpp:717 +#: ../src/selection-chemistry.cpp:713 msgid "<b>No groups</b> to ungroup in the selection." msgstr "<b>Geen groepen geselecteerd</b> om op te heffen." -#: ../src/selection-chemistry.cpp:723 -#: ../src/sp-item-group.cpp:503 +#: ../src/selection-chemistry.cpp:719 +#: ../src/sp-item-group.cpp:501 msgid "Ungroup" msgstr "Groep opheffen" -#: ../src/selection-chemistry.cpp:809 +#: ../src/selection-chemistry.cpp:805 msgid "Select <b>object(s)</b> to raise." msgstr "Selecteer <b>object(en)</b> om naar boven te brengen." -#: ../src/selection-chemistry.cpp:815 -#: ../src/selection-chemistry.cpp:875 -#: ../src/selection-chemistry.cpp:909 -#: ../src/selection-chemistry.cpp:973 +#: ../src/selection-chemistry.cpp:811 +#: ../src/selection-chemistry.cpp:871 +#: ../src/selection-chemistry.cpp:905 +#: ../src/selection-chemistry.cpp:969 msgid "You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>." msgstr "U kunt geen object uit <b>verschillende groepen</b> of <b>lagen</b> naar boven brengen of naar onder sturen." #. TRANSLATORS: "Raise" means "to raise an object" in the undo history -#: ../src/selection-chemistry.cpp:855 +#: ../src/selection-chemistry.cpp:851 msgctxt "Undo action" msgid "Raise" msgstr "Verhogen" -#: ../src/selection-chemistry.cpp:867 +#: ../src/selection-chemistry.cpp:863 msgid "Select <b>object(s)</b> to raise to top." msgstr "Selecteer <b>objecten</b> die u helemaal naar boven wilt brengen." -#: ../src/selection-chemistry.cpp:890 +#: ../src/selection-chemistry.cpp:886 msgid "Raise to top" msgstr "Bovenaan" -#: ../src/selection-chemistry.cpp:903 +#: ../src/selection-chemistry.cpp:899 msgid "Select <b>object(s)</b> to lower." msgstr "Selecteer <b>objecten</b> die u naar onderen wilt brengen." -#: ../src/selection-chemistry.cpp:953 +#: ../src/selection-chemistry.cpp:949 msgid "Lower" msgstr "Omlaag" -#: ../src/selection-chemistry.cpp:965 +#: ../src/selection-chemistry.cpp:961 msgid "Select <b>object(s)</b> to lower to bottom." msgstr "Selecteer <b>objecten</b> die u naar helemaal naar onderen wilt sturen." -#: ../src/selection-chemistry.cpp:1000 +#: ../src/selection-chemistry.cpp:996 msgid "Lower to bottom" msgstr "Onderaan" -#: ../src/selection-chemistry.cpp:1007 +#: ../src/selection-chemistry.cpp:1003 msgid "Nothing to undo." msgstr "Er is niets om ongedaan te maken." -#: ../src/selection-chemistry.cpp:1015 +#: ../src/selection-chemistry.cpp:1011 msgid "Nothing to redo." msgstr "Er is niets om opnieuw te doen." -#: ../src/selection-chemistry.cpp:1076 +#: ../src/selection-chemistry.cpp:1072 msgid "Paste" msgstr "Plakken" -#: ../src/selection-chemistry.cpp:1084 +#: ../src/selection-chemistry.cpp:1080 msgid "Paste style" msgstr "Stijl plakken" -#: ../src/selection-chemistry.cpp:1094 +#: ../src/selection-chemistry.cpp:1090 msgid "Paste live path effect" msgstr "Padeffect plakken" -#: ../src/selection-chemistry.cpp:1115 +#: ../src/selection-chemistry.cpp:1111 msgid "Select <b>object(s)</b> to remove live path effects from." msgstr "Selecteer <b>object(en)</b> om padeffect van te verwijderen." -#: ../src/selection-chemistry.cpp:1127 +#: ../src/selection-chemistry.cpp:1123 msgid "Remove live path effect" msgstr "Padeffect verwijderen" -#: ../src/selection-chemistry.cpp:1138 +#: ../src/selection-chemistry.cpp:1134 msgid "Select <b>object(s)</b> to remove filters from." msgstr "Selecteer <b>object(en)</b> om filters van te verwijderen." -#: ../src/selection-chemistry.cpp:1148 +#: ../src/selection-chemistry.cpp:1144 #: ../src/ui/dialog/filter-effects-dialog.cpp:1352 msgid "Remove filter" msgstr "Verwijder filter" -#: ../src/selection-chemistry.cpp:1157 +#: ../src/selection-chemistry.cpp:1153 msgid "Paste size" msgstr "Grootte plakken" -#: ../src/selection-chemistry.cpp:1166 +#: ../src/selection-chemistry.cpp:1162 msgid "Paste size separately" msgstr "Grootte apart plakken" -#: ../src/selection-chemistry.cpp:1176 +#: ../src/selection-chemistry.cpp:1172 msgid "Select <b>object(s)</b> to move to the layer above." msgstr "Selecteer <b>objecten</b> om naar de bovenliggende laag te verplaatsen." -#: ../src/selection-chemistry.cpp:1202 +#: ../src/selection-chemistry.cpp:1198 msgid "Raise to next layer" msgstr "Verhoog naar de volgende laag" -#: ../src/selection-chemistry.cpp:1209 +#: ../src/selection-chemistry.cpp:1205 msgid "No more layers above." msgstr "Er zijn geen bovenliggende lagen." -#: ../src/selection-chemistry.cpp:1221 +#: ../src/selection-chemistry.cpp:1217 msgid "Select <b>object(s)</b> to move to the layer below." msgstr "Selecteer <b>objecten</b> om naar de onderliggende laag te verplaatsen." -#: ../src/selection-chemistry.cpp:1247 +#: ../src/selection-chemistry.cpp:1243 msgid "Lower to previous layer" msgstr "Verlaag naar de vorige laag" -#: ../src/selection-chemistry.cpp:1254 +#: ../src/selection-chemistry.cpp:1250 msgid "No more layers below." msgstr "Er zijn geen onderliggende lagen." -#: ../src/selection-chemistry.cpp:1477 +#: ../src/selection-chemistry.cpp:1473 msgid "Remove transform" msgstr "Transformatie verwijderen" -#: ../src/selection-chemistry.cpp:1580 +#: ../src/selection-chemistry.cpp:1576 msgid "Rotate 90° CCW" msgstr "90 graden draaien; TKI" -#: ../src/selection-chemistry.cpp:1580 +#: ../src/selection-chemistry.cpp:1576 msgid "Rotate 90° CW" msgstr "90 graden draaien; MKM" -#: ../src/selection-chemistry.cpp:1601 +#: ../src/selection-chemistry.cpp:1597 #: ../src/seltrans.cpp:517 -#: ../src/ui/dialog/transformation.cpp:771 +#: ../src/ui/dialog/transformation.cpp:770 msgid "Rotate" msgstr "Roteren" -#: ../src/selection-chemistry.cpp:1648 +#: ../src/selection-chemistry.cpp:1644 msgid "Rotate by pixels" msgstr "Per pixel draaien" -#: ../src/selection-chemistry.cpp:1678 +#: ../src/selection-chemistry.cpp:1674 #: ../src/seltrans.cpp:514 -#: ../src/ui/dialog/transformation.cpp:749 +#: ../src/ui/dialog/transformation.cpp:748 #: ../share/extensions/interp_att_g.inx.h:19 msgid "Scale" msgstr "Schalen" -#: ../src/selection-chemistry.cpp:1703 +#: ../src/selection-chemistry.cpp:1699 msgid "Scale by whole factor" msgstr "Met een hele factor schalen" -#: ../src/selection-chemistry.cpp:1718 +#: ../src/selection-chemistry.cpp:1714 msgid "Move vertically" msgstr "Verticaal verplaatsen" -#: ../src/selection-chemistry.cpp:1721 +#: ../src/selection-chemistry.cpp:1717 msgid "Move horizontally" msgstr "Horizontaal verplaatsen" -#: ../src/selection-chemistry.cpp:1724 -#: ../src/selection-chemistry.cpp:1750 +#: ../src/selection-chemistry.cpp:1720 +#: ../src/selection-chemistry.cpp:1746 #: ../src/seltrans.cpp:511 -#: ../src/ui/dialog/transformation.cpp:692 +#: ../src/ui/dialog/transformation.cpp:691 msgid "Move" msgstr "Verplaatsen" -#: ../src/selection-chemistry.cpp:1744 +#: ../src/selection-chemistry.cpp:1740 msgid "Move vertically by pixels" msgstr "Verticaal verplaatsen per pixels" -#: ../src/selection-chemistry.cpp:1747 +#: ../src/selection-chemistry.cpp:1743 msgid "Move horizontally by pixels" msgstr "Horizontaal verplaatsen per pixels" -#: ../src/selection-chemistry.cpp:1879 +#: ../src/selection-chemistry.cpp:1875 msgid "The selection has no applied path effect." msgstr "De selectie bevat geen toegepast padeffect." -#: ../src/selection-chemistry.cpp:2082 +#: ../src/selection-chemistry.cpp:2078 msgctxt "Action" msgid "Clone" msgstr "Kloon" -#: ../src/selection-chemistry.cpp:2098 +#: ../src/selection-chemistry.cpp:2094 msgid "Select <b>clones</b> to relink." msgstr "Selecteer <b>klonen</b> om te herlinken." -#: ../src/selection-chemistry.cpp:2105 +#: ../src/selection-chemistry.cpp:2101 msgid "Copy an <b>object</b> to clipboard to relink clones to." msgstr "Een <b>object</b> naar het klembord kopiΓ«ren om klonen naar te herlinken" -#: ../src/selection-chemistry.cpp:2129 +#: ../src/selection-chemistry.cpp:2125 msgid "<b>No clones to relink</b> in the selection." msgstr "<b>Geen klonen om te herlinken</b> in de selectie" -#: ../src/selection-chemistry.cpp:2132 +#: ../src/selection-chemistry.cpp:2128 msgid "Relink clone" msgstr "Kloon herlinken" -#: ../src/selection-chemistry.cpp:2146 +#: ../src/selection-chemistry.cpp:2142 msgid "Select <b>clones</b> to unlink." msgstr "Selecteer <b>klonen</b> om te ontlinken." -#: ../src/selection-chemistry.cpp:2200 +#: ../src/selection-chemistry.cpp:2196 msgid "<b>No clones to unlink</b> in the selection." msgstr "<b>Geen klonen geselecteerd</b> om te ontkoppelen." -#: ../src/selection-chemistry.cpp:2204 +#: ../src/selection-chemistry.cpp:2200 msgid "Unlink clone" msgstr "Kloon ontkoppelen" -#: ../src/selection-chemistry.cpp:2217 +#: ../src/selection-chemistry.cpp:2213 msgid "Select a <b>clone</b> to go to its original. Select a <b>linked offset</b> to go to its source. Select a <b>text on path</b> to go to the path. Select a <b>flowed text</b> to go to its frame." msgstr "Selecteer een <b>kloon</b> om naar zijn origineel te gaan. Selecteer een <b>gekoppelde offset</b> om naar zijn bron te gaan. Selecteer <b>tekst op een pad</b> om naar het pad te gaan. Selecteer <b>ingekaderde tekst</b> om naar het vormende object te gaan." -#: ../src/selection-chemistry.cpp:2240 +#: ../src/selection-chemistry.cpp:2236 msgid "<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)" msgstr "Het te selecteren object <b>is onvindbaar</b> (verweesde kloon, offset, tekstpad of ingekaderde tekst?)" -#: ../src/selection-chemistry.cpp:2246 +#: ../src/selection-chemistry.cpp:2242 msgid "The object you're trying to select is <b>not visible</b> (it is in <defs>)" msgstr "Het object dat u probeert te selecteren is <b>niet zichtbaar</b> (het staat in <defs>)" -#: ../src/selection-chemistry.cpp:2293 +#: ../src/selection-chemistry.cpp:2289 msgid "Select <b>object(s)</b> to convert to marker." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar een markering." -#: ../src/selection-chemistry.cpp:2361 +#: ../src/selection-chemistry.cpp:2357 msgid "Objects to marker" msgstr "Objecten naar markering" -#: ../src/selection-chemistry.cpp:2389 +#: ../src/selection-chemistry.cpp:2385 msgid "Select <b>object(s)</b> to convert to guides." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar hulplijnen." -#: ../src/selection-chemistry.cpp:2401 +#: ../src/selection-chemistry.cpp:2397 msgid "Objects to guides" msgstr "Objecten naar hulplijnen" -#: ../src/selection-chemistry.cpp:2418 +#: ../src/selection-chemistry.cpp:2414 msgid "Select <b>object(s)</b> to convert to pattern." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar een patroon." -#: ../src/selection-chemistry.cpp:2506 +#: ../src/selection-chemistry.cpp:2502 msgid "Objects to pattern" msgstr "Objecten naar patroon" -#: ../src/selection-chemistry.cpp:2522 +#: ../src/selection-chemistry.cpp:2518 msgid "Select an <b>object with pattern fill</b> to extract objects from." msgstr "Selecteer <b>objecten met patroonvulling</b> om objecten uit te halen." -#: ../src/selection-chemistry.cpp:2575 +#: ../src/selection-chemistry.cpp:2571 msgid "<b>No pattern fills</b> in the selection." msgstr "Er zijn geen <b>objecten met patroonvulling</b> geselecteerd." -#: ../src/selection-chemistry.cpp:2578 +#: ../src/selection-chemistry.cpp:2574 msgid "Pattern to objects" msgstr "Patroon naar objecten" -#: ../src/selection-chemistry.cpp:2660 +#: ../src/selection-chemistry.cpp:2656 msgid "Select <b>object(s)</b> to make a bitmap copy." msgstr "Selecteer eerst de <b>objecten</b> om een bitmapkopie van te maken." -#: ../src/selection-chemistry.cpp:2664 +#: ../src/selection-chemistry.cpp:2660 msgid "Rendering bitmap..." msgstr "Renderen van bitmap..." -#: ../src/selection-chemistry.cpp:2838 +#: ../src/selection-chemistry.cpp:2834 msgid "Create bitmap" msgstr "Bitmap maken" -#: ../src/selection-chemistry.cpp:2870 +#: ../src/selection-chemistry.cpp:2866 msgid "Select <b>object(s)</b> to create clippath or mask from." msgstr "Selecteer de <b>objecten</b> om een afsnijpad/masker van te maken." -#: ../src/selection-chemistry.cpp:2873 +#: ../src/selection-chemistry.cpp:2869 msgid "Select mask object and <b>object(s)</b> to apply clippath or mask to." msgstr "Selecteer het maskerobject en de <b>object(en)</b> om het afsnijpad/masker op toe te passen." -#: ../src/selection-chemistry.cpp:3054 +#: ../src/selection-chemistry.cpp:3050 msgid "Set clipping path" msgstr "Afsnijpad inschakelen" -#: ../src/selection-chemistry.cpp:3056 +#: ../src/selection-chemistry.cpp:3052 msgid "Set mask" msgstr "Masker inschakelen" -#: ../src/selection-chemistry.cpp:3071 +#: ../src/selection-chemistry.cpp:3067 msgid "Select <b>object(s)</b> to remove clippath or mask from." msgstr "Selecteer <b>object(en)</b> om het afsnijpad/masker van uit te schakelen." -#: ../src/selection-chemistry.cpp:3182 +#: ../src/selection-chemistry.cpp:3178 msgid "Release clipping path" msgstr "Afsnijpad uitschakelen" -#: ../src/selection-chemistry.cpp:3184 +#: ../src/selection-chemistry.cpp:3180 msgid "Release mask" msgstr "Masker uitschakelen" -#: ../src/selection-chemistry.cpp:3203 +#: ../src/selection-chemistry.cpp:3199 msgid "Select <b>object(s)</b> to fit canvas to." msgstr "Selecteer <b>object(en)</b> voor aanpassing van het canvas" #. Fit Page -#: ../src/selection-chemistry.cpp:3223 +#: ../src/selection-chemistry.cpp:3219 #: ../src/verbs.cpp:2747 msgid "Fit Page to Selection" msgstr "Pagina naar selectie schalen" -#: ../src/selection-chemistry.cpp:3252 +#: ../src/selection-chemistry.cpp:3248 #: ../src/verbs.cpp:2749 msgid "Fit Page to Drawing" msgstr "Pagina naar tekening schalen" -#: ../src/selection-chemistry.cpp:3273 +#: ../src/selection-chemistry.cpp:3269 #: ../src/verbs.cpp:2751 msgid "Fit Page to Selection or Drawing" msgstr "Pagina naar selectie of inhoud schalen" @@ -11427,9 +11585,9 @@ msgstr "Cirkel" #. Ellipse #: ../src/selection-describer.cpp:48 #: ../src/selection-describer.cpp:73 -#: ../src/ui/dialog/inkscape-preferences.cpp:509 +#: ../src/ui/dialog/inkscape-preferences.cpp:510 #: ../src/verbs.cpp:2514 -#: ../src/widgets/toolbox.cpp:4126 +#: ../src/widgets/toolbox.cpp:4174 msgid "Ellipse" msgstr "Ellips" @@ -11446,7 +11604,7 @@ msgid "Path" msgstr "Pad" #: ../src/selection-describer.cpp:60 -#: ../src/widgets/toolbox.cpp:2967 +#: ../src/widgets/toolbox.cpp:3015 msgid "Polygon" msgstr "Veelhoek" @@ -11456,14 +11614,14 @@ msgstr "Veellijn" #. Rectangle #: ../src/selection-describer.cpp:64 -#: ../src/ui/dialog/inkscape-preferences.cpp:499 +#: ../src/ui/dialog/inkscape-preferences.cpp:500 #: ../src/verbs.cpp:2510 msgid "Rectangle" msgstr "Rechthoek" #. 3D box #: ../src/selection-describer.cpp:66 -#: ../src/ui/dialog/inkscape-preferences.cpp:504 +#: ../src/ui/dialog/inkscape-preferences.cpp:505 #: ../src/verbs.cpp:2512 msgid "3D Box" msgstr "3D-kubus" @@ -11474,7 +11632,7 @@ msgstr "3D-kubus" #. this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool"); #. Text #: ../src/selection-describer.cpp:68 -#: ../src/ui/dialog/inkscape-preferences.cpp:558 +#: ../src/ui/dialog/inkscape-preferences.cpp:559 #: ../src/verbs.cpp:2526 #: ../share/extensions/lorem_ipsum.inx.h:7 #: ../share/extensions/replace_font.inx.h:10 @@ -11497,21 +11655,23 @@ msgid "Clone" msgstr "Kloon" #: ../src/selection-describer.cpp:75 +#: ../share/extensions/gcodetools_lathe.inx.h:31 msgid "Offset path" msgstr "Rand object" #. Spiral #: ../src/selection-describer.cpp:77 -#: ../src/ui/dialog/inkscape-preferences.cpp:517 +#: ../src/ui/dialog/inkscape-preferences.cpp:518 #: ../src/verbs.cpp:2518 +#: ../share/extensions/gcodetools_area.inx.h:45 msgid "Spiral" msgstr "Spiraal" #. Star #: ../src/selection-describer.cpp:79 -#: ../src/ui/dialog/inkscape-preferences.cpp:513 +#: ../src/ui/dialog/inkscape-preferences.cpp:514 #: ../src/verbs.cpp:2516 -#: ../src/widgets/toolbox.cpp:2974 +#: ../src/widgets/toolbox.cpp:3022 msgid "Star" msgstr "Ster" @@ -11572,8 +11732,8 @@ msgstr "Gebruik <b>Shift+D</b> om het kaderobject te vinden" #. this is only used with 2 or more objects #: ../src/selection-describer.cpp:209 -#: ../src/spray-context.cpp:230 -#: ../src/tweak-context.cpp:206 +#: ../src/spray-context.cpp:226 +#: ../src/tweak-context.cpp:203 #, c-format msgid "<b>%i</b> object selected" msgid_plural "<b>%i</b> objects selected" @@ -11618,7 +11778,7 @@ msgid "%s%s. %s." msgstr "%s%s. %s." #: ../src/seltrans.cpp:520 -#: ../src/ui/dialog/transformation.cpp:830 +#: ../src/ui/dialog/transformation.cpp:829 msgid "Skew" msgstr "Scheeftrekken" @@ -11693,20 +11853,20 @@ msgstr "<b>Koppeling</b> naar %s" msgid "<b>Link</b> without URI" msgstr "<b>Koppeling</b> zonder URI" -#: ../src/sp-ellipse.cpp:506 -#: ../src/sp-ellipse.cpp:883 +#: ../src/sp-ellipse.cpp:504 +#: ../src/sp-ellipse.cpp:881 msgid "<b>Ellipse</b>" msgstr "<b>Ellips</b>" -#: ../src/sp-ellipse.cpp:647 +#: ../src/sp-ellipse.cpp:645 msgid "<b>Circle</b>" msgstr "<b>Cirkel</b>" -#: ../src/sp-ellipse.cpp:878 +#: ../src/sp-ellipse.cpp:876 msgid "<b>Segment</b>" msgstr "<b>Segment</b>" -#: ../src/sp-ellipse.cpp:880 +#: ../src/sp-ellipse.cpp:878 msgid "<b>Arc</b>" msgstr "<b>Boog</b>" @@ -11725,75 +11885,80 @@ msgstr "Gebied met tekstvormen" msgid "Flow excluded region" msgstr "Gebied zonder tekstvormen" -#: ../src/sp-guide.cpp:299 -msgid "Guides Around Page" -msgstr "Hulplijnen rond pagina" +#: ../src/sp-guide.cpp:307 +msgid "Create Guides Around the Page" +msgstr "Hulplijnen rond pagina maken" + +#: ../src/sp-guide.cpp:319 +#: ../src/verbs.cpp:2346 +msgid "Delete All Guides" +msgstr "Alle hulplijnen verwijderen" -#: ../src/sp-guide.cpp:444 +#: ../src/sp-guide.cpp:481 msgid "<b>Shift+drag</b> to rotate, <b>Ctrl+drag</b> to move origin, <b>Del</b> to delete" msgstr "<b>Shift+sleep</b> om te draaien, <b>Ctrl+sleep</b> om de oorsprong te verplaatsen, <b>Del</b> om te verwijderen" -#: ../src/sp-guide.cpp:449 +#: ../src/sp-guide.cpp:486 #, c-format msgid "vertical, at %s" msgstr "verticaal, op %s" -#: ../src/sp-guide.cpp:452 +#: ../src/sp-guide.cpp:489 #, c-format msgid "horizontal, at %s" msgstr "horizontaal, op %s" -#: ../src/sp-guide.cpp:457 +#: ../src/sp-guide.cpp:494 #, c-format msgid "at %d degrees, through (%s,%s)" msgstr "op %d graden, door (%s,%s)" -#: ../src/sp-image.cpp:1134 +#: ../src/sp-image.cpp:1133 msgid "embedded" msgstr "ingevoegd" -#: ../src/sp-image.cpp:1142 +#: ../src/sp-image.cpp:1141 #, c-format msgid "<b>Image with bad reference</b>: %s" msgstr "<b>Afbeelding met ongeldige referentie</b>: %s" -#: ../src/sp-image.cpp:1143 +#: ../src/sp-image.cpp:1142 #, c-format msgid "<b>Image</b> %d × %d: %s" msgstr "<b>Afbeelding</b> %d × %d: %s" -#: ../src/sp-item-group.cpp:744 +#: ../src/sp-item-group.cpp:742 #, c-format msgid "<b>Group</b> of <b>%d</b> object" msgid_plural "<b>Group</b> of <b>%d</b> objects" msgstr[0] "<b>Groep</b> van <b>%d</b> object" msgstr[1] "<b>Groep</b> van <b>%d</b> objecten" -#: ../src/sp-item.cpp:988 +#: ../src/sp-item.cpp:983 msgid "Object" msgstr "Object" -#: ../src/sp-item.cpp:1001 +#: ../src/sp-item.cpp:996 #, c-format msgid "%s; <i>clipped</i>" msgstr "%s; <i>afgesneden</i>" -#: ../src/sp-item.cpp:1006 +#: ../src/sp-item.cpp:1001 #, c-format msgid "%s; <i>masked</i>" msgstr "%s; <i>gemaskeerd</i>" -#: ../src/sp-item.cpp:1014 +#: ../src/sp-item.cpp:1009 #, c-format msgid "%s; <i>filtered (%s)</i>" msgstr "%s; <i>gefilterd (%s)</i>" -#: ../src/sp-item.cpp:1016 +#: ../src/sp-item.cpp:1011 #, c-format msgid "%s; <i>filtered</i>" msgstr "%s; <i>gefilterd</i>" -#: ../src/sp-line.cpp:175 +#: ../src/sp-line.cpp:174 msgid "<b>Line</b>" msgstr "<b>Lijn</b>" @@ -11823,14 +11988,14 @@ msgstr "vernauwing" msgid "<b>Dynamic offset</b>, %s by %f pt" msgstr "<b>Dynamische offset</b>, %s met %f pt" -#: ../src/sp-path.cpp:155 +#: ../src/sp-path.cpp:154 #, c-format msgid "<b>Path</b> (%i node, path effect: %s)" msgid_plural "<b>Path</b> (%i nodes, path effect: %s)" msgstr[0] "<b>Pad</b> (%i knooppunt, padeffect: %s)" msgstr[1] "<b>Pad</b> (%i knooppunten, padeffect: %s)" -#: ../src/sp-path.cpp:158 +#: ../src/sp-path.cpp:157 #, c-format msgid "<b>Path</b> (%i node)" msgid_plural "<b>Path</b> (%i nodes)" @@ -11845,7 +12010,7 @@ msgstr "<b>Veelhoek</b>" msgid "<b>Polyline</b>" msgstr "<b>Veellijn</b>" -#: ../src/sp-rect.cpp:223 +#: ../src/sp-rect.cpp:221 msgid "<b>Rectangle</b>" msgstr "<b>Rechthoek</b>" @@ -11856,14 +12021,14 @@ msgstr "<b>Rechthoek</b>" msgid "<b>Spiral</b> with %3f turns" msgstr "<b>Spiraal</b> met %3f omwentelingen" -#: ../src/sp-star.cpp:308 +#: ../src/sp-star.cpp:309 #, c-format msgid "<b>Star</b> with %d vertex" msgid_plural "<b>Star</b> with %d vertices" msgstr[0] "<b>Ster</b> met %d punt" msgstr[1] "<b>Ster</b> met %d punten" -#: ../src/sp-star.cpp:312 +#: ../src/sp-star.cpp:313 #, c-format msgid "<b>Polygon</b> with %d vertex" msgid_plural "<b>Polygon</b> with %d vertices" @@ -11871,49 +12036,49 @@ msgstr[0] "<b>Veelhoek</b> met %d hoek" msgstr[1] "<b>Veelhoek</b> met %d hoeken" #. TRANSLATORS: For description of font with no name. -#: ../src/sp-text.cpp:427 +#: ../src/sp-text.cpp:426 msgid "<no name found>" msgstr "<geen naam gevonden>" -#: ../src/sp-text.cpp:439 +#: ../src/sp-text.cpp:438 #, c-format msgid "<b>Text on path</b>%s (%s, %s)" msgstr "<b>Tekst op een pad</b>%s (%s, %s)" -#: ../src/sp-text.cpp:440 +#: ../src/sp-text.cpp:439 #, c-format msgid "<b>Text</b>%s (%s, %s)" msgstr "<b>Tekst</b>%s (%s, %s)" -#: ../src/sp-tref.cpp:372 +#: ../src/sp-tref.cpp:371 #, c-format msgid "<b>Cloned character data</b>%s%s" msgstr "<b>Gekloonde tekst</b>%s%s" -#: ../src/sp-tref.cpp:373 +#: ../src/sp-tref.cpp:372 msgid " from " msgstr " van " -#: ../src/sp-tref.cpp:378 +#: ../src/sp-tref.cpp:377 msgid "<b>Orphaned cloned character data</b>" msgstr "<b>Verweesde gekloonde tekst</b>" -#: ../src/sp-tspan.cpp:292 +#: ../src/sp-tspan.cpp:291 msgid "<b>Text span</b>" msgstr "<b>Tekstbreedte</b>" #. TRANSLATORS: Used for statusbar description for long <use> chains: #. * "Clone of: Clone of: ... in Layer 1". -#: ../src/sp-use.cpp:335 +#: ../src/sp-use.cpp:333 msgid "..." msgstr "..." -#: ../src/sp-use.cpp:343 +#: ../src/sp-use.cpp:341 #, c-format msgid "<b>Clone</b> of: %s" msgstr "<b>Kloon</b> van %s" -#: ../src/sp-use.cpp:347 +#: ../src/sp-use.cpp:345 msgid "<b>Orphaned clone</b>" msgstr "<b>Verweesde kloon</b>" @@ -11934,162 +12099,162 @@ msgstr "<b>Spiraal</b>: straal %s, hoek %5g°; gebruik <b>Ctrl</b> om in sta msgid "Create spiral" msgstr "Spiraal maken" -#: ../src/splivarot.cpp:67 -#: ../src/splivarot.cpp:73 +#: ../src/splivarot.cpp:66 +#: ../src/splivarot.cpp:72 msgid "Union" msgstr "Vereniging" -#: ../src/splivarot.cpp:79 +#: ../src/splivarot.cpp:78 msgid "Intersection" msgstr "Overlap" -#: ../src/splivarot.cpp:85 -#: ../src/splivarot.cpp:91 +#: ../src/splivarot.cpp:84 +#: ../src/splivarot.cpp:90 msgid "Difference" msgstr "Verschil" -#: ../src/splivarot.cpp:97 +#: ../src/splivarot.cpp:96 msgid "Exclusion" msgstr "Uitsluiten" -#: ../src/splivarot.cpp:102 +#: ../src/splivarot.cpp:101 msgid "Division" msgstr "Splitsen" -#: ../src/splivarot.cpp:107 +#: ../src/splivarot.cpp:106 msgid "Cut path" msgstr "Pad versnijden" -#: ../src/splivarot.cpp:122 +#: ../src/splivarot.cpp:121 msgid "Select <b>at least 2 paths</b> to perform a boolean operation." msgstr "Selecteer <b>minstens twee paden</b> om een booleaanse bewerking uit te voeren." -#: ../src/splivarot.cpp:126 +#: ../src/splivarot.cpp:125 msgid "Select <b>at least 1 path</b> to perform a boolean union." msgstr "Selecteer <b>minstens één pad</b> om een booleaanse vereniging uit te voeren." -#: ../src/splivarot.cpp:132 +#: ../src/splivarot.cpp:131 msgid "Select <b>exactly 2 paths</b> to perform difference, division, or path cut." msgstr "Selecteer <b>precies twee paden</b> om een verschil, uitsluiting, splitsing of padversnijding uit te voeren." -#: ../src/splivarot.cpp:148 -#: ../src/splivarot.cpp:163 +#: ../src/splivarot.cpp:147 +#: ../src/splivarot.cpp:162 msgid "Unable to determine the <b>z-order</b> of the objects selected for difference, XOR, division, or path cut." msgstr "Er kon niet worden bepaald welk object <b>boven de andere</b> lag om een verschil, uitsluiting, splitsing of pad-snijding uit te voeren." -#: ../src/splivarot.cpp:193 +#: ../src/splivarot.cpp:192 msgid "One of the objects is <b>not a path</b>, cannot perform boolean operation." msgstr "Een van de geselecteerde objecten <b>is geen pad</b>, de booleaansche bewerking kan niet worden uitgevoerd." -#: ../src/splivarot.cpp:906 +#: ../src/splivarot.cpp:905 msgid "Select <b>stroked path(s)</b> to convert stroke to path." msgstr "Selecteer <b>paden</b> waarvan de omlijning omgezet moet worden naar een pad." -#: ../src/splivarot.cpp:1259 +#: ../src/splivarot.cpp:1258 msgid "Convert stroke to path" msgstr "Omlijning omzetten naar pad" #. TRANSLATORS: "to outline" means "to convert stroke to path" -#: ../src/splivarot.cpp:1262 +#: ../src/splivarot.cpp:1261 msgid "<b>No stroked paths</b> in the selection." msgstr "Er zijn <b>geen omlijnde paden</b> geselecteerd." -#: ../src/splivarot.cpp:1345 +#: ../src/splivarot.cpp:1344 msgid "Selected object is <b>not a path</b>, cannot inset/outset." msgstr "Het geselecteerde object is <b>geen pad</b>, en kan dus niet versmalt/verbreed worden." -#: ../src/splivarot.cpp:1464 -#: ../src/splivarot.cpp:1532 +#: ../src/splivarot.cpp:1463 +#: ../src/splivarot.cpp:1531 msgid "Create linked offset" msgstr "Gekoppelde offset maken" -#: ../src/splivarot.cpp:1465 -#: ../src/splivarot.cpp:1533 +#: ../src/splivarot.cpp:1464 +#: ../src/splivarot.cpp:1532 msgid "Create dynamic offset" msgstr "Dynamische offset maken" -#: ../src/splivarot.cpp:1558 +#: ../src/splivarot.cpp:1557 msgid "Select <b>path(s)</b> to inset/outset." msgstr "Selecteer de <b>paden</b> om te versmallen/verbreden." -#: ../src/splivarot.cpp:1775 +#: ../src/splivarot.cpp:1774 msgid "Outset path" msgstr "Pad verbreden" -#: ../src/splivarot.cpp:1775 +#: ../src/splivarot.cpp:1774 msgid "Inset path" msgstr "Pad versmallen" -#: ../src/splivarot.cpp:1777 +#: ../src/splivarot.cpp:1776 msgid "<b>No paths</b> to inset/outset in the selection." msgstr "Er zijn <b>geen paden</b> geselecteerd om te vernauwen/verwijden." -#: ../src/splivarot.cpp:1939 +#: ../src/splivarot.cpp:1938 msgid "Simplifying paths (separately):" msgstr "Vereenvoudigen van paden (apart):" -#: ../src/splivarot.cpp:1941 +#: ../src/splivarot.cpp:1940 msgid "Simplifying paths:" msgstr "Vereenvoudigen van paden:" -#: ../src/splivarot.cpp:1978 +#: ../src/splivarot.cpp:1977 #, c-format msgid "%s <b>%d</b> of <b>%d</b> paths simplified..." msgstr "%s <b>%d</b> van <b>%d</b> paden vereenvoudigd..." -#: ../src/splivarot.cpp:1990 +#: ../src/splivarot.cpp:1989 #, c-format msgid "<b>%d</b> paths simplified." msgstr "<b>%d</b> paden zijn vereenvoudigd." -#: ../src/splivarot.cpp:2004 +#: ../src/splivarot.cpp:2003 msgid "Select <b>path(s)</b> to simplify." msgstr "Selecteer <b>paden</b> om te vereenvoudigen." -#: ../src/splivarot.cpp:2018 +#: ../src/splivarot.cpp:2017 msgid "Simplify" msgstr "Vereenvoudigen" -#: ../src/splivarot.cpp:2020 +#: ../src/splivarot.cpp:2019 msgid "<b>No paths</b> to simplify in the selection." msgstr "Er zijn <b>geen paden</b> geselecteerd om te vereenvoudigen." -#: ../src/spray-context.cpp:232 -#: ../src/tweak-context.cpp:208 +#: ../src/spray-context.cpp:228 +#: ../src/tweak-context.cpp:205 #, c-format msgid "<b>Nothing</b> selected" msgstr "Er is <b>niets</b> geselecteerd." -#: ../src/spray-context.cpp:238 +#: ../src/spray-context.cpp:234 #, c-format msgid "%s. Drag, click or scroll to spray <b>copies</b> of the initial selection." msgstr "%s. Sleep, klik of scroll om <b>kopieΓ«n</b> van de initiΓ«le selectie te verstuiven." -#: ../src/spray-context.cpp:241 +#: ../src/spray-context.cpp:237 #, c-format msgid "%s. Drag, click or scroll to spray <b>clones</b> of the initial selection." msgstr "%s. Sleep, klik of scroll om <b>klonen</b> van de initiΓ«le selectie te verstuiven." -#: ../src/spray-context.cpp:244 +#: ../src/spray-context.cpp:240 #, c-format msgid "%s. Drag, click or scroll to spray in a <b>single path</b> of the initial selection." msgstr "%s. Sleep, klik of scroll om de initiΓ«le selectie in een <b>enkele richting</b> te verstuiven." -#: ../src/spray-context.cpp:710 +#: ../src/spray-context.cpp:706 msgid "<b>Nothing selected!</b> Select objects to spray." msgstr "<b>Niets geselecteerd!</b> Selecteer objecten voor verstuiving." -#: ../src/spray-context.cpp:785 -#: ../src/widgets/toolbox.cpp:4717 +#: ../src/spray-context.cpp:781 +#: ../src/widgets/toolbox.cpp:4759 msgid "Spray with copies" -msgstr "Met kopieΓ«n verstuiven" +msgstr "Verstuiven met kopieΓ«n" -#: ../src/spray-context.cpp:789 -#: ../src/widgets/toolbox.cpp:4724 +#: ../src/spray-context.cpp:785 +#: ../src/widgets/toolbox.cpp:4766 msgid "Spray with clones" -msgstr "Met klonen verstuiven" +msgstr "Verstuiven met klonen" -#: ../src/spray-context.cpp:793 +#: ../src/spray-context.cpp:789 msgid "Spray in single path" msgstr "Verstuiven in één richting" @@ -12111,79 +12276,79 @@ msgstr "<b>Ster</b>: straal %s, hoek %5g°; gebruik <b>Ctrl</b> om in stappe msgid "Create star" msgstr "Ster maken" -#: ../src/text-chemistry.cpp:105 +#: ../src/text-chemistry.cpp:104 msgid "Select <b>a text and a path</b> to put text on path." msgstr "Selecteer <b>tekst en pad</b> om de tekst op het pad te zetten." -#: ../src/text-chemistry.cpp:110 +#: ../src/text-chemistry.cpp:109 msgid "This text object is <b>already put on a path</b>. Remove it from the path first. Use <b>Shift+D</b> to look up its path." msgstr "Deze tekst is <b>reeds op een pad geplaatst</b>. Verwijder het eerst van dat pad. Gebruik <b>Shift+D</b> om zijn pad op te zoeken." #. rect is the only SPShape which is not <path> yet, and thus SVG forbids us from putting text on it -#: ../src/text-chemistry.cpp:116 +#: ../src/text-chemistry.cpp:115 msgid "You cannot put text on a rectangle in this version. Convert rectangle to path first." msgstr "U kunt tekst niet op een rechthoek plaatsten met deze versie. Converteer de rechthoek eerst naar een pad." -#: ../src/text-chemistry.cpp:126 +#: ../src/text-chemistry.cpp:125 msgid "The flowed text(s) must be <b>visible</b> in order to be put on a path." msgstr "Ingekaderde tekst moet <b>zichtbaar</b> zijn om deze op een pad te kunnen zetten." -#: ../src/text-chemistry.cpp:194 +#: ../src/text-chemistry.cpp:193 #: ../src/verbs.cpp:2366 msgid "Put text on path" msgstr "Tekst op een pad plaatsen" -#: ../src/text-chemistry.cpp:206 +#: ../src/text-chemistry.cpp:205 msgid "Select <b>a text on path</b> to remove it from path." msgstr "Selecteer een <b>tekst op een pad</b> om het van het pad af te halen." -#: ../src/text-chemistry.cpp:227 +#: ../src/text-chemistry.cpp:226 msgid "<b>No texts-on-paths</b> in the selection." msgstr "Geen <b>tekst op een pad</b> geselecteerd." -#: ../src/text-chemistry.cpp:230 +#: ../src/text-chemistry.cpp:229 #: ../src/verbs.cpp:2368 msgid "Remove text from path" msgstr "Tekst van een pad verwijderen" -#: ../src/text-chemistry.cpp:270 -#: ../src/text-chemistry.cpp:291 +#: ../src/text-chemistry.cpp:269 +#: ../src/text-chemistry.cpp:290 msgid "Select <b>text(s)</b> to remove kerns from." msgstr "Selecteer één of meer <b>teksten</b> om de tekenspatiΓ«ring van te verwijderen." -#: ../src/text-chemistry.cpp:294 +#: ../src/text-chemistry.cpp:293 msgid "Remove manual kerns" msgstr "Handgemaakte tekenspatiΓ«ring verwijderen" -#: ../src/text-chemistry.cpp:314 +#: ../src/text-chemistry.cpp:313 msgid "Select <b>a text</b> and one or more <b>paths or shapes</b> to flow text into frame." msgstr "Selecteer <b>een tekst</b> en één of meer <b>paden of vormen</b> om de tekst in een vorm te zetten." -#: ../src/text-chemistry.cpp:382 +#: ../src/text-chemistry.cpp:381 msgid "Flow text into shape" msgstr "Tekst in een vorm plaatsen" -#: ../src/text-chemistry.cpp:404 +#: ../src/text-chemistry.cpp:403 msgid "Select <b>a flowed text</b> to unflow it." msgstr "Selecteer <b>ingekaderde tekst</b> om het uit de vorm te halen." -#: ../src/text-chemistry.cpp:478 +#: ../src/text-chemistry.cpp:477 msgid "Unflow flowed text" msgstr "Ingekaderde tekst uit vorm halen" -#: ../src/text-chemistry.cpp:490 +#: ../src/text-chemistry.cpp:489 msgid "Select <b>flowed text(s)</b> to convert." msgstr "Selecteer <b>ingekaderde tekst(en)</b> om om te zetten." -#: ../src/text-chemistry.cpp:508 +#: ../src/text-chemistry.cpp:507 msgid "The flowed text(s) must be <b>visible</b> in order to be converted." msgstr "Ingekaderde tekst moet <b>zichtbaar</b> om het om te kunnen zetten." -#: ../src/text-chemistry.cpp:536 +#: ../src/text-chemistry.cpp:535 msgid "Convert flowed text to text" msgstr "Ingekaderde tekst omzetten naar tekst" -#: ../src/text-chemistry.cpp:541 +#: ../src/text-chemistry.cpp:540 msgid "<b>No flowed text(s)</b> to convert in the selection." msgstr "Er zijn <b>geen ingekaderde tekst(en)</b> geselecteerd om om te zetten." @@ -12335,7 +12500,7 @@ msgstr "Een pad retoucheren door te duwen: selecteer het en sleep eroverheen." #: ../src/tools-switch.cpp:145 msgid "<b>Drag</b>, <b>click</b> or <b>scroll</b> to spray the selected objects." -msgstr "" +msgstr "<b>Sleep</b>, <b>klik</b> of <b>scroll</b> om de geselecteerde objecten te verstuiven." #: ../src/tools-switch.cpp:151 msgid "<b>Drag</b> to create a rectangle. <b>Drag controls</b> to round corners and resize. <b>Click</b> to select." @@ -12379,7 +12544,7 @@ msgstr "<b>Klik</b> of <b>selecteer een gebied</b> om in te zoomen, <b>Shift+kli #: ../src/tools-switch.cpp:217 msgid "<b>Drag</b> to measure the dimensions of objects." -msgstr "" +msgstr "<b>Sleep</b> om de objectdimensies te bepalen." #: ../src/tools-switch.cpp:229 msgid "<b>Click and drag</b> between shapes to create a connector." @@ -12403,171 +12568,171 @@ msgstr "Een secundair gereedschap uit de gereedschappenbalk selecteren" msgid "Trace: %d. %ld nodes" msgstr "Overtrekken: %d. %ld knooppunten" -#: ../src/trace/trace.cpp:73 -#: ../src/trace/trace.cpp:138 -#: ../src/trace/trace.cpp:146 -#: ../src/trace/trace.cpp:245 +#: ../src/trace/trace.cpp:72 +#: ../src/trace/trace.cpp:137 +#: ../src/trace/trace.cpp:145 +#: ../src/trace/trace.cpp:244 msgid "Select an <b>image</b> to trace" msgstr "Selecteer een <b>afbeelding</b> om over te trekken" -#: ../src/trace/trace.cpp:108 +#: ../src/trace/trace.cpp:107 msgid "Select only one <b>image</b> to trace" msgstr "Selecteer slechts één <b>afbeelding</b> om over te trekken" -#: ../src/trace/trace.cpp:126 +#: ../src/trace/trace.cpp:125 msgid "Select one image and one or more shapes above it" msgstr "Selecteer een plaatje en één of meer vormen erboven" -#: ../src/trace/trace.cpp:236 +#: ../src/trace/trace.cpp:235 msgid "Trace: No active desktop" msgstr "Overtrekken: Geen actieve desktop" -#: ../src/trace/trace.cpp:336 +#: ../src/trace/trace.cpp:335 msgid "Invalid SIOX result" msgstr "Ongeldig SIOX resultaat" -#: ../src/trace/trace.cpp:441 +#: ../src/trace/trace.cpp:440 msgid "Trace: No active document" msgstr "Overtrekken: geen actief document" -#: ../src/trace/trace.cpp:464 +#: ../src/trace/trace.cpp:463 msgid "Trace: Image has no bitmap data" msgstr "Overtrekken: afbeelding heeft geen bitmap-gegevens" -#: ../src/trace/trace.cpp:471 +#: ../src/trace/trace.cpp:470 msgid "Trace: Starting trace..." msgstr "Overtrekken: beginnen met overtrekken..." #. ## inform the document, so we can undo -#: ../src/trace/trace.cpp:574 +#: ../src/trace/trace.cpp:573 msgid "Trace bitmap" msgstr "Bitmap overtrekken" -#: ../src/trace/trace.cpp:578 +#: ../src/trace/trace.cpp:577 #, c-format msgid "Trace: Done. %ld nodes created" msgstr "Overtrekken: klaar. %ld knooppunten gemaakt" -#: ../src/tweak-context.cpp:213 +#: ../src/tweak-context.cpp:210 #, c-format msgid "%s. Drag to <b>move</b>." msgstr "%s. Sleep om te <b>verplaatsen</b>." -#: ../src/tweak-context.cpp:217 +#: ../src/tweak-context.cpp:214 #, c-format msgid "%s. Drag or click to <b>move in</b>; with Shift to <b>move out</b>." msgstr "%s. Sleep of klik om te <b>verplaatsen naar de cursor toe</b>; met Shift om te <b>verplaatsen van de cursor weg</b>." -#: ../src/tweak-context.cpp:221 +#: ../src/tweak-context.cpp:218 #, c-format msgid "%s. Drag or click to <b>move randomly</b>." msgstr "%s. Sleep of klik om <b>ad random te verplaatsen</b>." -#: ../src/tweak-context.cpp:225 +#: ../src/tweak-context.cpp:222 #, c-format msgid "%s. Drag or click to <b>scale down</b>; with Shift to <b>scale up</b>." msgstr "%s. Sleep of klik om te <b>verkleinen</b>; met Shift om te <b>vergroten</b>." -#: ../src/tweak-context.cpp:229 +#: ../src/tweak-context.cpp:226 #, c-format msgid "%s. Drag or click to <b>rotate clockwise</b>; with Shift, <b>counterclockwise</b>." msgstr "%s. Sleep of klik om in te <b>draaien met de klok mee</b>; met Shift om te <b>draaien tegen de richting van de klok in</b>." -#: ../src/tweak-context.cpp:233 +#: ../src/tweak-context.cpp:230 #, c-format msgid "%s. Drag or click to <b>duplicate</b>; with Shift, <b>delete</b>." msgstr "%s. Sleep of klik om te <b>dupliceren</b>; met Shift, <b>verwijderen</b>." -#: ../src/tweak-context.cpp:237 +#: ../src/tweak-context.cpp:234 #, c-format msgid "%s. Drag to <b>push paths</b>." msgstr "%s. Sleep om <b>paden te duwen</b>." -#: ../src/tweak-context.cpp:241 +#: ../src/tweak-context.cpp:238 #, c-format msgid "%s. Drag or click to <b>inset paths</b>; with Shift to <b>outset</b>." msgstr "%s. Sleep of klik om <b>paden te versmallen</b>; met Shift om te <b>verbreden</b>." -#: ../src/tweak-context.cpp:249 +#: ../src/tweak-context.cpp:246 #, c-format msgid "%s. Drag or click to <b>attract paths</b>; with Shift to <b>repel</b>." msgstr "%s. Sleep of klik om <b>paden aan te trekken</b>; met Shift om <b>af te stoten</b>." -#: ../src/tweak-context.cpp:257 +#: ../src/tweak-context.cpp:254 #, c-format msgid "%s. Drag or click to <b>roughen paths</b>." msgstr "%s. Sleep of klik om <b>paden ruwer te maken</b>." -#: ../src/tweak-context.cpp:261 +#: ../src/tweak-context.cpp:258 #, c-format msgid "%s. Drag or click to <b>paint objects</b> with color." msgstr "%s. Sleep of klik om <b>objecten te verven</b> in kleur." -#: ../src/tweak-context.cpp:265 +#: ../src/tweak-context.cpp:262 #, c-format msgid "%s. Drag or click to <b>randomize colors</b>." msgstr "%s. Sleep of klik om <b>kleuren te randomiseren</b>." -#: ../src/tweak-context.cpp:269 +#: ../src/tweak-context.cpp:266 #, c-format msgid "%s. Drag or click to <b>increase blur</b>; with Shift to <b>decrease</b>." msgstr "%s. Sleep of klik om <b>vervaging te verhogen</b>; met Shift om te <b>verlagen</b>." -#: ../src/tweak-context.cpp:1238 +#: ../src/tweak-context.cpp:1235 msgid "<b>Nothing selected!</b> Select objects to tweak." msgstr "<b>Niets geselecteerd!</b> Selecteer objecten om te retoucheren." # deze en onderstaande boodschappen staan in de bewerkingsgeschiedenis (menu "bewerken" > "Geschiedenis") # tweak wordt retoucheren genoemd -#: ../src/tweak-context.cpp:1272 +#: ../src/tweak-context.cpp:1269 msgid "Move tweak" msgstr "Verplaatsing" -#: ../src/tweak-context.cpp:1276 +#: ../src/tweak-context.cpp:1273 msgid "Move in/out tweak" msgstr "Verplaatsing (naar/van cursor)" -#: ../src/tweak-context.cpp:1280 +#: ../src/tweak-context.cpp:1277 msgid "Move jitter tweak" msgstr "Verplaatsing (random)" -#: ../src/tweak-context.cpp:1284 +#: ../src/tweak-context.cpp:1281 msgid "Scale tweak" msgstr "Vergroten/verkleinen" -#: ../src/tweak-context.cpp:1288 +#: ../src/tweak-context.cpp:1285 msgid "Rotate tweak" msgstr "Roteren" -#: ../src/tweak-context.cpp:1292 +#: ../src/tweak-context.cpp:1289 msgid "Duplicate/delete tweak" msgstr "Dupliceren/verwijderen" -#: ../src/tweak-context.cpp:1296 +#: ../src/tweak-context.cpp:1293 msgid "Push path tweak" msgstr "Pad duwen" -#: ../src/tweak-context.cpp:1300 +#: ../src/tweak-context.cpp:1297 msgid "Shrink/grow path tweak" msgstr "Pad verdunnen/verdikken" -#: ../src/tweak-context.cpp:1304 +#: ../src/tweak-context.cpp:1301 msgid "Attract/repel path tweak" msgstr "Pad aantrekken/afstoten" -#: ../src/tweak-context.cpp:1308 +#: ../src/tweak-context.cpp:1305 msgid "Roughen path tweak" msgstr "Pad verruwen" -#: ../src/tweak-context.cpp:1312 +#: ../src/tweak-context.cpp:1309 msgid "Color paint tweak" msgstr "Verver" -#: ../src/tweak-context.cpp:1316 +#: ../src/tweak-context.cpp:1313 msgid "Color jitter tweak" msgstr "Verkleuren" -#: ../src/tweak-context.cpp:1320 +#: ../src/tweak-context.cpp:1317 msgid "Blur tweak" msgstr "Vervagen" @@ -12789,12 +12954,12 @@ msgstr "V:" #: ../src/ui/dialog/align-and-distribute.cpp:512 #: ../src/ui/dialog/align-and-distribute.cpp:894 -#: ../src/widgets/toolbox.cpp:8353 +#: ../src/widgets/toolbox.cpp:8395 msgid "Remove overlaps" msgstr "Overlappingen verwijderen" #: ../src/ui/dialog/align-and-distribute.cpp:543 -#: ../src/widgets/toolbox.cpp:8146 +#: ../src/widgets/toolbox.cpp:8188 msgid "Arrange connector network" msgstr "Het verbindingennetwerk herschikken" @@ -12823,7 +12988,7 @@ msgid "Rearrange" msgstr "Ordenen" #: ../src/ui/dialog/align-and-distribute.cpp:895 -#: ../src/widgets/toolbox.cpp:2310 +#: ../src/widgets/toolbox.cpp:2332 msgid "Nodes" msgstr "Knooppunten" @@ -12924,7 +13089,7 @@ msgid "Distribute baselines of texts vertically" msgstr "Grondlijnen van geselecteerde teksten verticaal verdelen" #: ../src/ui/dialog/align-and-distribute.cpp:986 -#: ../src/widgets/toolbox.cpp:8315 +#: ../src/widgets/toolbox.cpp:8357 msgid "Nicely arrange selected connector network" msgstr "Het geselecteerde verbindingennetwerk netjes schikken" @@ -13009,40 +13174,40 @@ msgstr "Profielnaam:" #. #. ----------- #: ../src/ui/dialog/calligraphic-profile-rename.cpp:52 -#: ../src/ui/dialog/inkscape-preferences.cpp:1242 +#: ../src/ui/dialog/inkscape-preferences.cpp:1243 msgid "Save" msgstr "Opslaan" -#: ../src/ui/dialog/color-item.cpp:117 +#: ../src/ui/dialog/color-item.cpp:118 #, c-format msgid "Color: <b>%s</b>; <b>Click</b> to set fill, <b>Shift+click</b> to set stroke" msgstr "Kleur: <b>%s</b>; <b>Klik</b> om vulling in te stellen, <b>Shift+klik</b> om lijnkleur in te stellen" -#: ../src/ui/dialog/color-item.cpp:491 +#: ../src/ui/dialog/color-item.cpp:482 msgid "Change color definition" msgstr "Kleurdefinitie veranderen" -#: ../src/ui/dialog/color-item.cpp:696 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove stroke color" msgstr "Lijnkleur verwijderen" -#: ../src/ui/dialog/color-item.cpp:696 +#: ../src/ui/dialog/color-item.cpp:701 msgid "Remove fill color" msgstr "Vulling verwijderen" -#: ../src/ui/dialog/color-item.cpp:701 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set stroke color to none" msgstr "Lijnkleur op geen instellen" -#: ../src/ui/dialog/color-item.cpp:701 +#: ../src/ui/dialog/color-item.cpp:706 msgid "Set fill color to none" msgstr "Vulling op geen instellen" -#: ../src/ui/dialog/color-item.cpp:717 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set stroke color from swatch" msgstr "Lijnkleur instellen uit palet" -#: ../src/ui/dialog/color-item.cpp:717 +#: ../src/ui/dialog/color-item.cpp:722 msgid "Set fill color from swatch" msgstr "Vulling instellen uit palet" @@ -13077,265 +13242,269 @@ msgid "<b>License</b>" msgstr "<b>Licentie</b>" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:92 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "Show page _border" msgstr "Pagina_rand weergeven" -#: ../src/ui/dialog/document-properties.cpp:92 +#: ../src/ui/dialog/document-properties.cpp:91 msgid "If set, rectangular page border is shown" msgstr "Indien aangevinkt, wordt de rechthoekige paginarand getoond" -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "Border on _top of drawing" msgstr "Rand altijd boven de _tekening" -#: ../src/ui/dialog/document-properties.cpp:93 +#: ../src/ui/dialog/document-properties.cpp:92 msgid "If set, border is always on top of the drawing" msgstr "Indien aangevinkt, wordt de rand altijd boven de tekening getoond" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "_Show border shadow" msgstr "Paginascha_duw weergeven" -#: ../src/ui/dialog/document-properties.cpp:94 +#: ../src/ui/dialog/document-properties.cpp:93 msgid "If set, page border shows a shadow on its right and lower side" msgstr "Indien aangevinkt, heeft de paginarand onder en rechts een schaduw" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Back_ground:" msgstr "Pagina-achtergrond:" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Background color" msgstr "Achtergrondkleur" -#: ../src/ui/dialog/document-properties.cpp:95 +#: ../src/ui/dialog/document-properties.cpp:94 msgid "Color and transparency of the page background (also used for bitmap export)" msgstr "De kleur en doorzichtigheid van de pagina-achtergrond (ook gebruikt voor het exporteren naar een bitmap)." -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Border _color:" msgstr "_Kleur paginarand:" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Page border color" msgstr "Kleur paginarand" -#: ../src/ui/dialog/document-properties.cpp:96 +#: ../src/ui/dialog/document-properties.cpp:95 msgid "Color of the page border" msgstr "Kleur van de paginarand" -#: ../src/ui/dialog/document-properties.cpp:97 +#: ../src/ui/dialog/document-properties.cpp:96 msgid "Default _units:" msgstr "Standaardeen_heid:" #. --------------------------------------------------------------- #. General snap options -#: ../src/ui/dialog/document-properties.cpp:101 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show _guides" msgstr "_Hulplijnen weergeven" -#: ../src/ui/dialog/document-properties.cpp:101 +#: ../src/ui/dialog/document-properties.cpp:100 msgid "Show or hide guides" msgstr "Hulplijnen weergeven of verbergen" -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "_Snap guides while dragging" msgstr "Hulplijnen kleven tijdens _slepen" -#: ../src/ui/dialog/document-properties.cpp:102 +#: ../src/ui/dialog/document-properties.cpp:101 msgid "While dragging a guide, snap to object nodes or bounding box corners ('Snap to nodes' or 'snap to bounding box corners' must be enabled; only a small part of the guide near the cursor will snap)" msgstr "Aan knooppunten of hoekpunten van omvattende vakken kleven tijdens het verslepen van een hulplijn ('Aan knooppunten kleven' of 'Aan hoeken van omvattend vak kleven' moet actief zijn; enkel een klein deel van de hulplijn rond de cursor zal kleven)" -#: ../src/ui/dialog/document-properties.cpp:104 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guide co_lor:" msgstr "K_leur hulplijnen:" -#: ../src/ui/dialog/document-properties.cpp:104 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Guideline color" msgstr "Kleur hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:104 +#: ../src/ui/dialog/document-properties.cpp:103 msgid "Color of guidelines" msgstr "Kleur van de hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "_Highlight color:" msgstr "_Oplichtende kleur:" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Highlighted guideline color" msgstr "Kleur van oplichtende hulplijn" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Color of a guideline when it is under mouse" msgstr "Kleur van een hulplijn als de muis ernaar wijst" -#: ../src/ui/dialog/document-properties.cpp:108 +#: ../src/ui/dialog/document-properties.cpp:107 msgctxt "Grid" msgid "_New" msgstr "_Nieuw" -#: ../src/ui/dialog/document-properties.cpp:108 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Create new grid." msgstr "Nieuw raster maken." -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:108 msgctxt "Grid" msgid "_Remove" msgstr "Ve_rwijderen" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Remove selected grid." msgstr "Geselecteerd raster verwijderen." -#: ../src/ui/dialog/document-properties.cpp:118 -#: ../src/widgets/toolbox.cpp:2399 +#: ../src/ui/dialog/document-properties.cpp:117 +#: ../src/widgets/toolbox.cpp:2439 msgid "Guides" msgstr "Hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:120 +#: ../src/ui/dialog/document-properties.cpp:119 #: ../src/verbs.cpp:2597 msgid "Snap" msgstr "Kleven" -#: ../src/ui/dialog/document-properties.cpp:121 +#: ../src/ui/dialog/document-properties.cpp:120 msgid "Color Management" msgstr "Kleurbeheer" -#: ../src/ui/dialog/document-properties.cpp:122 +#: ../src/ui/dialog/document-properties.cpp:121 msgid "Scripting" msgstr "Scripting" -#: ../src/ui/dialog/document-properties.cpp:220 +#: ../src/ui/dialog/document-properties.cpp:219 msgid "<b>General</b>" msgstr "<b>Algemeen</b>" -#: ../src/ui/dialog/document-properties.cpp:222 +#: ../src/ui/dialog/document-properties.cpp:221 msgid "<b>Border</b>" msgstr "<b>Omranding</b>" -#: ../src/ui/dialog/document-properties.cpp:224 +#: ../src/ui/dialog/document-properties.cpp:223 msgid "<b>Page Size</b>" msgstr "<b>Paginagrootte</b>" -#: ../src/ui/dialog/document-properties.cpp:252 +#: ../src/ui/dialog/document-properties.cpp:251 msgid "<b>Guides</b>" msgstr "<b>Hulplijnen</b>" -#: ../src/ui/dialog/document-properties.cpp:271 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap _distance" msgstr "Kleefafstan_d" -#: ../src/ui/dialog/document-properties.cpp:271 +#: ../src/ui/dialog/document-properties.cpp:270 msgid "Snap only when _closer than:" msgstr "Alleen kleven indien _dichter dan:" -#: ../src/ui/dialog/document-properties.cpp:271 -#: ../src/ui/dialog/document-properties.cpp:277 -#: ../src/ui/dialog/document-properties.cpp:283 +#: ../src/ui/dialog/document-properties.cpp:270 +#: ../src/ui/dialog/document-properties.cpp:276 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Always snap" msgstr "Altijd kleven" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Snapping distance, in screen pixels, for snapping to objects" msgstr "Kleefafstand, in schermpixels, voor kleven aan objecten" -#: ../src/ui/dialog/document-properties.cpp:272 +#: ../src/ui/dialog/document-properties.cpp:271 msgid "Always snap to objects, regardless of their distance" msgstr "Altijd aan objecten kleven, ongeacht hun afstand" -#: ../src/ui/dialog/document-properties.cpp:273 +#: ../src/ui/dialog/document-properties.cpp:272 msgid "If set, objects only snap to another object when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan andere objecten als deze zich binnen de hier aangegeven afstand bevindt" #. Options for snapping to grids -#: ../src/ui/dialog/document-properties.cpp:277 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap d_istance" msgstr "Klee_fafstand" -#: ../src/ui/dialog/document-properties.cpp:277 +#: ../src/ui/dialog/document-properties.cpp:276 msgid "Snap only when c_loser than:" msgstr "Alleen kleven indien d_ichter dan:" -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Snapping distance, in screen pixels, for snapping to grid" msgstr "Kleefafstand, in schermpixels, voor kleven aan raster" -#: ../src/ui/dialog/document-properties.cpp:278 +#: ../src/ui/dialog/document-properties.cpp:277 msgid "Always snap to grids, regardless of the distance" msgstr "Altijd aan raster kleven, ongeacht de afstand" -#: ../src/ui/dialog/document-properties.cpp:279 +#: ../src/ui/dialog/document-properties.cpp:278 msgid "If set, objects only snap to a grid line when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan een rasterlijn als deze zich binnen de hier aangegeven afstand bevindt" #. Options for snapping to guides -#: ../src/ui/dialog/document-properties.cpp:283 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap dist_ance" msgstr "Kleef_afstand" -#: ../src/ui/dialog/document-properties.cpp:283 +#: ../src/ui/dialog/document-properties.cpp:282 msgid "Snap only when close_r than:" msgstr "Alleen kleven indien di_chter dan:" -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Snapping distance, in screen pixels, for snapping to guides" msgstr "Kleefafstand, in schermpixels, voor kleven aan hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:284 +#: ../src/ui/dialog/document-properties.cpp:283 msgid "Always snap to guides, regardless of the distance" msgstr "Altijd aan hulplijnen kleven, ongeacht de afstand" -#: ../src/ui/dialog/document-properties.cpp:285 +#: ../src/ui/dialog/document-properties.cpp:284 msgid "If set, objects only snap to a guide when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan een hulplijn als deze zich binnen de hier aangegeven afstand bevindt" -#: ../src/ui/dialog/document-properties.cpp:289 +#: ../src/ui/dialog/document-properties.cpp:288 msgid "<b>Snap to objects</b>" msgstr "<b>Kleven aan objecten</b>" -#: ../src/ui/dialog/document-properties.cpp:291 +#: ../src/ui/dialog/document-properties.cpp:290 msgid "<b>Snap to grids</b>" msgstr "<b>Kleven aan rasters</b>" -#: ../src/ui/dialog/document-properties.cpp:293 +#: ../src/ui/dialog/document-properties.cpp:292 msgid "<b>Snap to guides</b>" msgstr "<b>Kleven aan hulplijnen</b>" -#: ../src/ui/dialog/document-properties.cpp:322 -msgid "(invalid UTF-8 string)" -msgstr "(ongeldige UTF-8 string)" - #. TODO check if this next line was sometimes needed. It being there caused an assertion. #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:431 +#: ../src/ui/dialog/document-properties.cpp:406 #: ../src/verbs.cpp:2763 msgid "Link Color Profile" msgstr "Kleurprofiel linken" -#: ../src/ui/dialog/document-properties.cpp:508 +#: ../src/ui/dialog/document-properties.cpp:499 msgid "Remove linked color profile" msgstr "Gelinkt kleurprofiel verwijderen" -#: ../src/ui/dialog/document-properties.cpp:522 +#: ../src/ui/dialog/document-properties.cpp:513 msgid "<b>Linked Color Profiles:</b>" msgstr "<b>Gelinkte kleurprofielen:</b>" -#: ../src/ui/dialog/document-properties.cpp:524 +#: ../src/ui/dialog/document-properties.cpp:515 msgid "<b>Available Color Profiles:</b>" msgstr "<b>Beschikbare kleurprofielen:</b>" -#: ../src/ui/dialog/document-properties.cpp:526 +#: ../src/ui/dialog/document-properties.cpp:517 msgid "Link Profile" msgstr "Kleurprofiel linken" -#: ../src/ui/dialog/document-properties.cpp:557 +#: ../src/ui/dialog/document-properties.cpp:548 msgid "Profile Name" msgstr "Naam profiel" +#: ../src/ui/dialog/document-properties.cpp:581 +msgid "External scripts" +msgstr "Externe scripts" + +#: ../src/ui/dialog/document-properties.cpp:582 +msgid "Embedded scripts" +msgstr "Ingevoegde scripts" + # zijn dit de uitbreidingen (Engels: external modules)? #: ../src/ui/dialog/document-properties.cpp:588 msgid "<b>External script files:</b>" @@ -13349,24 +13518,58 @@ msgstr "Toevoegen" msgid "Filename" msgstr "Bestandsnaam" +# zijn dit de uitbreidingen (Engels: external modules)? +#: ../src/ui/dialog/document-properties.cpp:622 +msgid "<b>Embedded script files:</b>" +msgstr "<b>Ingevoegde scriptbestanden:</b>" + +#: ../src/ui/dialog/document-properties.cpp:624 +msgid "New" +msgstr "Nieuw" + +#: ../src/ui/dialog/document-properties.cpp:646 +msgid "Script id" +msgstr "Script id" + +#: ../src/ui/dialog/document-properties.cpp:652 +msgid "<b>Content:</b>" +msgstr "<b>Inhoud:</b>" + #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:653 +#: ../src/ui/dialog/document-properties.cpp:715 msgid "Add external script..." msgstr "Extern script toevoegen..." -#: ../src/ui/dialog/document-properties.cpp:679 +#. inform the document, so we can undo +#: ../src/ui/dialog/document-properties.cpp:732 +msgid "Add embedded script..." +msgstr "Ingevoegd script toevoegen..." + +#. inform the document, so we can undo +#: ../src/ui/dialog/document-properties.cpp:762 msgid "Remove external script" msgstr "Extern script verwijderen" -#: ../src/ui/dialog/document-properties.cpp:760 +#. inform the document, so we can undo +#: ../src/ui/dialog/document-properties.cpp:794 +msgid "Remove embedded script" +msgstr "Ingevoegd script verwijderen" + +#. TODO repr->set_content(_EmbeddedContent.get_buffer()->get_text()); +#. inform the document, so we can undo +#: ../src/ui/dialog/document-properties.cpp:877 +msgid "Edit embedded script" +msgstr "Ingevoegd script bewerken" + +#: ../src/ui/dialog/document-properties.cpp:962 msgid "<b>Creation</b>" msgstr "<b>Aanmaken</b>" -#: ../src/ui/dialog/document-properties.cpp:761 +#: ../src/ui/dialog/document-properties.cpp:963 msgid "<b>Defined grids</b>" msgstr "<b>Bestaande rasters</b>" -#: ../src/ui/dialog/document-properties.cpp:972 +#: ../src/ui/dialog/document-properties.cpp:1174 msgid "Remove grid" msgstr "Raster verwijderen" @@ -13381,14 +13584,16 @@ msgstr "Informatie" #: ../share/extensions/draw_from_triangle.inx.h:20 #: ../share/extensions/dxf_input.inx.h:11 #: ../share/extensions/dxf_outlines.inx.h:8 -#: ../share/extensions/gcodetools_all_in_one.inx.h:25 -#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_about.inx.h:5 +#: ../share/extensions/gcodetools_area.inx.h:28 #: ../share/extensions/gcodetools_check_for_updates.inx.h:5 -#: ../share/extensions/gcodetools_dxf_points.inx.h:13 -#: ../share/extensions/gcodetools_engraving.inx.h:11 -#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_dxf_points.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:16 +#: ../share/extensions/gcodetools_graffiti.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:20 #: ../share/extensions/gcodetools_orientation_points.inx.h:5 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:6 #: ../share/extensions/gcodetools_tools_library.inx.h:3 #: ../share/extensions/generate_voronoi.inx.h:6 #: ../share/extensions/gimp_xcf.inx.h:3 @@ -13440,32 +13645,32 @@ msgstr "Bestandsvoorbeeld tonen" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:725 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:735 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:736 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:221 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:352 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:219 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:350 msgid "All Files" msgstr "Alle bestanden" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:730 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:731 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:222 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:220 msgid "All Inkscape Files" msgstr "Alle Inkscape-bestanden" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:741 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:742 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:223 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:221 msgid "All Images" msgstr "Alle afbeeldingen" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:746 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:747 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:224 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:222 msgid "All Vectors" msgstr "Alle vectoren" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:751 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:752 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:225 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:223 msgid "All Bitmaps" msgstr "Alle bitmappen" @@ -13545,15 +13750,15 @@ msgstr "Achtergrond" msgid "Destination" msgstr "Doel" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:353 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:351 msgid "All Executable Files" msgstr "Alle uitvoerbare bestanden" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:545 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:543 msgid "Show Preview" msgstr "Voorbeeld tonen" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:683 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:681 msgid "No file selected" msgstr "Geen bestand geselecteerd" @@ -13767,10 +13972,10 @@ msgid "Height of filter effects region" msgstr "Hoogte van filtereffectgebied" #: ../src/ui/dialog/filter-effects-dialog.cpp:2190 -#: ../src/widgets/toolbox.cpp:4095 -#: ../src/widgets/toolbox.cpp:4473 -#: ../src/widgets/toolbox.cpp:4737 -#: ../src/widgets/toolbox.cpp:6202 +#: ../src/widgets/toolbox.cpp:4143 +#: ../src/widgets/toolbox.cpp:4521 +#: ../src/widgets/toolbox.cpp:4779 +#: ../src/widgets/toolbox.cpp:6244 #: ../share/extensions/extrude.inx.h:4 #: ../share/extensions/triangle.inx.h:9 msgid "Mode:" @@ -14870,35 +15075,40 @@ msgstr "Rela_tieve verplaatsing" msgid "Move and/or rotate the guide relative to current settings" msgstr "Hulplijn verplaatsen en/of verdraaiien relatief ten opzichte van de huidige instellingen" -#: ../src/ui/dialog/guides.cpp:45 -msgid "Label:" -msgstr "Label:" +#: ../src/ui/dialog/guides.cpp:43 +msgid "_X:" +msgstr "_X:" + +#: ../src/ui/dialog/guides.cpp:44 +#: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 +#: ../src/widgets/sp-color-scales.cpp:462 +msgid "_Y:" +msgstr "_Y:" #: ../src/ui/dialog/guides.cpp:45 msgid "Optionally give this guideline a name" msgstr "" #: ../src/ui/dialog/guides.cpp:46 -#: ../src/widgets/toolbox.cpp:5195 -#: ../share/extensions/motion.inx.h:1 -#: ../share/extensions/restack.inx.h:1 -msgid "Angle:" +#, fuzzy +msgid "_Angle:" msgstr "Hoek:" -#: ../src/ui/dialog/guides.cpp:112 +#: ../src/ui/dialog/guides.cpp:120 msgid "Set guide properties" msgstr "Hulplijneigenschappen instellen" -#: ../src/ui/dialog/guides.cpp:151 +#: ../src/ui/dialog/guides.cpp:159 msgid "Guideline" msgstr "Hulplijn" -#: ../src/ui/dialog/guides.cpp:243 +#: ../src/ui/dialog/guides.cpp:256 #, c-format msgid "Guideline ID: %s" msgstr "Hulplijn ID: %s" -#: ../src/ui/dialog/guides.cpp:249 +#: ../src/ui/dialog/guides.cpp:262 #, c-format msgid "Current: %s" msgstr "Huidig: %s" @@ -14912,1121 +15122,1121 @@ msgstr "%d x %d" msgid "Magnified:" msgstr "Uitvergroot:" -#: ../src/ui/dialog/icon-preview.cpp:226 +#: ../src/ui/dialog/icon-preview.cpp:227 msgid "Actual Size:" msgstr "Huidige grootte:" -#: ../src/ui/dialog/icon-preview.cpp:231 +#: ../src/ui/dialog/icon-preview.cpp:232 msgctxt "Icon preview window" msgid "Sele_ction" msgstr "Sele_ctie" -#: ../src/ui/dialog/icon-preview.cpp:233 +#: ../src/ui/dialog/icon-preview.cpp:234 msgid "Selection only or whole document" msgstr "Alleen selectie of volledig document" -#: ../src/ui/dialog/inkscape-preferences.cpp:177 +#: ../src/ui/dialog/inkscape-preferences.cpp:178 msgid "Mouse" msgstr "Muis" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 msgid "Grab sensitivity:" msgstr "Grijpgevoeligheid:" -#: ../src/ui/dialog/inkscape-preferences.cpp:179 -#: ../src/ui/dialog/inkscape-preferences.cpp:182 -#: ../src/ui/dialog/inkscape-preferences.cpp:198 -#: ../src/ui/dialog/inkscape-preferences.cpp:202 -#: ../src/ui/dialog/inkscape-preferences.cpp:212 +#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:213 msgid "pixels" msgstr "pixels" -#: ../src/ui/dialog/inkscape-preferences.cpp:180 +#: ../src/ui/dialog/inkscape-preferences.cpp:181 msgid "How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)" msgstr "Hoe dicht u naast een object moet klikken om het te selecteren met de muis (in schermpixels)" -#: ../src/ui/dialog/inkscape-preferences.cpp:182 +#: ../src/ui/dialog/inkscape-preferences.cpp:183 msgid "Click/drag threshold:" msgstr "Grenswaarde tussen klikken/slepen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:183 +#: ../src/ui/dialog/inkscape-preferences.cpp:184 msgid "Maximum mouse drag (in screen pixels) which is considered a click, not a drag" msgstr "Maximale verschuiving van de muis (in schermpixels) die nog als klikken en niet als slepen wordt geΓ―nterpreteerd." -#: ../src/ui/dialog/inkscape-preferences.cpp:185 +#: ../src/ui/dialog/inkscape-preferences.cpp:186 msgid "Use pressure-sensitive tablet (requires restart)" msgstr "Drukgevoelig tekentablet gebruiken (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:187 +#: ../src/ui/dialog/inkscape-preferences.cpp:188 msgid "Use the capabilities of a tablet or other pressure-sensitive device. Disable this only if you have problems with the tablet (you can still use it as a mouse)" msgstr "De mogelijkheden van een tekentablet of ander drukgevoelig apparaat gebruiken. Zet deze optie uit alleen als u problemen met het tekentablet ondervindt (u kunt het nog steeds als een muis gebruiken)" -#: ../src/ui/dialog/inkscape-preferences.cpp:189 +#: ../src/ui/dialog/inkscape-preferences.cpp:190 msgid "Switch tool based on tablet device (requires restart)" msgstr "Tekentablet bepaalt het gereedschap (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:191 +#: ../src/ui/dialog/inkscape-preferences.cpp:192 msgid "Change tool as different devices are used on the tablet (pen, eraser, mouse)" msgstr "Van gereedschap veranderen wanneer op tekentablet een ander apparaat gebruikt wordt (pen, gom, muis)" -#: ../src/ui/dialog/inkscape-preferences.cpp:196 +#: ../src/ui/dialog/inkscape-preferences.cpp:197 msgid "Scrolling" msgstr "Verschuiven" -#: ../src/ui/dialog/inkscape-preferences.cpp:198 +#: ../src/ui/dialog/inkscape-preferences.cpp:199 msgid "Mouse wheel scrolls by:" msgstr "Het muiswiel verschuift met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:199 +#: ../src/ui/dialog/inkscape-preferences.cpp:200 msgid "One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)" msgstr "Elke muiswielstap verschuift het beeld dit aantal pixels (houd Shift ingedrukt om horizontaal te verschuiven)" -#: ../src/ui/dialog/inkscape-preferences.cpp:200 +#: ../src/ui/dialog/inkscape-preferences.cpp:201 msgid "Ctrl+arrows" msgstr "Ctrl+pijltjestoetsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:202 +#: ../src/ui/dialog/inkscape-preferences.cpp:203 msgid "Scroll by:" msgstr "Verschuiven met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:203 +#: ../src/ui/dialog/inkscape-preferences.cpp:204 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "Ctrl en een pijltjestoets indrukken verschuift dit aantal pixels" -#: ../src/ui/dialog/inkscape-preferences.cpp:205 +#: ../src/ui/dialog/inkscape-preferences.cpp:206 msgid "Acceleration:" msgstr "Versnelling:" -#: ../src/ui/dialog/inkscape-preferences.cpp:206 +#: ../src/ui/dialog/inkscape-preferences.cpp:207 msgid "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)" msgstr "Ctrl en een pijltjestoets ingedrukt houden zal versnellend verschuiven (0 voor geen versnelling)" -#: ../src/ui/dialog/inkscape-preferences.cpp:207 +#: ../src/ui/dialog/inkscape-preferences.cpp:208 msgid "Autoscrolling" msgstr "Automatisch verschuiven" -#: ../src/ui/dialog/inkscape-preferences.cpp:209 +#: ../src/ui/dialog/inkscape-preferences.cpp:210 msgid "Speed:" msgstr "Snelheid:" -#: ../src/ui/dialog/inkscape-preferences.cpp:210 +#: ../src/ui/dialog/inkscape-preferences.cpp:211 msgid "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)" msgstr "Hoe snel het canvas automatisch verschuift wanneer u voorbij de paginarand sleept (0 om dit uit te schakelen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:213 +#: ../src/ui/dialog/inkscape-preferences.cpp:214 msgid "How far (in screen pixels) you need to be from the canvas edge to trigger autoscroll; positive is outside the canvas, negative is within the canvas" msgstr "Hoe ver de cursor van de canvasrand moet zijn verwijderd om het automatisch verschuiven te activeren; positieve getallen voor buiten het canvas, negatieve voor er binnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:214 +#: ../src/ui/dialog/inkscape-preferences.cpp:215 msgid "Left mouse button pans when Space is pressed" msgstr "Linkermuisknop verschuift het canvas wanneer spatie ingedrukt is" -#: ../src/ui/dialog/inkscape-preferences.cpp:216 +#: ../src/ui/dialog/inkscape-preferences.cpp:217 msgid "When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)" msgstr "Indien aangevinkt, zal het indrukken en ingedrukt houden van de spatiebalk en vervolgens slepen met de muis met ingedrukte linkermuisknop het canvas verschuiven (zoals in Adobe Illustrator). Indien uitgeschakeld, zal spatie tijdelijk het selectie-gereedschap activeren (standaard)" -#: ../src/ui/dialog/inkscape-preferences.cpp:217 +#: ../src/ui/dialog/inkscape-preferences.cpp:218 msgid "Mouse wheel zooms by default" msgstr "Muiswiel zoomt standaard" -#: ../src/ui/dialog/inkscape-preferences.cpp:219 +#: ../src/ui/dialog/inkscape-preferences.cpp:220 msgid "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl" msgstr "Indien aangevinkt, zal de muis zoomen zonder Ctrl en het canvas scrollen met Ctrl; indien uitgeschakeld, zal de muis zoomen met Ctrl en scrollen zonder Ctrl" -#: ../src/ui/dialog/inkscape-preferences.cpp:225 +#: ../src/ui/dialog/inkscape-preferences.cpp:226 msgid "Enable snap indicator" msgstr "Kleefindicator activeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:227 +#: ../src/ui/dialog/inkscape-preferences.cpp:228 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "Na het kleven wordt er een symbool getekend op het punt waaraan gekleefd werd" -#: ../src/ui/dialog/inkscape-preferences.cpp:230 +#: ../src/ui/dialog/inkscape-preferences.cpp:231 msgid "Delay (in ms):" msgstr "Vertraging (ms):" -#: ../src/ui/dialog/inkscape-preferences.cpp:231 +#: ../src/ui/dialog/inkscape-preferences.cpp:232 msgid "Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate." msgstr "Het kleven uitstellen zolang de muis beweegt en wacht een bepaalde fractie van een seconde. Deze extra vertraging wordt hier opgegeven. Indien ingesteld op nul of een zeer klein getal, vindt het kleven onmiddellijk plaats." -#: ../src/ui/dialog/inkscape-preferences.cpp:233 +#: ../src/ui/dialog/inkscape-preferences.cpp:234 msgid "Only snap the node closest to the pointer" msgstr "Enkel het knooppunt dichtst bij de cursor kleeft" -#: ../src/ui/dialog/inkscape-preferences.cpp:235 +#: ../src/ui/dialog/inkscape-preferences.cpp:236 msgid "Only try to snap the node that is initially closest to the mouse pointer" msgstr "Enkel het knooppunt dat initieel het dichtst bij de muiscursor is, proberen kleven" -#: ../src/ui/dialog/inkscape-preferences.cpp:238 +#: ../src/ui/dialog/inkscape-preferences.cpp:239 msgid "Weight factor:" msgstr "Wegingsfactor:" -#: ../src/ui/dialog/inkscape-preferences.cpp:239 +#: ../src/ui/dialog/inkscape-preferences.cpp:240 msgid "When multiple snap solutions are found, then Inkscape can either prefer the closest transformation (when set to 0), or prefer the node that was initially the closest to the pointer (when set to 1)" msgstr "Wanneer er meerdere mogelijkheden voor kleven zijn, dan kan Inkscape kiezen tussen de meest nabije transformatie (indien ingesteld op 0) of het knooppunt dat initeel het dichtst bij de muiscursor was (indien ingesteld op 1)" -#: ../src/ui/dialog/inkscape-preferences.cpp:241 +#: ../src/ui/dialog/inkscape-preferences.cpp:242 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "De muis kleeft bij het slepen van een beperkt knooppunt" -#: ../src/ui/dialog/inkscape-preferences.cpp:243 +#: ../src/ui/dialog/inkscape-preferences.cpp:244 msgid "When dragging a knot along a constraint line, then snap the position of the mouse pointer instead of snapping the projection of the knot onto the constraint line" msgstr "Bij het verslepen van een beperkte lijn, de positie van de muis kleven in plaats van de projectie van het knooppunt op de beperkte lijn" -#: ../src/ui/dialog/inkscape-preferences.cpp:245 +#: ../src/ui/dialog/inkscape-preferences.cpp:246 msgid "Snapping" msgstr "Kleven" -#: ../src/ui/dialog/inkscape-preferences.cpp:250 +#: ../src/ui/dialog/inkscape-preferences.cpp:251 msgid "Steps" msgstr "Stappen" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:254 +#: ../src/ui/dialog/inkscape-preferences.cpp:255 msgid "Arrow keys move by:" msgstr "Pijltjestoetsen verschuiven met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:255 +#: ../src/ui/dialog/inkscape-preferences.cpp:256 msgid "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "Een pijltjestoets indrukken verplaatst de geselecteerde objecten of knooppunten met deze afstand" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:258 +#: ../src/ui/dialog/inkscape-preferences.cpp:259 msgid "> and < scale by:" msgstr "> en < schalen met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:259 +#: ../src/ui/dialog/inkscape-preferences.cpp:260 msgid "Pressing > or < scales selection up or down by this increment" msgstr "Op > of < drukken vergroot of verkleint de selectie met deze waarde" -#: ../src/ui/dialog/inkscape-preferences.cpp:261 +#: ../src/ui/dialog/inkscape-preferences.cpp:262 msgid "Inset/Outset by:" msgstr "Vernauwen/verwijden met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:263 msgid "Inset and Outset commands displace the path by this distance" msgstr "Vernauwing en verwijding verplaatsen het pad met deze afstand" -#: ../src/ui/dialog/inkscape-preferences.cpp:263 +#: ../src/ui/dialog/inkscape-preferences.cpp:264 msgid "Compass-like display of angles" msgstr "Hoeken weergeven als een kompas" -#: ../src/ui/dialog/inkscape-preferences.cpp:265 +#: ../src/ui/dialog/inkscape-preferences.cpp:266 msgid "When on, angles are displayed with 0 at north, 0 to 360 range, positive clockwise; otherwise with 0 at east, -180 to 180 range, positive counterclockwise" msgstr "Indien aangevinkt, dan wijst 0 naar het noorden, en lopen de hoeken van 0 tot 360 graden met de klok mee; indien uit, dan wijst 0 naar het oosten, en lopen de hoeken van -180 tot 180 graden, tegen de klok in" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "Rotation snaps every:" msgstr "Draaien in stappen van:" -#: ../src/ui/dialog/inkscape-preferences.cpp:271 +#: ../src/ui/dialog/inkscape-preferences.cpp:272 msgid "degrees" msgstr "graden" -#: ../src/ui/dialog/inkscape-preferences.cpp:272 +#: ../src/ui/dialog/inkscape-preferences.cpp:273 msgid "Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount" msgstr "Het aantal graden per stap wanneer Ctrl ingedrukt wordt tijdens het draaien; de toetsen [ en ] draaien ditzelfde aantal graden" -#: ../src/ui/dialog/inkscape-preferences.cpp:273 +#: ../src/ui/dialog/inkscape-preferences.cpp:274 msgid "Relative snapping of guideline angles" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:275 +#: ../src/ui/dialog/inkscape-preferences.cpp:276 msgid "When on, the snap angles when rotating a guideline will be relative to the original angle" msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:277 +#: ../src/ui/dialog/inkscape-preferences.cpp:278 msgid "Zoom in/out by:" msgstr "In- en uitzoomen met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:278 +#: ../src/ui/dialog/inkscape-preferences.cpp:279 msgid "Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier" msgstr "Deze factor wordt gebruikt bij een klik op het vergrootglas, door de +/- toetsen, en door de middelste muisknop" -#: ../src/ui/dialog/inkscape-preferences.cpp:284 +#: ../src/ui/dialog/inkscape-preferences.cpp:285 msgid "Show selection cue" msgstr "Selectie-aanduiding tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:285 +#: ../src/ui/dialog/inkscape-preferences.cpp:286 msgid "Whether selected objects display a selection cue (the same as in selector)" msgstr "Bij geselecteerde objecten wordt een selectie-aanduiding getoond (dezelfde als bij 'Selecteren')" -#: ../src/ui/dialog/inkscape-preferences.cpp:291 +#: ../src/ui/dialog/inkscape-preferences.cpp:292 msgid "Enable gradient editing" msgstr "Aanpassen van kleurverlopen toestaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:292 +#: ../src/ui/dialog/inkscape-preferences.cpp:293 msgid "Whether selected objects display gradient editing controls" msgstr "Bij geselecteerde objecten worden handvatten voor het bewerken van het kleurverloop getoond" -#: ../src/ui/dialog/inkscape-preferences.cpp:297 +#: ../src/ui/dialog/inkscape-preferences.cpp:298 msgid "Conversion to guides uses edges instead of bounding box" msgstr "Omzetting naar hulplijnen gebruikt randen in plaats van omvatted vak" -#: ../src/ui/dialog/inkscape-preferences.cpp:298 +#: ../src/ui/dialog/inkscape-preferences.cpp:299 msgid "Converting an object to guides places these along the object's true edges (imitating the object's shape), not along the bounding box" msgstr "Het omzetten van een object naar hulplijnen plaatst het langs de randen van het object (imitatie van de objectvorm), niet langs het omvattend vak" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "Ctrl+click dot size:" msgstr "Stipgrootte van Ctrl+klik:" -#: ../src/ui/dialog/inkscape-preferences.cpp:305 +#: ../src/ui/dialog/inkscape-preferences.cpp:306 msgid "times current stroke width" msgstr "maal huidige lijndikte" -#: ../src/ui/dialog/inkscape-preferences.cpp:306 +#: ../src/ui/dialog/inkscape-preferences.cpp:307 msgid "Size of dots created with Ctrl+click (relative to current stroke width)" msgstr "Grootte van stippen gemaakt door Ctrl+klik (ten opzichte van de huidige omlijningsdikte)" -#: ../src/ui/dialog/inkscape-preferences.cpp:321 +#: ../src/ui/dialog/inkscape-preferences.cpp:322 msgid "<b>No objects selected</b> to take the style from." msgstr "Er zijn <b>geen objecten geselecteerd</b> om de stijl van over te nemen." -#: ../src/ui/dialog/inkscape-preferences.cpp:330 +#: ../src/ui/dialog/inkscape-preferences.cpp:331 msgid "<b>More than one object selected.</b> Cannot take style from multiple objects." msgstr "<b>Meer dan één object geselecteerd.</b> De stijl kan niet van meerdere objectentegelijk worden overgenomen." -#: ../src/ui/dialog/inkscape-preferences.cpp:363 +#: ../src/ui/dialog/inkscape-preferences.cpp:364 msgid "Style of new objects" msgstr "Stijl van nieuwe objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:365 +#: ../src/ui/dialog/inkscape-preferences.cpp:366 msgid "Last used style" msgstr "Laatst gebruikte stijl" -#: ../src/ui/dialog/inkscape-preferences.cpp:367 +#: ../src/ui/dialog/inkscape-preferences.cpp:368 msgid "Apply the style you last set on an object" msgstr "De laatste op een object gebruikte stijl toepassen" -#: ../src/ui/dialog/inkscape-preferences.cpp:372 +#: ../src/ui/dialog/inkscape-preferences.cpp:373 msgid "This tool's own style:" msgstr "Stijl van dit gereedschap:" -#: ../src/ui/dialog/inkscape-preferences.cpp:376 +#: ../src/ui/dialog/inkscape-preferences.cpp:377 msgid "Each tool may store its own style to apply to the newly created objects. Use the button below to set it." msgstr "Elk gereedschap kan zijn eigen stijl opslaan die gebruikt wordt voor nieuwe objecten. Gebruik de knop hieronder om de stijl in te stellen." #. style swatch -#: ../src/ui/dialog/inkscape-preferences.cpp:380 +#: ../src/ui/dialog/inkscape-preferences.cpp:381 msgid "Take from selection" msgstr "Overnemen van selectie" -#: ../src/ui/dialog/inkscape-preferences.cpp:385 +#: ../src/ui/dialog/inkscape-preferences.cpp:386 msgid "This tool's style of new objects" msgstr "Stijl van dit gereedschap voor nieuwe objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:392 +#: ../src/ui/dialog/inkscape-preferences.cpp:393 msgid "Remember the style of the (first) selected object as this tool's style" msgstr "De stijl van het (eerst) geselecteerde object onthouden als stijl voor dit gereedschap" -#: ../src/ui/dialog/inkscape-preferences.cpp:397 +#: ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "Tools" msgstr "Gereedschappen" -#: ../src/ui/dialog/inkscape-preferences.cpp:400 +#: ../src/ui/dialog/inkscape-preferences.cpp:401 msgid "Bounding box to use" msgstr "Te gebruiken omvattend vak" -#: ../src/ui/dialog/inkscape-preferences.cpp:401 +#: ../src/ui/dialog/inkscape-preferences.cpp:402 msgid "Visual bounding box" msgstr "Visueel omvattend vak" -#: ../src/ui/dialog/inkscape-preferences.cpp:403 +#: ../src/ui/dialog/inkscape-preferences.cpp:404 msgid "This bounding box includes stroke width, markers, filter margins, etc." msgstr "Dit omvattend vak omvat lijndiktes, markeringen, filtermarges, enzovoort." -#: ../src/ui/dialog/inkscape-preferences.cpp:404 +#: ../src/ui/dialog/inkscape-preferences.cpp:405 msgid "Geometric bounding box" msgstr "Geometrisch omvattend vak" -#: ../src/ui/dialog/inkscape-preferences.cpp:406 +#: ../src/ui/dialog/inkscape-preferences.cpp:407 msgid "This bounding box includes only the bare path" msgstr "Dit omvattend vak omvat alleen het pad zelf" -#: ../src/ui/dialog/inkscape-preferences.cpp:408 +#: ../src/ui/dialog/inkscape-preferences.cpp:409 msgid "Conversion to guides" msgstr "Conversie naar hulplijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:409 +#: ../src/ui/dialog/inkscape-preferences.cpp:410 msgid "Keep objects after conversion to guides" msgstr "Objecten behouden na hun conversie naar hulplijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:411 +#: ../src/ui/dialog/inkscape-preferences.cpp:412 msgid "When converting an object to guides, don't delete the object after the conversion" msgstr "Wanneer een object naar hulplijnen omgezet wordt, het object na omzetting niet verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:412 +#: ../src/ui/dialog/inkscape-preferences.cpp:413 msgid "Treat groups as a single object" msgstr "Groepen als één object behandelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:414 +#: ../src/ui/dialog/inkscape-preferences.cpp:415 msgid "Treat groups as a single object during conversion to guides rather than converting each child separately" msgstr "Groepen als één object behandelen bij omzetting naar hulplijnen in plaats van elk onderdeel apart" -#: ../src/ui/dialog/inkscape-preferences.cpp:416 +#: ../src/ui/dialog/inkscape-preferences.cpp:417 msgid "Average all sketches" msgstr "Schetsen uitmiddelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:417 +#: ../src/ui/dialog/inkscape-preferences.cpp:418 msgid "Width is in absolute units" msgstr "Breedte is in absolute eenheden" -#: ../src/ui/dialog/inkscape-preferences.cpp:418 +#: ../src/ui/dialog/inkscape-preferences.cpp:419 msgid "Select new path" msgstr "Selecteer nieuw pad" -#: ../src/ui/dialog/inkscape-preferences.cpp:419 +#: ../src/ui/dialog/inkscape-preferences.cpp:420 msgid "Don't attach connectors to text objects" msgstr "Geen verbindingen aan tekstobjecten hechten" #. Selector -#: ../src/ui/dialog/inkscape-preferences.cpp:422 +#: ../src/ui/dialog/inkscape-preferences.cpp:423 msgid "Selector" msgstr "Selecteren" # De dialoog is duidelijker als het werkwoord bij de keuzes staat. -#: ../src/ui/dialog/inkscape-preferences.cpp:425 +#: ../src/ui/dialog/inkscape-preferences.cpp:426 msgid "When transforming, show" msgstr "Tijdens transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:426 +#: ../src/ui/dialog/inkscape-preferences.cpp:427 msgid "Objects" msgstr "Objecten tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:428 +#: ../src/ui/dialog/inkscape-preferences.cpp:429 msgid "Show the actual objects when moving or transforming" msgstr "De werkelijke objecten weergeven bij verplaatsten en transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:429 +#: ../src/ui/dialog/inkscape-preferences.cpp:430 msgid "Box outline" msgstr "Omvattend vak tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:431 +#: ../src/ui/dialog/inkscape-preferences.cpp:432 msgid "Show only a box outline of the objects when moving or transforming" msgstr "Alleen een omvattend vak weergeven bij verplaatsen en transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:432 +#: ../src/ui/dialog/inkscape-preferences.cpp:433 msgid "Per-object selection cue" msgstr "Selectie-aanduiding per object" -#: ../src/ui/dialog/inkscape-preferences.cpp:435 +#: ../src/ui/dialog/inkscape-preferences.cpp:436 msgid "No per-object selection indication" msgstr "Geen aanduiding van selectie per object" -#: ../src/ui/dialog/inkscape-preferences.cpp:436 +#: ../src/ui/dialog/inkscape-preferences.cpp:437 msgid "Mark" msgstr "Markering" -#: ../src/ui/dialog/inkscape-preferences.cpp:438 +#: ../src/ui/dialog/inkscape-preferences.cpp:439 msgid "Each selected object has a diamond mark in the top left corner" msgstr "Elk geselecteerd object heeft alleen een ruitmarkering in de linkerbovenhoek" -#: ../src/ui/dialog/inkscape-preferences.cpp:439 +#: ../src/ui/dialog/inkscape-preferences.cpp:440 msgid "Box" msgstr "Omhullende" -#: ../src/ui/dialog/inkscape-preferences.cpp:441 +#: ../src/ui/dialog/inkscape-preferences.cpp:442 msgid "Each selected object displays its bounding box" msgstr "Elk geselecteerd object toont zijn omvattend vak" #. Node -#: ../src/ui/dialog/inkscape-preferences.cpp:444 +#: ../src/ui/dialog/inkscape-preferences.cpp:445 msgid "Node" msgstr "Knooppunten" -#: ../src/ui/dialog/inkscape-preferences.cpp:447 +#: ../src/ui/dialog/inkscape-preferences.cpp:448 msgid "Path outline" msgstr "Padindicator" -#: ../src/ui/dialog/inkscape-preferences.cpp:448 +#: ../src/ui/dialog/inkscape-preferences.cpp:449 msgid "Path outline color" msgstr "Kleur padindicator" -#: ../src/ui/dialog/inkscape-preferences.cpp:449 +#: ../src/ui/dialog/inkscape-preferences.cpp:450 msgid "Selects the color used for showing the path outline" msgstr "Selecteer de kleur voor het tonen van de padindicator" -#: ../src/ui/dialog/inkscape-preferences.cpp:450 +#: ../src/ui/dialog/inkscape-preferences.cpp:451 msgid "Always show outline" msgstr "Padindicator altijd tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:451 +#: ../src/ui/dialog/inkscape-preferences.cpp:452 msgid "Show outlines for all paths, not only invisible paths" msgstr "Padindicator voor alle paden tonen, niet alleen onzichtbare paden" -#: ../src/ui/dialog/inkscape-preferences.cpp:452 +#: ../src/ui/dialog/inkscape-preferences.cpp:453 msgid "Update outline when dragging nodes" msgstr "Padindicator updaten bij het slepen van knooppunten" -#: ../src/ui/dialog/inkscape-preferences.cpp:453 +#: ../src/ui/dialog/inkscape-preferences.cpp:454 msgid "Update the outline when dragging or transforming nodes; if this is off, the outline will only update when completing a drag" msgstr "Padindicator updaten bij het slepen of transformeren van knooppunten. Indien uitgeschakeld wordt de padindicator alleen geupdated bij het beΓ«indigen van het slepen." -#: ../src/ui/dialog/inkscape-preferences.cpp:454 +#: ../src/ui/dialog/inkscape-preferences.cpp:455 msgid "Update paths when dragging nodes" msgstr "Paden updaten bij het slepen van knooppunten" -#: ../src/ui/dialog/inkscape-preferences.cpp:455 +#: ../src/ui/dialog/inkscape-preferences.cpp:456 msgid "Update paths when dragging or transforming nodes; if this is off, paths will only be updated when completing a drag" msgstr "Paden updaten bij het slepen of transformeren van knooppunten. Indien uitgeschakeld worden paden alleen geupdated bij het beΓ«indigen van het slepen." -#: ../src/ui/dialog/inkscape-preferences.cpp:456 +#: ../src/ui/dialog/inkscape-preferences.cpp:457 msgid "Show path direction on outlines" msgstr "Padrichting tonen bij de indicator" -#: ../src/ui/dialog/inkscape-preferences.cpp:457 +#: ../src/ui/dialog/inkscape-preferences.cpp:458 msgid "Visualize the direction of selected paths by drawing small arrows in the middle of each outline segment" msgstr "De richting van geselecteerde paden tonen door het tekenen van kleine peilen in het midden van elk segment van de indicator" -#: ../src/ui/dialog/inkscape-preferences.cpp:458 +#: ../src/ui/dialog/inkscape-preferences.cpp:459 msgid "Show temporary path outline" msgstr "Padindicator tijdelijk tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:459 +#: ../src/ui/dialog/inkscape-preferences.cpp:460 msgid "When hovering over a path, briefly flash its outline" msgstr "Padindicator kort tonen wanneer de muis over een pad beweegt" -#: ../src/ui/dialog/inkscape-preferences.cpp:460 +#: ../src/ui/dialog/inkscape-preferences.cpp:461 msgid "Show temporary outline for selected paths" msgstr "Padindicator voor geselecteerde paden tijdelijk tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:461 +#: ../src/ui/dialog/inkscape-preferences.cpp:462 msgid "Show temporary outline even when a path is selected for editing" msgstr "Padindicator tijdelijk tonen, zelfs wanneer een pad geselecteerd is voor bewerking" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "Flash time:" msgstr "Weergavetijd:" -#: ../src/ui/dialog/inkscape-preferences.cpp:463 +#: ../src/ui/dialog/inkscape-preferences.cpp:464 msgid "Specifies how long the path outline will be visible after a mouse-over (in milliseconds); specify 0 to have the outline shown until mouse leaves the path" msgstr "Geef aan hoelang de padindicator zichtbaar zal zijn na een mouse-over (in milliseconden). Geef 0 op om de indicator weer te geven tot de muis het pad verlaat." -#: ../src/ui/dialog/inkscape-preferences.cpp:464 +#: ../src/ui/dialog/inkscape-preferences.cpp:465 msgid "Editing preferences" msgstr "Bewerkvoorkeuren" -#: ../src/ui/dialog/inkscape-preferences.cpp:465 +#: ../src/ui/dialog/inkscape-preferences.cpp:466 msgid "Show transform handles for single nodes" msgstr "Transformatiehandvatten tonen voor afzonderlijke knooppunten" -#: ../src/ui/dialog/inkscape-preferences.cpp:466 +#: ../src/ui/dialog/inkscape-preferences.cpp:467 msgid "Show transform handles even when only a single node is selected" msgstr "Transformatiehandvatten tonen zelfs wanneer er slecht één knooppunt is geselecteerd" -#: ../src/ui/dialog/inkscape-preferences.cpp:467 +#: ../src/ui/dialog/inkscape-preferences.cpp:468 msgid "Deleting nodes preserves shape" msgstr "Knooppuntverwijdering behoudt vorm" -#: ../src/ui/dialog/inkscape-preferences.cpp:468 +#: ../src/ui/dialog/inkscape-preferences.cpp:469 msgid "Move handles next to deleted nodes to resemble original shape; hold Ctrl to get the other behavior" msgstr "Handvatten naast verwijderde knooppunten verplaatsen om de originele vorm te behouden. Druk Ctrl in om het tegenovergestelde gedrag te verkrijgen." #. Tweak -#: ../src/ui/dialog/inkscape-preferences.cpp:471 +#: ../src/ui/dialog/inkscape-preferences.cpp:472 #: ../src/verbs.cpp:2506 msgid "Tweak" msgstr "Boetseren" -#: ../src/ui/dialog/inkscape-preferences.cpp:472 +#: ../src/ui/dialog/inkscape-preferences.cpp:473 msgid "Object paint style" msgstr "Verfstijl objecten" #. Spray -#: ../src/ui/dialog/inkscape-preferences.cpp:477 +#: ../src/ui/dialog/inkscape-preferences.cpp:478 #: ../src/verbs.cpp:2508 msgid "Spray" msgstr "Verstuiven" #. Zoom -#: ../src/ui/dialog/inkscape-preferences.cpp:482 +#: ../src/ui/dialog/inkscape-preferences.cpp:483 #: ../src/verbs.cpp:2530 #: ../src/widgets/desktop-widget.cpp:493 msgid "Zoom" msgstr "Zoomen" #. Measure -#: ../src/ui/dialog/inkscape-preferences.cpp:487 +#: ../src/ui/dialog/inkscape-preferences.cpp:488 #: ../src/verbs.cpp:2532 #: ../share/extensions/measure.inx.h:6 msgid "Measure" msgstr "Meetlat" -#: ../src/ui/dialog/inkscape-preferences.cpp:489 +#: ../src/ui/dialog/inkscape-preferences.cpp:490 msgid "Ignore first and last points" msgstr "De eerste en laatste punten negeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:490 -msgid "The beggining and end of the measurement tool's control line will not be considered for calculating lengths. Only lengths between actual curve intersections will be displayed." +#: ../src/ui/dialog/inkscape-preferences.cpp:491 +msgid "The start and end of the measurement tool's control line will not be considered for calculating lengths. Only lengths between actual curve intersections will be displayed." msgstr "" #. Shapes -#: ../src/ui/dialog/inkscape-preferences.cpp:493 +#: ../src/ui/dialog/inkscape-preferences.cpp:494 msgid "Shapes" msgstr "Vormen" -#: ../src/ui/dialog/inkscape-preferences.cpp:525 +#: ../src/ui/dialog/inkscape-preferences.cpp:526 msgid "Sketch mode" msgstr "Schetsmodus" -#: ../src/ui/dialog/inkscape-preferences.cpp:527 +#: ../src/ui/dialog/inkscape-preferences.cpp:528 msgid "If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch" msgstr "Indien aangevinkt, wordt het resultaat het gemiddelde van alle gemaakte schetsen, in plaats van het het oude resultaat met de nieuwe schets uit te middelen" #. Pen -#: ../src/ui/dialog/inkscape-preferences.cpp:530 +#: ../src/ui/dialog/inkscape-preferences.cpp:531 #: ../src/ui/dialog/input.cpp:1184 #: ../src/verbs.cpp:2522 msgid "Pen" msgstr "Pen" #. Calligraphy -#: ../src/ui/dialog/inkscape-preferences.cpp:536 +#: ../src/ui/dialog/inkscape-preferences.cpp:537 #: ../src/verbs.cpp:2524 msgid "Calligraphy" msgstr "Kalligrafie" -#: ../src/ui/dialog/inkscape-preferences.cpp:540 +#: ../src/ui/dialog/inkscape-preferences.cpp:541 msgid "If on, pen width is in absolute units (px) independent of zoom; otherwise pen width depends on zoom so that it looks the same at any zoom" msgstr "Wanneer aangezet is de pendikte in absolute eenheden (px) onafhankelijk van de zoom; zoniet is deze afhankelijk van de zoom zodat het er hetzelfde uitziet bij ieder zoom" -#: ../src/ui/dialog/inkscape-preferences.cpp:542 +#: ../src/ui/dialog/inkscape-preferences.cpp:543 msgid "If on, each newly created object will be selected (deselecting previous selection)" msgstr "Indien actief, zal ieder nieuw aangemaakt object selecteren (deselecteert vorige selectie)" #. Paint Bucket -#: ../src/ui/dialog/inkscape-preferences.cpp:544 +#: ../src/ui/dialog/inkscape-preferences.cpp:545 #: ../src/verbs.cpp:2538 msgid "Paint Bucket" msgstr "Verfemmer" #. Eraser -#: ../src/ui/dialog/inkscape-preferences.cpp:549 +#: ../src/ui/dialog/inkscape-preferences.cpp:550 #: ../src/verbs.cpp:2542 msgid "Eraser" msgstr "Gom" -#: ../src/ui/dialog/inkscape-preferences.cpp:563 +#: ../src/ui/dialog/inkscape-preferences.cpp:564 msgid "Show font samples in the drop-down list" msgstr "Lettertypevoorbeelden tonen in drop-down lijst" -#: ../src/ui/dialog/inkscape-preferences.cpp:564 +#: ../src/ui/dialog/inkscape-preferences.cpp:565 msgid "Show font samples alongside font names in the drop-down list in Text bar" msgstr "Lettertypevoorbeelden tonen naast lettertypenamen in drop-down lijst in tekstbalk" #. Gradient -#: ../src/ui/dialog/inkscape-preferences.cpp:569 +#: ../src/ui/dialog/inkscape-preferences.cpp:570 #: ../src/verbs.cpp:2528 msgid "Gradient" msgstr "Kleurverloop" #. Connector -#: ../src/ui/dialog/inkscape-preferences.cpp:573 +#: ../src/ui/dialog/inkscape-preferences.cpp:574 #: ../src/verbs.cpp:2536 msgid "Connector" msgstr "Verbinding" -#: ../src/ui/dialog/inkscape-preferences.cpp:576 +#: ../src/ui/dialog/inkscape-preferences.cpp:577 msgid "If on, connector attachment points will not be shown for text objects" msgstr "Indien aangevinkt, worden verbindingspunten aan tekstobjecten niet getoond" #. Dropper -#: ../src/ui/dialog/inkscape-preferences.cpp:578 +#: ../src/ui/dialog/inkscape-preferences.cpp:579 #: ../src/verbs.cpp:2534 msgid "Dropper" msgstr "Pipet" -#: ../src/ui/dialog/inkscape-preferences.cpp:585 +#: ../src/ui/dialog/inkscape-preferences.cpp:586 msgid "Save and restore window geometry for each document" msgstr "Venstergeometrie voor elk document apart opslaan en herstellen" -#: ../src/ui/dialog/inkscape-preferences.cpp:586 +#: ../src/ui/dialog/inkscape-preferences.cpp:587 msgid "Remember and use last window's geometry" msgstr "Laatstgebruikte venstergeometrie opslaan en hergebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:587 +#: ../src/ui/dialog/inkscape-preferences.cpp:588 msgid "Don't save window geometry" msgstr "Venstergeometrie niet opslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:589 -#: ../src/ui/dialog/inkscape-preferences.cpp:609 +#: ../src/ui/dialog/inkscape-preferences.cpp:590 +#: ../src/ui/dialog/inkscape-preferences.cpp:610 msgid "Dockable" msgstr "Paneel" -#: ../src/ui/dialog/inkscape-preferences.cpp:592 +#: ../src/ui/dialog/inkscape-preferences.cpp:593 msgid "Dialogs are hidden in taskbar" msgstr "Dialogen zijn verborgen in de taakbalk" -#: ../src/ui/dialog/inkscape-preferences.cpp:593 +#: ../src/ui/dialog/inkscape-preferences.cpp:594 msgid "Zoom when window is resized" msgstr "Zoomen wanneer de venstergrootte verandert" -#: ../src/ui/dialog/inkscape-preferences.cpp:594 +#: ../src/ui/dialog/inkscape-preferences.cpp:595 msgid "Show close button on dialogs" msgstr "Sluitknop weergeven in dialogen" -#: ../src/ui/dialog/inkscape-preferences.cpp:597 +#: ../src/ui/dialog/inkscape-preferences.cpp:598 msgid "Aggressive" msgstr "Agressief" -#: ../src/ui/dialog/inkscape-preferences.cpp:599 +#: ../src/ui/dialog/inkscape-preferences.cpp:600 msgid "Saving window geometry (size and position)" msgstr "Opslaan van venstergeometrie (afmetingen en positie)" -#: ../src/ui/dialog/inkscape-preferences.cpp:601 +#: ../src/ui/dialog/inkscape-preferences.cpp:602 msgid "Let the window manager determine placement of all windows" msgstr "De vensterbeheerder de plaatsing van alle vensters laten bepalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:603 +#: ../src/ui/dialog/inkscape-preferences.cpp:604 msgid "Remember and use the last window's geometry (saves geometry to user preferences)" msgstr "De laatstgebruikte venstergeometrie onthouden en hergebruiken (slaat geometrie in gebruikersvoorkeuren op)" -#: ../src/ui/dialog/inkscape-preferences.cpp:605 +#: ../src/ui/dialog/inkscape-preferences.cpp:606 msgid "Save and restore window geometry for each document (saves geometry in the document)" msgstr "Venstergeometrie voor elk document apart opslaan en gebruiken (slaat geometrie in het document op)" -#: ../src/ui/dialog/inkscape-preferences.cpp:607 +#: ../src/ui/dialog/inkscape-preferences.cpp:608 msgid "Dialog behavior (requires restart)" msgstr "Dialooggedrag (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:614 +#: ../src/ui/dialog/inkscape-preferences.cpp:615 msgid "Dialogs on top:" msgstr "Plaatsing van dialogen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:617 +#: ../src/ui/dialog/inkscape-preferences.cpp:618 msgid "Dialogs are treated as regular windows" msgstr "Dialogen worden behandeld als normale vensters" -#: ../src/ui/dialog/inkscape-preferences.cpp:619 +#: ../src/ui/dialog/inkscape-preferences.cpp:620 msgid "Dialogs stay on top of document windows" msgstr "Dialogen blijven boven document vensters" -#: ../src/ui/dialog/inkscape-preferences.cpp:621 +#: ../src/ui/dialog/inkscape-preferences.cpp:622 msgid "Same as Normal but may work better with some window managers" msgstr "Hetzelfde als Normaal, maar kan beter werken met sommige window managers" -#: ../src/ui/dialog/inkscape-preferences.cpp:625 +#: ../src/ui/dialog/inkscape-preferences.cpp:626 msgid "Dialog Transparency" msgstr "Transparantie dialoogvenster" -#: ../src/ui/dialog/inkscape-preferences.cpp:627 +#: ../src/ui/dialog/inkscape-preferences.cpp:628 msgid "Opacity when focused:" msgstr "Ondoorzichtigheid in focus:" -#: ../src/ui/dialog/inkscape-preferences.cpp:629 +#: ../src/ui/dialog/inkscape-preferences.cpp:630 msgid "Opacity when unfocused:" msgstr "Ondoorzichtigheid niet in focus:" -#: ../src/ui/dialog/inkscape-preferences.cpp:631 +#: ../src/ui/dialog/inkscape-preferences.cpp:632 msgid "Time of opacity change animation:" msgstr "Animatieduur verandering ondoorzichtigheid:" -#: ../src/ui/dialog/inkscape-preferences.cpp:634 +#: ../src/ui/dialog/inkscape-preferences.cpp:635 msgid "Miscellaneous" msgstr "Diversen" -#: ../src/ui/dialog/inkscape-preferences.cpp:637 +#: ../src/ui/dialog/inkscape-preferences.cpp:638 msgid "Whether dialog windows are to be hidden in the window manager taskbar" msgstr "Verberg dialoogvensters in de taakbalk" -#: ../src/ui/dialog/inkscape-preferences.cpp:640 +#: ../src/ui/dialog/inkscape-preferences.cpp:641 msgid "Zoom drawing when document window is resized, to keep the same area visible (this is the default which can be changed in any window using the button above the right scrollbar)" msgstr "In- of uitzoomen wanneer het venster van grootte verandert, om het zichtbare gebied gelijk te houden (dit is de standaardinstelling; u kunt dit voor elk venster apart aanpassen met het knopje boven de rechter schuifbalk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:642 +#: ../src/ui/dialog/inkscape-preferences.cpp:643 msgid "Whether dialog windows have a close button (requires restart)" msgstr "Of dialoog vensters een knop hebben om te sluiten (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:643 +#: ../src/ui/dialog/inkscape-preferences.cpp:644 msgid "Windows" msgstr "Vensters" -#: ../src/ui/dialog/inkscape-preferences.cpp:648 +#: ../src/ui/dialog/inkscape-preferences.cpp:649 msgid "Move in parallel" msgstr "Parallel verplaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:650 +#: ../src/ui/dialog/inkscape-preferences.cpp:651 msgid "Stay unmoved" msgstr "Laten staan" -#: ../src/ui/dialog/inkscape-preferences.cpp:652 +#: ../src/ui/dialog/inkscape-preferences.cpp:653 msgid "Move according to transform" msgstr "Verplaatsen volgens transformatie" -#: ../src/ui/dialog/inkscape-preferences.cpp:654 +#: ../src/ui/dialog/inkscape-preferences.cpp:655 msgid "Are unlinked" msgstr "Ontkoppelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:656 +#: ../src/ui/dialog/inkscape-preferences.cpp:657 msgid "Are deleted" msgstr "Verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:659 +#: ../src/ui/dialog/inkscape-preferences.cpp:660 msgid "Moving original: clones and linked offsets" msgstr "Verplaatsen origineel: klonen en gekoppelde offsets" -#: ../src/ui/dialog/inkscape-preferences.cpp:661 +#: ../src/ui/dialog/inkscape-preferences.cpp:662 msgid "Clones are translated by the same vector as their original" msgstr "Klonen worden op dezelfde manier verplaatst als het origineel" -#: ../src/ui/dialog/inkscape-preferences.cpp:663 +#: ../src/ui/dialog/inkscape-preferences.cpp:664 msgid "Clones preserve their positions when their original is moved" msgstr "Klonen blijven op hun plaats staan als het origineel wordt verplaatst" -#: ../src/ui/dialog/inkscape-preferences.cpp:665 +#: ../src/ui/dialog/inkscape-preferences.cpp:666 msgid "Each clone moves according to the value of its transform= attribute; for example, a rotated clone will move in a different direction than its original" msgstr "Elke kloon verplaatst volgens zijn eigen 'transform='-waarde. Een gedraaide kloon zal bijvoorbeeld in een andere richting verplaatsen dan zijn origineel." -#: ../src/ui/dialog/inkscape-preferences.cpp:666 +#: ../src/ui/dialog/inkscape-preferences.cpp:667 msgid "Deleting original: clones" msgstr "Verwijderen origineel: klonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:668 +#: ../src/ui/dialog/inkscape-preferences.cpp:669 msgid "Orphaned clones are converted to regular objects" msgstr "Verweesde klonen worden omgezet naar normale objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:670 +#: ../src/ui/dialog/inkscape-preferences.cpp:671 msgid "Orphaned clones are deleted along with their original" msgstr "Verweesde klonen worden verwijderd samen met hun origineel" -#: ../src/ui/dialog/inkscape-preferences.cpp:672 +#: ../src/ui/dialog/inkscape-preferences.cpp:673 msgid "Duplicating original+clones/linked offset" msgstr "Dupliceren van origineel en klonen/gekoppelde offset" -#: ../src/ui/dialog/inkscape-preferences.cpp:674 +#: ../src/ui/dialog/inkscape-preferences.cpp:675 msgid "Relink duplicated clones" msgstr "Gedupliceerde klonen herlinken" -#: ../src/ui/dialog/inkscape-preferences.cpp:676 +#: ../src/ui/dialog/inkscape-preferences.cpp:677 msgid "When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original" msgstr "De gedupliceerde kloon herlinken naar het gedupliceerde origineel in plaats van het oude origineel bij het dupliceren van een selectie met zowel een kloon en zijn origineel (mogelijk voorkomend in groepen)." #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:679 +#: ../src/ui/dialog/inkscape-preferences.cpp:680 msgid "Clones" msgstr "Klonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:684 +#: ../src/ui/dialog/inkscape-preferences.cpp:685 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "Het bovenste object als afsnijpad/masker gebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:686 +#: ../src/ui/dialog/inkscape-preferences.cpp:687 msgid "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "Vink uit om het onderste object als masker of maskerpad te gebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:687 +#: ../src/ui/dialog/inkscape-preferences.cpp:688 msgid "Remove clippath/mask object after applying" msgstr "Het afsnijpad/masker verwijderen na gebruik" -#: ../src/ui/dialog/inkscape-preferences.cpp:689 +#: ../src/ui/dialog/inkscape-preferences.cpp:690 msgid "After applying, remove the object used as the clipping path or mask from the drawing" msgstr "Het object dat als afsnijpad of masker gebruikt is, verwijderen na gebruik" -#: ../src/ui/dialog/inkscape-preferences.cpp:691 +#: ../src/ui/dialog/inkscape-preferences.cpp:692 msgid "Before applying" msgstr "Voor toepassen afsnijpad/masker" -#: ../src/ui/dialog/inkscape-preferences.cpp:693 +#: ../src/ui/dialog/inkscape-preferences.cpp:694 msgid "Do not group clipped/masked objects" msgstr "Afgesneden/gemaskerde objecten niet groeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:694 +#: ../src/ui/dialog/inkscape-preferences.cpp:695 msgid "Enclose every clipped/masked object in its own group" msgstr "Elk afgesneden/gemaskerd object in zijn eigen groep plaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:695 +#: ../src/ui/dialog/inkscape-preferences.cpp:696 msgid "Put all clipped/masked objects into one group" msgstr "Alle afgesneden/gemaskerde objecte in één groep plaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:698 +#: ../src/ui/dialog/inkscape-preferences.cpp:699 msgid "Apply clippath/mask to every object" msgstr "Afsnijding/masker op elk object toepassen" -#: ../src/ui/dialog/inkscape-preferences.cpp:701 +#: ../src/ui/dialog/inkscape-preferences.cpp:702 msgid "Apply clippath/mask to groups containing single object" msgstr "Afsnijding/masker toepassen op één-object-groepen" -#: ../src/ui/dialog/inkscape-preferences.cpp:704 +#: ../src/ui/dialog/inkscape-preferences.cpp:705 msgid "Apply clippath/mask to group containing all objects" msgstr "Afsnijding/masker toepassen op groep met alle objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:706 +#: ../src/ui/dialog/inkscape-preferences.cpp:707 msgid "After releasing" msgstr "Na toepassen afsnijpad/masker" -#: ../src/ui/dialog/inkscape-preferences.cpp:708 +#: ../src/ui/dialog/inkscape-preferences.cpp:709 msgid "Ungroup automatically created groups" msgstr "Automatisch aangemaakte groepen degroeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:710 +#: ../src/ui/dialog/inkscape-preferences.cpp:711 msgid "Ungroup groups created when setting clip/mask" msgstr "Groepen gemaakt tijdens maskeren/afsnijden, degroeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:712 +#: ../src/ui/dialog/inkscape-preferences.cpp:713 msgid "Clippaths and masks" msgstr "Maskers en maskerpaden" -#: ../src/ui/dialog/inkscape-preferences.cpp:717 -#: ../src/widgets/select-toolbar.cpp:554 +#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/widgets/select-toolbar.cpp:561 msgid "Scale stroke width" msgstr "Lijndikte mee schalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:718 +#: ../src/ui/dialog/inkscape-preferences.cpp:719 msgid "Scale rounded corners in rectangles" msgstr "Afronding van hoeken mee schalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:719 +#: ../src/ui/dialog/inkscape-preferences.cpp:720 msgid "Transform gradients" msgstr "Kleurverlopen transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:720 +#: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Transform patterns" msgstr "Patronen transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:721 +#: ../src/ui/dialog/inkscape-preferences.cpp:722 msgid "Optimized" msgstr "Optimaliseren" -#: ../src/ui/dialog/inkscape-preferences.cpp:722 +#: ../src/ui/dialog/inkscape-preferences.cpp:723 msgid "Preserved" msgstr "Behouden" -#: ../src/ui/dialog/inkscape-preferences.cpp:725 -#: ../src/widgets/select-toolbar.cpp:555 +#: ../src/ui/dialog/inkscape-preferences.cpp:726 +#: ../src/widgets/select-toolbar.cpp:562 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "Wanneer objecten worden vergroot of verkleind, de lijndikte evenveel mee vergroten of verkleinen" -#: ../src/ui/dialog/inkscape-preferences.cpp:727 -#: ../src/widgets/select-toolbar.cpp:566 +#: ../src/ui/dialog/inkscape-preferences.cpp:728 +#: ../src/widgets/select-toolbar.cpp:573 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "Wanneer rechthoeken worden vergroot of verkleind, de straal van de hoek mee vergroten of verkleinen" -#: ../src/ui/dialog/inkscape-preferences.cpp:729 -#: ../src/widgets/select-toolbar.cpp:577 +#: ../src/ui/dialog/inkscape-preferences.cpp:730 +#: ../src/widgets/select-toolbar.cpp:584 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "Kleurverlopen (bij vulling of lijn) verplaatsen samen met de objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:731 -#: ../src/widgets/select-toolbar.cpp:588 +#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/widgets/select-toolbar.cpp:595 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "Patronen (bij vulling of lijn) verplaatsen samen met de objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:732 +#: ../src/ui/dialog/inkscape-preferences.cpp:733 msgid "Store transformation" msgstr "Opslaan van transformaties" -#: ../src/ui/dialog/inkscape-preferences.cpp:734 +#: ../src/ui/dialog/inkscape-preferences.cpp:735 msgid "If possible, apply transformation to objects without adding a transform= attribute" msgstr "Pas, indien mogelijk, transformaties op objecten toe zonder een 'transform='-waarde toe te voegen" -#: ../src/ui/dialog/inkscape-preferences.cpp:736 +#: ../src/ui/dialog/inkscape-preferences.cpp:737 msgid "Always store transformation as a transform= attribute on objects" msgstr "Transformaties altijd opslaan als een 'transform='-waarde bij objecten." -#: ../src/ui/dialog/inkscape-preferences.cpp:738 +#: ../src/ui/dialog/inkscape-preferences.cpp:739 msgid "Transforms" msgstr "Transformaties" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:744 -#: ../src/ui/dialog/inkscape-preferences.cpp:768 +#: ../src/ui/dialog/inkscape-preferences.cpp:745 +#: ../src/ui/dialog/inkscape-preferences.cpp:769 msgid "Best quality (slowest)" msgstr "Beste kwaliteit (traagst)" -#: ../src/ui/dialog/inkscape-preferences.cpp:746 -#: ../src/ui/dialog/inkscape-preferences.cpp:770 +#: ../src/ui/dialog/inkscape-preferences.cpp:747 +#: ../src/ui/dialog/inkscape-preferences.cpp:771 msgid "Better quality (slower)" msgstr "Betere kwaliteit (trager)" -#: ../src/ui/dialog/inkscape-preferences.cpp:748 -#: ../src/ui/dialog/inkscape-preferences.cpp:772 +#: ../src/ui/dialog/inkscape-preferences.cpp:749 +#: ../src/ui/dialog/inkscape-preferences.cpp:773 msgid "Average quality" msgstr "Gemiddelde kwaliteit" -#: ../src/ui/dialog/inkscape-preferences.cpp:750 -#: ../src/ui/dialog/inkscape-preferences.cpp:774 +#: ../src/ui/dialog/inkscape-preferences.cpp:751 +#: ../src/ui/dialog/inkscape-preferences.cpp:775 msgid "Lower quality (faster)" msgstr "Lagere kwaliteit (sneller)" -#: ../src/ui/dialog/inkscape-preferences.cpp:752 -#: ../src/ui/dialog/inkscape-preferences.cpp:776 +#: ../src/ui/dialog/inkscape-preferences.cpp:753 +#: ../src/ui/dialog/inkscape-preferences.cpp:777 msgid "Lowest quality (fastest)" msgstr "Laagste kwaliteit (snelst)" -#: ../src/ui/dialog/inkscape-preferences.cpp:755 +#: ../src/ui/dialog/inkscape-preferences.cpp:756 msgid "Gaussian blur quality for display" msgstr "Kwaliteit gaussiaanse vervagings voor weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:757 -#: ../src/ui/dialog/inkscape-preferences.cpp:781 +#: ../src/ui/dialog/inkscape-preferences.cpp:758 +#: ../src/ui/dialog/inkscape-preferences.cpp:782 msgid "Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)" msgstr "Beste kwaliteit, maar weergave kan heel langzaam zijn bij hoge zoom (bitmap-export gebruikt altijd beste kwaliteit)" -#: ../src/ui/dialog/inkscape-preferences.cpp:759 -#: ../src/ui/dialog/inkscape-preferences.cpp:783 +#: ../src/ui/dialog/inkscape-preferences.cpp:760 +#: ../src/ui/dialog/inkscape-preferences.cpp:784 msgid "Better quality, but slower display" msgstr "Betere kwaliteit, maar langzamere weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:761 -#: ../src/ui/dialog/inkscape-preferences.cpp:785 +#: ../src/ui/dialog/inkscape-preferences.cpp:762 +#: ../src/ui/dialog/inkscape-preferences.cpp:786 msgid "Average quality, acceptable display speed" msgstr "Gemiddelde kwaliteit, acceptabele weergavesnelheid" -#: ../src/ui/dialog/inkscape-preferences.cpp:763 -#: ../src/ui/dialog/inkscape-preferences.cpp:787 +#: ../src/ui/dialog/inkscape-preferences.cpp:764 +#: ../src/ui/dialog/inkscape-preferences.cpp:788 msgid "Lower quality (some artifacts), but display is faster" msgstr "Lage kwaliteit (enkele weergavefouten), maar weergave is sneller" -#: ../src/ui/dialog/inkscape-preferences.cpp:765 -#: ../src/ui/dialog/inkscape-preferences.cpp:789 +#: ../src/ui/dialog/inkscape-preferences.cpp:766 +#: ../src/ui/dialog/inkscape-preferences.cpp:790 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "Laagste kwaliteit (veel weergavefouten), maar weergave is het snelst" -#: ../src/ui/dialog/inkscape-preferences.cpp:779 +#: ../src/ui/dialog/inkscape-preferences.cpp:780 msgid "Filter effects quality for display" msgstr "Kwaliteit filtereffecten voor weergave" #. show infobox -#: ../src/ui/dialog/inkscape-preferences.cpp:792 +#: ../src/ui/dialog/inkscape-preferences.cpp:793 msgid "Show filter primitives infobox" msgstr "Infobox met filtereffecten tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:794 +#: ../src/ui/dialog/inkscape-preferences.cpp:795 msgid "Show icons and descriptions for the filter primitives available at the filter effects dialog" msgstr "Pictogrammen en omschrijvingen van de beschikbare effecten in het filtereffectenvenster tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 msgid "Number of Threads:" msgstr "Aantal threads:" -#: ../src/ui/dialog/inkscape-preferences.cpp:798 -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "(requires restart)" msgstr "(vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:799 +#: ../src/ui/dialog/inkscape-preferences.cpp:800 msgid "Configure number of processors/threads to use with rendering of gaussian blur" msgstr "Het aantal te gebruiken processors/threads bij het renderen van gaussiaanse vervaging" # De volgende zes strings beschrijven wat enkele toetsen doen. # Een kleine letter maakt duidelijker dat ze een voortzetting zijn. -#: ../src/ui/dialog/inkscape-preferences.cpp:807 +#: ../src/ui/dialog/inkscape-preferences.cpp:808 msgid "Select in all layers" msgstr "In alle lagen selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:808 +#: ../src/ui/dialog/inkscape-preferences.cpp:809 msgid "Select only within current layer" msgstr "Alleen binnen de huidige laag selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:809 +#: ../src/ui/dialog/inkscape-preferences.cpp:810 msgid "Select in current layer and sublayers" msgstr "In huidige laag en onderliggende lagen selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:810 +#: ../src/ui/dialog/inkscape-preferences.cpp:811 msgid "Ignore hidden objects and layers" msgstr "Verborgen objecten en lagen negeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:811 +#: ../src/ui/dialog/inkscape-preferences.cpp:812 msgid "Ignore locked objects and layers" msgstr "Vergrendelde objecten en lagen negeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:812 +#: ../src/ui/dialog/inkscape-preferences.cpp:813 msgid "Deselect upon layer change" msgstr "Deselecteren bij veranderen van laag" # Dit staat voor de vorige zes strings. -#: ../src/ui/dialog/inkscape-preferences.cpp:814 +#: ../src/ui/dialog/inkscape-preferences.cpp:815 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "Ctrl+A, Tab, Shift+Tab" -#: ../src/ui/dialog/inkscape-preferences.cpp:816 +#: ../src/ui/dialog/inkscape-preferences.cpp:817 msgid "Make keyboard selection commands work on objects in all layers" msgstr "Toetsenbordselectiecommando's werken op objecten in alle lagen" -#: ../src/ui/dialog/inkscape-preferences.cpp:818 +#: ../src/ui/dialog/inkscape-preferences.cpp:819 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "Toetsenbordselectiecommando's werken alleen op objecten in de huidige laag" -#: ../src/ui/dialog/inkscape-preferences.cpp:820 +#: ../src/ui/dialog/inkscape-preferences.cpp:821 msgid "Make keyboard selection commands work on objects in current layer and all its sublayers" msgstr "Toetsenbordselectiecommando's werken op objecten in de huidige laag en alle onderliggende lagen" -#: ../src/ui/dialog/inkscape-preferences.cpp:822 +#: ../src/ui/dialog/inkscape-preferences.cpp:823 msgid "Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)" msgstr "Deselecteer om objecten te kunnen selecteren die verborgen zijn (zelf verborgen of doordat ze in een verborgen laag zitten)" -#: ../src/ui/dialog/inkscape-preferences.cpp:824 +#: ../src/ui/dialog/inkscape-preferences.cpp:825 msgid "Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)" msgstr "Deselecteer om objecten te kunnen selecteren die vergrendeld zijn (zelf vergrendeld of doordat ze in een vergrendelde laag zitten)" -#: ../src/ui/dialog/inkscape-preferences.cpp:827 +#: ../src/ui/dialog/inkscape-preferences.cpp:828 msgid "Uncheck this to be able to keep the current objects selected when the current layer changes" msgstr "Deselecteer om geselecteerde objecten geselecteerd te houden als de huidige laag verandert" -#: ../src/ui/dialog/inkscape-preferences.cpp:829 +#: ../src/ui/dialog/inkscape-preferences.cpp:830 msgid "Selecting" msgstr "Selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:836 +#: ../src/ui/dialog/inkscape-preferences.cpp:837 msgid "Default export resolution:" msgstr "Standaardresolutie voor exporteren:" -#: ../src/ui/dialog/inkscape-preferences.cpp:837 +#: ../src/ui/dialog/inkscape-preferences.cpp:838 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "Standaardresolutie voor bitmaps (in punten per inch) in het 'Bitmap exporteren'-dialoogvenster" -#: ../src/ui/dialog/inkscape-preferences.cpp:839 +#: ../src/ui/dialog/inkscape-preferences.cpp:840 msgid "Open Clip Art Library Server Name:" msgstr "'Open Clip Art'-mediatheekservernaam:" -#: ../src/ui/dialog/inkscape-preferences.cpp:840 +#: ../src/ui/dialog/inkscape-preferences.cpp:841 msgid "The server name of the Open Clip Art Library webdav server; it's used by the Import and Export to OCAL function" msgstr "De servernaam van de weddav-server van de 'Open Clip Art'-mediatheek: deze wordt gebruikt bij het importeren uit en exporteren naar OCAL" -#: ../src/ui/dialog/inkscape-preferences.cpp:842 +#: ../src/ui/dialog/inkscape-preferences.cpp:843 msgid "Open Clip Art Library Username:" msgstr "'Open Clip Art'-gebruikersnaam:" -#: ../src/ui/dialog/inkscape-preferences.cpp:843 +#: ../src/ui/dialog/inkscape-preferences.cpp:844 msgid "The username used to log into Open Clip Art Library" msgstr "De gebruikersnaam om in te loggen in de 'Open Clip Art'-mediatheek" -#: ../src/ui/dialog/inkscape-preferences.cpp:845 +#: ../src/ui/dialog/inkscape-preferences.cpp:846 msgid "Open Clip Art Library Password:" msgstr "'Open Clip Art'-wachtwoord:" -#: ../src/ui/dialog/inkscape-preferences.cpp:846 +#: ../src/ui/dialog/inkscape-preferences.cpp:847 msgid "The password used to log into Open Clip Art Library" msgstr "Het wachtwoord om in te loggen in de 'Open Clip Art'-mediatheek" -#: ../src/ui/dialog/inkscape-preferences.cpp:848 +#: ../src/ui/dialog/inkscape-preferences.cpp:849 msgid "Import/Export" msgstr "Importeren/exporteren" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Perceptual" msgstr "Perceptueel" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Relative Colorimetric" msgstr "Relatief colorimetrisch" -#: ../src/ui/dialog/inkscape-preferences.cpp:898 +#: ../src/ui/dialog/inkscape-preferences.cpp:899 msgid "Absolute Colorimetric" msgstr "Absoluut colorimetrisch" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:903 msgid "(Note: Color management has been disabled in this build)" msgstr "(Opmerking: kleurbeheer is niet beschikbaar in deze versie.)" -#: ../src/ui/dialog/inkscape-preferences.cpp:906 +#: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Display adjustment" msgstr "Weergavebijstelling" -#: ../src/ui/dialog/inkscape-preferences.cpp:916 +#: ../src/ui/dialog/inkscape-preferences.cpp:917 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" @@ -16035,813 +16245,813 @@ msgstr "" "Te ICC-kleurprofiel gebruiken om schermuitvoer te kalibreren.\n" "Doorzochte mappen: %s" -#: ../src/ui/dialog/inkscape-preferences.cpp:917 +#: ../src/ui/dialog/inkscape-preferences.cpp:918 msgid "Display profile:" msgstr "Weergaveprofiel:" -#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Retrieve profile from display" msgstr "Profiel uit weergaveapparaat ophalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "Verkrijg profielen van die verbonden aan weergaveapparaten via XICC" -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Retrieve profiles from those attached to displays" msgstr "Verkrijg profielen van die verbonden aan weergaveapparaten" -#: ../src/ui/dialog/inkscape-preferences.cpp:932 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Display rendering intent:" msgstr "Rendermethode voor weergave:" -#: ../src/ui/dialog/inkscape-preferences.cpp:933 +#: ../src/ui/dialog/inkscape-preferences.cpp:934 msgid "The rendering intent to use to calibrate display output" msgstr "De rendermethode die gebruikt moet worden voor het kalibreren van de weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:935 +#: ../src/ui/dialog/inkscape-preferences.cpp:936 msgid "Proofing" msgstr "Visuele controle" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:938 msgid "Simulate output on screen" msgstr "Uitvoer op scherm simuleren" -#: ../src/ui/dialog/inkscape-preferences.cpp:939 +#: ../src/ui/dialog/inkscape-preferences.cpp:940 msgid "Simulates output of target device" msgstr "Simuleert de uitvoer van het doelapparaat" -#: ../src/ui/dialog/inkscape-preferences.cpp:941 +#: ../src/ui/dialog/inkscape-preferences.cpp:942 msgid "Mark out of gamut colors" msgstr "Kleuren die buiten bereik vallen markeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:943 +#: ../src/ui/dialog/inkscape-preferences.cpp:944 msgid "Highlights colors that are out of gamut for the target device" msgstr "Markeert kleuren die buiten het bereik van het doelapparaat liggen" -#: ../src/ui/dialog/inkscape-preferences.cpp:948 +#: ../src/ui/dialog/inkscape-preferences.cpp:949 msgid "Out of gamut warning color:" msgstr "Buitenbereikwaarschuwingskleur:" -#: ../src/ui/dialog/inkscape-preferences.cpp:949 +#: ../src/ui/dialog/inkscape-preferences.cpp:950 msgid "Selects the color used for out of gamut warning" msgstr "Selecteert de kleur die voor de buitenbereikwaarschuwing gebruikt wordt" -#: ../src/ui/dialog/inkscape-preferences.cpp:951 +#: ../src/ui/dialog/inkscape-preferences.cpp:952 msgid "Device profile:" msgstr "Apparaatprofiel:" -#: ../src/ui/dialog/inkscape-preferences.cpp:952 +#: ../src/ui/dialog/inkscape-preferences.cpp:953 msgid "The ICC profile to use to simulate device output" msgstr "ICC-profiel om apparaatuitvoer mee te simuleren" -#: ../src/ui/dialog/inkscape-preferences.cpp:955 +#: ../src/ui/dialog/inkscape-preferences.cpp:956 msgid "Device rendering intent:" msgstr "Rendermethode voor apparaat:" -#: ../src/ui/dialog/inkscape-preferences.cpp:956 +#: ../src/ui/dialog/inkscape-preferences.cpp:957 msgid "The rendering intent to use to calibrate device output" msgstr "De te gebruiken rendermethode voor het kalibreren van de apparaatuitvoer" -#: ../src/ui/dialog/inkscape-preferences.cpp:958 +#: ../src/ui/dialog/inkscape-preferences.cpp:959 msgid "Black point compensation" msgstr "Zwartpuntcompensatie" -#: ../src/ui/dialog/inkscape-preferences.cpp:960 +#: ../src/ui/dialog/inkscape-preferences.cpp:961 msgid "Enables black point compensation" msgstr "Zwartpuntcompensatie inschakelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:962 +#: ../src/ui/dialog/inkscape-preferences.cpp:963 msgid "Preserve black" msgstr "Zwart behouden" -#: ../src/ui/dialog/inkscape-preferences.cpp:967 +#: ../src/ui/dialog/inkscape-preferences.cpp:968 msgid "(LittleCMS 1.15 or later required)" msgstr "(LittleCMS 1.15 of nieuwer is vereist)" -#: ../src/ui/dialog/inkscape-preferences.cpp:969 +#: ../src/ui/dialog/inkscape-preferences.cpp:970 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "K-kanaal behouden in CMYK->CMYK-transformaties" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 -#: ../src/widgets/sp-color-icc-selector.cpp:297 -#: ../src/widgets/sp-color-icc-selector.cpp:570 +#: ../src/ui/dialog/inkscape-preferences.cpp:983 +#: ../src/widgets/sp-color-icc-selector.cpp:304 +#: ../src/widgets/sp-color-icc-selector.cpp:577 msgid "<none>" msgstr "<geen>" -#: ../src/ui/dialog/inkscape-preferences.cpp:1027 +#: ../src/ui/dialog/inkscape-preferences.cpp:1028 msgid "Color management" msgstr "Kleurbeheer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1032 +#: ../src/ui/dialog/inkscape-preferences.cpp:1033 msgid "Major grid line emphasizing" msgstr "Hoofdrasterlijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1034 +#: ../src/ui/dialog/inkscape-preferences.cpp:1035 msgid "Don't emphasize gridlines when zoomed out" msgstr "Hoofdrasterlijnen niet benadrukken wanneer uitgezoomd" -#: ../src/ui/dialog/inkscape-preferences.cpp:1035 +#: ../src/ui/dialog/inkscape-preferences.cpp:1036 msgid "If set and zoomed out, the gridlines will be shown in normal color instead of major grid line color" msgstr "Indien aangevinkt en er is uitgezoomd, dan worden rasterlijnen in de normale kleur getoond in plaats van in de hoofdrasterlijnkleur" -#: ../src/ui/dialog/inkscape-preferences.cpp:1037 +#: ../src/ui/dialog/inkscape-preferences.cpp:1038 msgid "Default grid settings" msgstr "Standaard rasterinstellingen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1043 -#: ../src/ui/dialog/inkscape-preferences.cpp:1064 +#: ../src/ui/dialog/inkscape-preferences.cpp:1044 +#: ../src/ui/dialog/inkscape-preferences.cpp:1065 msgid "Grid units:" msgstr "Rastereenheid:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1046 -#: ../src/ui/dialog/inkscape-preferences.cpp:1067 +#: ../src/ui/dialog/inkscape-preferences.cpp:1047 +#: ../src/ui/dialog/inkscape-preferences.cpp:1068 msgid "Origin X:" msgstr "X-oorsprong:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1047 -#: ../src/ui/dialog/inkscape-preferences.cpp:1068 +#: ../src/ui/dialog/inkscape-preferences.cpp:1048 +#: ../src/ui/dialog/inkscape-preferences.cpp:1069 msgid "Origin Y:" msgstr "Y-oorsprong:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1050 +#: ../src/ui/dialog/inkscape-preferences.cpp:1051 msgid "Spacing X:" msgstr "Afstand X:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1051 -#: ../src/ui/dialog/inkscape-preferences.cpp:1070 +#: ../src/ui/dialog/inkscape-preferences.cpp:1052 +#: ../src/ui/dialog/inkscape-preferences.cpp:1071 msgid "Spacing Y:" msgstr "Afstand Y:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1053 #: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1075 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Grid line color:" msgstr "Kleur van rasterlijnen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1054 -#: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1055 +#: ../src/ui/dialog/inkscape-preferences.cpp:1077 msgid "Color used for normal grid lines" msgstr "Kleur voor normale rasterlijnen." -#: ../src/ui/dialog/inkscape-preferences.cpp:1055 #: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1077 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 #: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Major grid line color:" msgstr "Kleur van hoofdrasterlijnen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1056 -#: ../src/ui/dialog/inkscape-preferences.cpp:1078 +#: ../src/ui/dialog/inkscape-preferences.cpp:1057 +#: ../src/ui/dialog/inkscape-preferences.cpp:1079 msgid "Color used for major (highlighted) grid lines" msgstr "Kleur van de (geselecteerde) hoofdrasterlijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1058 -#: ../src/ui/dialog/inkscape-preferences.cpp:1080 +#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1081 msgid "Major grid line every:" msgstr "Hoofdrasterlijn elke:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1059 +#: ../src/ui/dialog/inkscape-preferences.cpp:1060 msgid "Show dots instead of lines" msgstr "Punten tonen in plaats van lijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1060 +#: ../src/ui/dialog/inkscape-preferences.cpp:1061 msgid "If set, display dots at gridpoints instead of gridlines" msgstr "Indien aangevinkt, worden punten getoond op rasterpunten in plaats van rasterlijnen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1087 +#: ../src/ui/dialog/inkscape-preferences.cpp:1088 msgid "Use named colors" msgstr "Kleurnamen gebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1089 msgid "If set, write the CSS name of the color when available (e.g. 'red' or 'magenta') instead of the numeric value" msgstr "Indien aangevinkt, wordt de CSS-naam van een kleur, indien beschikbaar, weggeschreven (vb. 'rood' of 'magenta') in plaats van de numerieke waarde" -#: ../src/ui/dialog/inkscape-preferences.cpp:1090 +#: ../src/ui/dialog/inkscape-preferences.cpp:1091 msgid "XML formatting" msgstr "XML-formattering" -#: ../src/ui/dialog/inkscape-preferences.cpp:1092 +#: ../src/ui/dialog/inkscape-preferences.cpp:1093 msgid "Inline attributes" msgstr "Inline attributen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1093 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "Put attributes on the same line as the element tag" msgstr "Attributen op dezelfde lijn als de element-tag plaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "Indent, spaces:" msgstr "Inspringen, spaties:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1096 +#: ../src/ui/dialog/inkscape-preferences.cpp:1097 msgid "The number of spaces to use for indenting nested elements; set to 0 for no indentation" msgstr "Het aantal spaties dat gebruikt wordt voor het inspringen van geneste elementen; geef 0 op voor geen inspringing" -#: ../src/ui/dialog/inkscape-preferences.cpp:1098 +#: ../src/ui/dialog/inkscape-preferences.cpp:1099 msgid "Path data" msgstr "Data pad" -#: ../src/ui/dialog/inkscape-preferences.cpp:1100 +#: ../src/ui/dialog/inkscape-preferences.cpp:1101 msgid "Allow relative coordinates" msgstr "Relatieve coΓ¶rdinaten toestaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1101 +#: ../src/ui/dialog/inkscape-preferences.cpp:1102 msgid "If set, relative coordinates may be used in path data" msgstr "Indien aangevinkt, kunnen relatieve coΓ¶rdinaten gebruikt worden in paddata" -#: ../src/ui/dialog/inkscape-preferences.cpp:1103 +#: ../src/ui/dialog/inkscape-preferences.cpp:1104 msgid "Force repeat commands" msgstr "Herhaalcommando's forceren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1104 +#: ../src/ui/dialog/inkscape-preferences.cpp:1105 msgid "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')" msgstr "Herhaling van hetzelfde padcommando forceren (bijvoorbeeld 'L 1,2 L 3,4' in plaats van 'L 1,2 3,4')" -#: ../src/ui/dialog/inkscape-preferences.cpp:1106 +#: ../src/ui/dialog/inkscape-preferences.cpp:1107 msgid "Numbers" msgstr "Getallen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Numeric precision:" msgstr "Numerieke precisie:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1110 msgid "Significant figures of the values written to the SVG file" msgstr "Significante cijfers van waarden weggeschreven in SVG-bestand" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "Minimum exponent:" msgstr "Minimum exponent:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero" msgstr "Het kleinste getal dat naar SVG weggeschreven wordt is 10 tot deze macht. Alles wat kleiner is, wordt weggeschreven als nul." -#: ../src/ui/dialog/inkscape-preferences.cpp:1114 +#: ../src/ui/dialog/inkscape-preferences.cpp:1115 msgid "SVG output" msgstr "SVG-uitvoer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "System default" msgstr "Systeemstandaard" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Albanian (sq)" msgstr "Albanees (sq)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Amharic (am)" msgstr "Amhaars (am)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Arabic (ar)" msgstr "Arabisch (ar)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Armenian (hy)" msgstr "Armeens (hy)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Azerbaijani (az)" msgstr "Azerbeidzjaans (az)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Basque (eu)" msgstr "Baskisch (eu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1119 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "Belarusian (be)" msgstr "Wit-Russisch (be)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bulgarian (bg)" msgstr "Bulgaars (bg)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Bengali (bn)" msgstr "Bengaals (bn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Breton (br)" msgstr "Bretoens (br)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Catalan (ca)" msgstr "Catalaans (ca)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Valencian Catalan (ca@valencia)" msgstr "Catalaans/Valencia (ca@valencia)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1120 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Chinese/China (zh_CN)" msgstr "Chinees/China (zh_CN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Chinese/Taiwan (zh_TW)" msgstr "Chinees/Taiwan (zh_TW)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Croatian (hr)" msgstr "Kroatisch (hr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1121 +#: ../src/ui/dialog/inkscape-preferences.cpp:1122 msgid "Czech (cs)" msgstr "Tsjechisch (cs)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Danish (da)" msgstr "Deens (da)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dutch (nl)" msgstr "Nederlands (nl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Dzongkha (dz)" msgstr "Dzongkha (dz)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "German (de)" msgstr "Duits (de)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "Greek (el)" msgstr "Grieks (el)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English (en)" msgstr "English (en)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1123 msgid "English/Australia (en_AU)" msgstr "Engels/AustraliΓ« (en_AU)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Canada (en_CA)" msgstr "Engels/Canada (en_CA)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "English/Great Britain (en_GB)" msgstr "Engels/Groot-BrittanniΓ« (en_GB)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1123 +#: ../src/ui/dialog/inkscape-preferences.cpp:1124 msgid "Pig Latin (en_US@piglatin)" msgstr "Pig Latin (en_US@piglatin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Esperanto (eo)" msgstr "Esperanto (eo)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Estonian (et)" msgstr "Ests (et)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Farsi (fa)" msgstr "Perzisch (fa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1124 +#: ../src/ui/dialog/inkscape-preferences.cpp:1125 msgid "Finnish (fi)" msgstr "Fins (fi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "French (fr)" msgstr "Frans (fr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Irish (ga)" msgstr "Iers (ga)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Galician (gl)" msgstr "Galisisch (gl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hebrew (he)" msgstr "Hebreeuws (he)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1125 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Hungarian (hu)" msgstr "Hongaars (hu)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Indonesian (id)" msgstr "Indonesisch (id)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Italian (it)" msgstr "Italiaans (it)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Japanese (ja)" msgstr "Japans (ja)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Khmer (km)" msgstr "Khmer (km)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Kinyarwanda (rw)" msgstr "Rwandees (rw)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Korean (ko)" msgstr "Koreaans (ko)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Lithuanian (lt)" msgstr "Litouws (lt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1127 msgid "Macedonian (mk)" msgstr "Macedonisch (mk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Mongolian (mn)" msgstr "Mongools (mn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Nepali (ne)" msgstr "Nepalees (ne)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian BokmΓ¥l (nb)" msgstr "Noors BokmΓ¥l (nb)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Norwegian Nynorsk (nn)" msgstr "Noors Nynorsk (nn)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1128 msgid "Panjabi (pa)" msgstr "Punjabi (pa)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Polish (pl)" msgstr "Pools (pl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese (pt)" msgstr "Portugees (pt)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Portuguese/Brazil (pt_BR)" msgstr "Portugees/BrazilliΓ« (pt_BR)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Romanian (ro)" msgstr "Roemeens (ro)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1128 +#: ../src/ui/dialog/inkscape-preferences.cpp:1129 msgid "Russian (ru)" msgstr "Russisch (ru)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian (sr)" msgstr "Servisch (sr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Serbian in Latin script (sr@latin)" msgstr "Servisch in Latijnse karakters (sr@latin)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovak (sk)" msgstr "Slowaaks (sk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Slovenian (sl)" msgstr "Sloveens (sl)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish (es)" msgstr "Spaans (es)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "Spanish/Mexico (es_MX)" msgstr "Spaans/Mexico (es_MX)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Swedish (sv)" msgstr "Zweeds (sv)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Telugu (te_IN)" msgstr "Telugu (te_IN)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Thai (th)" msgstr "Thai (th)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Turkish (tr)" msgstr "Turks (tr)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Ukrainian (uk)" msgstr "OekraΓ―ens (uk)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "Vietnamese (vi)" msgstr "Vietnamees (vi)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1163 msgid "Language (requires restart):" msgstr "Taal (vereist herstart):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1163 +#: ../src/ui/dialog/inkscape-preferences.cpp:1164 msgid "Set the language for menus and number formats" msgstr "De taal voor menus en nummerformaten instellen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Large" msgstr "Groot" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Small" msgstr "Klein" -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Smaller" msgstr "Kleiner" -#: ../src/ui/dialog/inkscape-preferences.cpp:1169 +#: ../src/ui/dialog/inkscape-preferences.cpp:1170 msgid "Toolbox icon size:" msgstr "Pictogramgrootte gereedschappenbalk:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Set the size for the tool icons (requires restart)" msgstr "De pictogramgrootte van de gereedschappenbalk instellen (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +#: ../src/ui/dialog/inkscape-preferences.cpp:1174 msgid "Control bar icon size:" msgstr "Pictogramgrootte opdrachtenbalk:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1174 +#: ../src/ui/dialog/inkscape-preferences.cpp:1175 msgid "Set the size for the icons in tools' control bars to use (requires restart)" msgstr "De pictogramgrootte van de opdrachtenbalk instellen (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/ui/dialog/inkscape-preferences.cpp:1178 msgid "Secondary toolbar icon size:" msgstr "Pictogramgrootte secundaire gereedschappenbalk:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1178 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 msgid "Set the size for the icons in secondary toolbars to use (requires restart)" msgstr "De pictogramgrootte van de gereedschappenbalk instellen (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/ui/dialog/inkscape-preferences.cpp:1182 msgid "Work-around color sliders not drawing" msgstr "Fix voor het niet tonen van kleurschuifbalken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 msgid "When on, will attempt to work around bugs in certain GTK themes drawing color sliders" msgstr "Indien aangevinkt, zal er getracht worden om bugs bij het tonen van kleurschuifbalken in bepaalde GTK thema's te omzeilen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1189 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 msgid "Clear list" msgstr "Lijst leegmaken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "Maximum documents in Open Recent:" msgstr "Maximum aantal recente bestanden:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1195 +#: ../src/ui/dialog/inkscape-preferences.cpp:1196 msgid "Set the maximum length of the Open Recent list in the File menu, or clear the list" msgstr "Het maximum aantal bestandsnamen in 'Recente bestanden' in het 'Bestand'-menu instellen of de lijst leegmaken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1199 msgid "Zoom correction factor (in %):" msgstr "Correctiefactor zoomen (%):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 +#: ../src/ui/dialog/inkscape-preferences.cpp:1200 msgid "Adjust the slider until the length of the ruler on your screen matches its real length. This information is used when zooming to 1:1, 1:2, etc., to display objects in their true sizes" msgstr "Pas de schuifbalk aan tot de lengte van de meetlat op het scherm overeenkomt met de werkelijke lengte. Deze informatie wordt gebruikt bij het 1:1, 1:2, etc. zoomen om objecten op ware grootte te tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Enable dynamic relayout for incomplete sections" msgstr "Dynamische layout voor onvolledige secties inschakelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "When on, will allow dynamic layout of components that are not completely finished being refactored" msgstr "Indien aangevinkt, wordt dynamische layout geactiveerd van niet volledig voltooide componenten." -#: ../src/ui/dialog/inkscape-preferences.cpp:1207 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "Interface" msgstr "Interface" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +#: ../src/ui/dialog/inkscape-preferences.cpp:1214 msgid "Use current directory for \"Save As ...\"" msgstr "Huidige directory gebruiken voor \"Opslaan als...\"" -#: ../src/ui/dialog/inkscape-preferences.cpp:1215 +#: ../src/ui/dialog/inkscape-preferences.cpp:1216 msgid "When this option is on, the \"Save as...\" and \"Save a Copy\" dialogs will always open in the directory where the currently open document is; when it's off, each will open in the directory where you last saved a file using it" msgstr "Indien aangevinkt, openen \"Opslaan als\" en \"Kopie opslaan als\" altijd in de directory waar het huidig geopende document zich bevindt. Indien niet geselecteerd openen de dialoogvensters in de directory waar je laatst een bestand bewaarde met dat venster." #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1220 msgid "Enable autosave (requires restart)" msgstr "Auto-opslaan inschakelen (vereist herstart):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1220 +#: ../src/ui/dialog/inkscape-preferences.cpp:1221 msgid "Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash" msgstr "Huidig(e) document(en) automatisch opslaan na een gegeven interval om verlies te beperken bij een crash" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes):" msgstr "Interval (in minuten):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "Interval (in minutes) at which document will be autosaved" msgstr "Interval (in minuten) waarna het document automatisch opgeslagen wordt" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgctxt "Filesystem" msgid "Path:" msgstr "Pad:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1224 +#: ../src/ui/dialog/inkscape-preferences.cpp:1225 msgid "The directory where autosaves will be written" msgstr "De map waar automatisch opgeslagen documenten bewaard worden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Maximum number of autosaves:" msgstr "Maximum aantal auto-bewaringen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1226 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Maximum number of autosaved files; use this to limit the storage space used" msgstr "Maximum aantal automatisch opgeslagen bestanden; gebruik deze instelling om de ingenomen opslagruimte te beperken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "2x2" msgstr "2x2" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "4x4" msgstr "4x4" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "8x8" msgstr "8x8" -#: ../src/ui/dialog/inkscape-preferences.cpp:1248 +#: ../src/ui/dialog/inkscape-preferences.cpp:1249 msgid "16x16" msgstr "16x16" -#: ../src/ui/dialog/inkscape-preferences.cpp:1252 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "Oversample bitmaps:" msgstr "Bitmaps oversampelen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 +#: ../src/ui/dialog/inkscape-preferences.cpp:1256 msgid "Automatically reload bitmaps" msgstr "Bitmaps automatisch herladen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1257 +#: ../src/ui/dialog/inkscape-preferences.cpp:1258 msgid "Automatically reload linked images when file is changed on disk" msgstr "Gelinkte afbeeldingen automatisch herladen wanneer het bestand op de schijf gewijzigd is" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1260 msgid "Bitmap editor:" msgstr "Bitmap editor:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:1262 msgid "Resolution for Create Bitmap Copy:" msgstr "Resolutie voor het maken van een bitmap-kopie:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1262 +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 msgid "Resolution used by the Create Bitmap Copy command" msgstr "Resolutie gebruikt voor het commando Bitmap-kopie Aanmaken:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1264 +#: ../src/ui/dialog/inkscape-preferences.cpp:1265 msgid "Bitmaps" msgstr "Bitmappen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1317 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Set the main spell check language" msgstr "De hoofdtaal voor spellingscontrole instellen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1320 +#: ../src/ui/dialog/inkscape-preferences.cpp:1321 msgid "Second language:" msgstr "Tweede taal:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Set the second spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "De tweede taal voor spellingscontrole instellen; controle zal enkel stoppen bij niet-bekende woorden in ALLE gekozen talen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1324 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Third language:" msgstr "Derde taal:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1325 +#: ../src/ui/dialog/inkscape-preferences.cpp:1326 msgid "Set the third spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "De derde taal voor spellingscontrole instellen; controle zal enkel stoppen bij niet-bekende woorden in ALLE gekozen talen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1327 +#: ../src/ui/dialog/inkscape-preferences.cpp:1328 msgid "Ignore words with digits" msgstr "Woorden met cijfers overslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1329 +#: ../src/ui/dialog/inkscape-preferences.cpp:1330 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "Woorden met cijfers overslaan, bijvoorbeeld \"R2D2\"" -#: ../src/ui/dialog/inkscape-preferences.cpp:1331 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Ignore words in ALL CAPITALS" msgstr "Woorden in HOOFDLETTERS overslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1333 +#: ../src/ui/dialog/inkscape-preferences.cpp:1334 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "Woorden in hoofdletters overslaan, bijvoorbeeld \"IUPAC\"" -#: ../src/ui/dialog/inkscape-preferences.cpp:1335 +#: ../src/ui/dialog/inkscape-preferences.cpp:1336 msgid "Spellcheck" msgstr "Spellingscontrole" -#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +#: ../src/ui/dialog/inkscape-preferences.cpp:1355 msgid "Add label comments to printing output" msgstr "Commentaarvelden toevoegen aan printeruitvoer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1357 msgid "When on, a comment will be added to the raw print output, marking the rendered output for an object with its label" msgstr "Wanneer geselecteerd zal commentaar worden toegevoegd aan de afdruk, waar het label van een object in staat vermeld." -#: ../src/ui/dialog/inkscape-preferences.cpp:1358 +#: ../src/ui/dialog/inkscape-preferences.cpp:1359 msgid "Prevent sharing of gradient definitions" msgstr "Het delen van kleurverloopdefinities voorkomen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1360 +#: ../src/ui/dialog/inkscape-preferences.cpp:1361 msgid "When on, shared gradient definitions are automatically forked on change; uncheck to allow sharing of gradient definitions so that editing one object may affect other objects using the same gradient" msgstr "Indien aangevinkt, worden gedeelde kleurverloopdefinities bij veranderingen automatisch opgesplitst; schakel dit uit als het bewerken van een object andere objecten die dezelfde kleurverloopdefinitie gebruiken mag beΓ―nvloeden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1363 +#: ../src/ui/dialog/inkscape-preferences.cpp:1364 msgid "Simplification threshold:" msgstr "Grenswaarde voor vereenvoudiging:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1364 +#: ../src/ui/dialog/inkscape-preferences.cpp:1365 msgid "How strong is the Node tool's Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold." msgstr "De standaardsterkte van de 'Vereenvoudigen'-opdracht. Als u deze opdracht enkele malen vlak na elkaar uitvoert, zal dat steeds meer effect hebben; uitvoeren na een korte pauze herstelt de standaard grenswaarde." -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 +#: ../src/ui/dialog/inkscape-preferences.cpp:1368 msgid "Latency skew:" msgstr "Aanpassing vertraging:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1368 +#: ../src/ui/dialog/inkscape-preferences.cpp:1369 msgid "Factor by which the event clock is skewed from the actual time (0.9766 on some systems)" msgstr "Factor waarmee de tijd van een gebeurtenis wordt aangepast ten opzichte van de actuele tijd (0,9766 op sommige systemen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1370 +#: ../src/ui/dialog/inkscape-preferences.cpp:1371 msgid "Pre-render named icons" msgstr "Pictogram met naam pre-renderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1372 +#: ../src/ui/dialog/inkscape-preferences.cpp:1373 msgid "When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification" msgstr "Indien aangevinkt, worden pictogrammen met een naam gerenderd voor het tonen van de interface. Dit wordt gebruikt om bugs op te vangen bij GTK+ benoemde pictogrammeldingen" #. TRANSLATORS: following strings are paths in Inkscape preferences - Misc - System info -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 +#: ../src/ui/dialog/inkscape-preferences.cpp:1379 msgid "User config: " msgstr "Instellingen gebruiker: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1382 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 msgid "User data: " msgstr "Data gebruiker: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1386 +#: ../src/ui/dialog/inkscape-preferences.cpp:1387 msgid "User cache: " msgstr "Cache gebruiker: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1390 +#: ../src/ui/dialog/inkscape-preferences.cpp:1391 msgid "System config: " msgstr "Systeeminstellingen: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1393 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 msgid "System data: " msgstr "Systeemdata: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1397 msgid "PIXMAP: " msgstr "PIXMAP: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1401 msgid "DATA: " msgstr "DATA: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "UI: " msgstr "UI: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1413 +#: ../src/ui/dialog/inkscape-preferences.cpp:1414 msgid "Icon theme: " msgstr "Pictogramthema: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "System info" msgstr "Systeeminfo" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1429 msgid "General system information" msgstr "Algemene systeeminformatie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1430 +#: ../src/ui/dialog/inkscape-preferences.cpp:1431 msgid "Misc" msgstr "Overig" @@ -17584,8 +17794,8 @@ msgstr "Meerdere scans: een groep van paden maken" #. # end multiple scan #. ## end mode page #: ../src/ui/dialog/tracedialog.cpp:563 -#: ../src/widgets/toolbox.cpp:4472 -#: ../src/widgets/toolbox.cpp:4736 +#: ../src/widgets/toolbox.cpp:4520 +#: ../src/widgets/toolbox.cpp:4778 msgid "Mode" msgstr "Modus" @@ -17631,37 +17841,6 @@ msgstr "Verhoog dit om het aantal knooppunten in de overtrek te verkleinen door msgid "Tolerance:" msgstr "Tolerantie:" -#. ## end option page -#: ../src/ui/dialog/tracedialog.cpp:617 -#: ../src/ui/dialog/tracedialog.cpp:623 -#: ../share/extensions/color_custom.inx.h:14 -#: ../share/extensions/color_randomize.inx.h:6 -#: ../share/extensions/dots.inx.h:5 -#: ../share/extensions/dxf_input.inx.h:15 -#: ../share/extensions/dxf_outlines.inx.h:9 -#: ../share/extensions/gcodetools_all_in_one.inx.h:33 -#: ../share/extensions/gcodetools_area.inx.h:22 -#: ../share/extensions/gcodetools_engraving.inx.h:16 -#: ../share/extensions/gcodetools_lathe.inx.h:22 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 -#: ../share/extensions/generate_voronoi.inx.h:7 -#: ../share/extensions/gimp_xcf.inx.h:4 -#: ../share/extensions/interp_att_g.inx.h:15 -#: ../share/extensions/jessyInk_uninstall.inx.h:3 -#: ../share/extensions/lorem_ipsum.inx.h:4 -#: ../share/extensions/pathalongpath.inx.h:7 -#: ../share/extensions/pathscatter.inx.h:10 -#: ../share/extensions/radiusrand.inx.h:6 -#: ../share/extensions/scour.inx.h:20 -#: ../share/extensions/split.inx.h:2 -#: ../share/extensions/voronoi2svg.inx.h:6 -#: ../share/extensions/webslicer_create_group.inx.h:7 -#: ../share/extensions/webslicer_export.inx.h:6 -#: ../share/extensions/web-set-att.inx.h:6 -#: ../share/extensions/web-transmit-att.inx.h:6 -msgid "Options" -msgstr "Opties" - #. ### credits #: ../src/ui/dialog/tracedialog.cpp:627 msgid "" @@ -17712,133 +17891,133 @@ msgstr "Het overtrekken afbreken" msgid "Execute the trace" msgstr "Het overtrekken starten" -#: ../src/ui/dialog/transformation.cpp:84 -#: ../src/ui/dialog/transformation.cpp:94 +#: ../src/ui/dialog/transformation.cpp:83 +#: ../src/ui/dialog/transformation.cpp:93 msgid "_Horizontal:" msgstr "_Horizontaal:" -#: ../src/ui/dialog/transformation.cpp:84 +#: ../src/ui/dialog/transformation.cpp:83 msgid "Horizontal displacement (relative) or position (absolute)" msgstr "Horizontale verplaatsing (relatief) of positie (absoluut)" -#: ../src/ui/dialog/transformation.cpp:86 -#: ../src/ui/dialog/transformation.cpp:96 +#: ../src/ui/dialog/transformation.cpp:85 +#: ../src/ui/dialog/transformation.cpp:95 msgid "_Vertical:" msgstr "_Verticaal:" -#: ../src/ui/dialog/transformation.cpp:86 +#: ../src/ui/dialog/transformation.cpp:85 msgid "Vertical displacement (relative) or position (absolute)" msgstr "Verticale verplaatsing (relatief) of positie (absoluut)" -#: ../src/ui/dialog/transformation.cpp:88 +#: ../src/ui/dialog/transformation.cpp:87 msgid "Horizontal size (absolute or percentage of current)" msgstr "Horizontale grootte (absoluut of procentueel van huidige)" -#: ../src/ui/dialog/transformation.cpp:90 +#: ../src/ui/dialog/transformation.cpp:89 msgid "Vertical size (absolute or percentage of current)" msgstr "Verticale grootte (absoluut of procentueel van huidige)" -#: ../src/ui/dialog/transformation.cpp:92 +#: ../src/ui/dialog/transformation.cpp:91 msgid "A_ngle:" msgstr "Hoe_k:" -#: ../src/ui/dialog/transformation.cpp:92 +#: ../src/ui/dialog/transformation.cpp:91 msgid "Rotation angle (positive = counterclockwise)" msgstr "Rotatiehoek (positief is met de klok mee)" -#: ../src/ui/dialog/transformation.cpp:94 +#: ../src/ui/dialog/transformation.cpp:93 msgid "Horizontal skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" msgstr "Horizontale rotatiehoek (positief is met de klok mee), absolute verplaatsing of percentage verplaatsing" -#: ../src/ui/dialog/transformation.cpp:96 +#: ../src/ui/dialog/transformation.cpp:95 msgid "Vertical skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" msgstr "Verticale rotatiehoek (positief is met de klok mee), absolute verplaatsing of percentage verplaatsing" -#: ../src/ui/dialog/transformation.cpp:99 +#: ../src/ui/dialog/transformation.cpp:98 msgid "Transformation matrix element A" msgstr "Transformatiematrix-element A" -#: ../src/ui/dialog/transformation.cpp:100 +#: ../src/ui/dialog/transformation.cpp:99 msgid "Transformation matrix element B" msgstr "Transformatiematrix-element B" -#: ../src/ui/dialog/transformation.cpp:101 +#: ../src/ui/dialog/transformation.cpp:100 msgid "Transformation matrix element C" msgstr "Transformatiematrix-element C" -#: ../src/ui/dialog/transformation.cpp:102 +#: ../src/ui/dialog/transformation.cpp:101 msgid "Transformation matrix element D" msgstr "Transformatiematrix-element D" -#: ../src/ui/dialog/transformation.cpp:103 +#: ../src/ui/dialog/transformation.cpp:102 msgid "Transformation matrix element E" msgstr "Transformatiematrix-element E" -#: ../src/ui/dialog/transformation.cpp:104 +#: ../src/ui/dialog/transformation.cpp:103 msgid "Transformation matrix element F" msgstr "Transformatiematrix-element F" -#: ../src/ui/dialog/transformation.cpp:106 +#: ../src/ui/dialog/transformation.cpp:105 msgid "Rela_tive move" msgstr "Rela_tieve verplaatsing" -#: ../src/ui/dialog/transformation.cpp:106 +#: ../src/ui/dialog/transformation.cpp:105 msgid "Add the specified relative displacement to the current position; otherwise, edit the current absolute position directly" msgstr "Tel de opgegeven relatieve verplaatsing op bij de huidige positie; anders, bewerk de huidige absolute positie direct" -#: ../src/ui/dialog/transformation.cpp:107 +#: ../src/ui/dialog/transformation.cpp:106 msgid "_Scale proportionally" msgstr "Proportioneel s_chalen" -#: ../src/ui/dialog/transformation.cpp:107 +#: ../src/ui/dialog/transformation.cpp:106 msgid "Preserve the width/height ratio of the scaled objects" msgstr "De breedte/hoogteverhouding van de geschaalde objecten behouden" -#: ../src/ui/dialog/transformation.cpp:108 +#: ../src/ui/dialog/transformation.cpp:107 msgid "Apply to each _object separately" msgstr "_Op ieder object apart toepassen" -#: ../src/ui/dialog/transformation.cpp:108 +#: ../src/ui/dialog/transformation.cpp:107 msgid "Apply the scale/rotate/skew to each selected object separately; otherwise, transform the selection as a whole" msgstr "De acties schalen/roteren/scheeftrekken op ieder geselecteerd object onafhankelijk toepassen; anders de hele selectie als een geheel transformeren" -#: ../src/ui/dialog/transformation.cpp:109 +#: ../src/ui/dialog/transformation.cpp:108 msgid "Edit c_urrent matrix" msgstr "_Huidige matrix bewerken" -#: ../src/ui/dialog/transformation.cpp:109 +#: ../src/ui/dialog/transformation.cpp:108 msgid "Edit the current transform= matrix; otherwise, post-multiply transform= by this matrix" msgstr "De huidige transformatiematrix bewerken; zoniet, navermenigvuldigen transformatiematrix met deze matrix" -#: ../src/ui/dialog/transformation.cpp:119 +#: ../src/ui/dialog/transformation.cpp:118 msgid "_Move" msgstr "_Verplaatsen" -#: ../src/ui/dialog/transformation.cpp:122 +#: ../src/ui/dialog/transformation.cpp:121 msgid "_Scale" msgstr "_Schalen" -#: ../src/ui/dialog/transformation.cpp:125 +#: ../src/ui/dialog/transformation.cpp:124 msgid "_Rotate" msgstr "_Roteren" -#: ../src/ui/dialog/transformation.cpp:128 +#: ../src/ui/dialog/transformation.cpp:127 msgid "Ske_w" msgstr "Scheef_trekken" -#: ../src/ui/dialog/transformation.cpp:131 +#: ../src/ui/dialog/transformation.cpp:130 msgid "Matri_x" msgstr "Matri_x" -#: ../src/ui/dialog/transformation.cpp:155 +#: ../src/ui/dialog/transformation.cpp:154 msgid "Reset the values on the current tab to defaults" msgstr "Op het huidige tabblad de standaarwaarden terugzetten" -#: ../src/ui/dialog/transformation.cpp:162 +#: ../src/ui/dialog/transformation.cpp:161 msgid "Apply transformation to selection" msgstr "Transformatie toepassen op selectie" -#: ../src/ui/dialog/transformation.cpp:857 +#: ../src/ui/dialog/transformation.cpp:856 msgid "Edit transformation matrix" msgstr "Transformatiematrix bewerken" @@ -17896,12 +18075,12 @@ msgid "Duplicate nodes" msgstr "Knooppunten dupliceren" #: ../src/ui/tool/multi-path-manipulator.cpp:402 -#: ../src/widgets/toolbox.cpp:1390 +#: ../src/widgets/toolbox.cpp:1392 msgid "Join nodes" msgstr "Knooppunten samenvoegen" #: ../src/ui/tool/multi-path-manipulator.cpp:409 -#: ../src/widgets/toolbox.cpp:1401 +#: ../src/widgets/toolbox.cpp:1403 msgid "Break nodes" msgstr "Knooppunten verbreken" @@ -18158,7 +18337,7 @@ msgstr "Roteerhandvat" #. We need to call MPM's method because it could have been our last node #: ../src/ui/tool/path-manipulator.cpp:1284 -#: ../src/widgets/toolbox.cpp:1379 +#: ../src/widgets/toolbox.cpp:1381 msgid "Delete node" msgstr "Item verwijderen" @@ -18551,13 +18730,13 @@ msgstr "Geen lijn" #: ../src/ui/widget/selected-style.cpp:167 #: ../src/ui/widget/style-swatch.cpp:277 -#: ../src/widgets/paint-selector.cpp:237 +#: ../src/widgets/paint-selector.cpp:233 msgid "Pattern" msgstr "Patroon" #: ../src/ui/widget/selected-style.cpp:170 #: ../src/ui/widget/style-swatch.cpp:279 -#: ../src/widgets/paint-selector.cpp:1025 +#: ../src/widgets/paint-selector.cpp:1021 msgid "Pattern fill" msgstr "Patroonvulling" @@ -18683,7 +18862,7 @@ msgid "White" msgstr "Wit" #: ../src/ui/widget/selected-style.cpp:237 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/widgets/sp-color-icc-selector.cpp:232 #: ../src/widgets/sp-color-scales.cpp:466 #: ../src/widgets/sp-color-scales.cpp:467 msgid "Black" @@ -19145,330 +19324,324 @@ msgid "Remove unused definitions (such as gradients or clipping paths) from the msgstr "Ongebruikte definities (zoals kleurverlopen of hulplijnen) uit het <defs>-onderdeel van het bestand verwijderen" #: ../src/verbs.cpp:2261 -msgid "Print Previe_w" -msgstr "Afdruk_voorbeeld" - -#: ../src/verbs.cpp:2262 -msgid "Preview document printout" -msgstr "Een afdrukvoorbeeld van het document tonen" - -#: ../src/verbs.cpp:2263 msgid "_Import..." msgstr "_Importeren..." -#: ../src/verbs.cpp:2264 +#: ../src/verbs.cpp:2262 msgid "Import a bitmap or SVG image into this document" msgstr "Bitmap of SVG-bestand in het document importeren" -#: ../src/verbs.cpp:2265 +#: ../src/verbs.cpp:2263 msgid "_Export Bitmap..." msgstr "_Bitmap exporteren..." -#: ../src/verbs.cpp:2266 +#: ../src/verbs.cpp:2264 msgid "Export this document or a selection as a bitmap image" msgstr "Document of selectie als bitmap-afbeelding exporteren" -#: ../src/verbs.cpp:2267 +#: ../src/verbs.cpp:2265 msgid "Import a document from Open Clip Art Library" msgstr "Een document uit de 'Open Clip Art'-mediatheek importeren" #. new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("Export To Open Clip Art Library"), N_("Export this document to Open Clip Art Library"), INKSCAPE_ICON_DOCUMENT_EXPORT_OCAL), -#: ../src/verbs.cpp:2269 +#: ../src/verbs.cpp:2267 msgid "N_ext Window" msgstr "V_olgende venster" -#: ../src/verbs.cpp:2270 +#: ../src/verbs.cpp:2268 msgid "Switch to the next document window" msgstr "Naar het volgende documentvenster gaan" -#: ../src/verbs.cpp:2271 +#: ../src/verbs.cpp:2269 msgid "P_revious Window" msgstr "Vor_ige venster" -#: ../src/verbs.cpp:2272 +#: ../src/verbs.cpp:2270 msgid "Switch to the previous document window" msgstr "Naar het vorige documentvenster gaan" -#: ../src/verbs.cpp:2273 +#: ../src/verbs.cpp:2271 msgid "_Close" msgstr "Sl_uiten" -#: ../src/verbs.cpp:2274 +#: ../src/verbs.cpp:2272 msgid "Close this document window" msgstr "Dit documentvenster sluiten" -#: ../src/verbs.cpp:2275 +#: ../src/verbs.cpp:2273 msgid "_Quit" msgstr "A_fsluiten" -#: ../src/verbs.cpp:2275 +#: ../src/verbs.cpp:2273 msgid "Quit Inkscape" msgstr "Inkscape afsluiten" -#: ../src/verbs.cpp:2278 +#: ../src/verbs.cpp:2276 msgid "Undo last action" msgstr "De laatste bewerking ongedaan maken" -#: ../src/verbs.cpp:2281 +#: ../src/verbs.cpp:2279 msgid "Do again the last undone action" msgstr "De laatst ongedaan gemaakte bewerking opnieuw doen" -#: ../src/verbs.cpp:2282 +#: ../src/verbs.cpp:2280 msgid "Cu_t" msgstr "K_nippen" -#: ../src/verbs.cpp:2283 +#: ../src/verbs.cpp:2281 msgid "Cut selection to clipboard" msgstr "De selectie wegknippen en op het klembord plaatsen" -#: ../src/verbs.cpp:2284 +#: ../src/verbs.cpp:2282 msgid "_Copy" msgstr "_KopiΓ«ren" -#: ../src/verbs.cpp:2285 +#: ../src/verbs.cpp:2283 msgid "Copy selection to clipboard" msgstr "De selectie naar het klembord kopiΓ«ren" -#: ../src/verbs.cpp:2286 +#: ../src/verbs.cpp:2284 msgid "_Paste" msgstr "_Plakken" -#: ../src/verbs.cpp:2287 +#: ../src/verbs.cpp:2285 msgid "Paste objects from clipboard to mouse point, or paste text" msgstr "Objecten vanaf het klembord naar de cursor plakken, of tekst plakken" -#: ../src/verbs.cpp:2288 +#: ../src/verbs.cpp:2286 msgid "Paste _Style" msgstr "_Stijl plakken" -#: ../src/verbs.cpp:2289 +#: ../src/verbs.cpp:2287 msgid "Apply the style of the copied object to selection" msgstr "De stijl van het gekopieerde object op de huidige selectie toepassen" -#: ../src/verbs.cpp:2291 +#: ../src/verbs.cpp:2289 msgid "Scale selection to match the size of the copied object" msgstr "De huidige selectie aan de grootte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2292 +#: ../src/verbs.cpp:2290 msgid "Paste _Width" msgstr "_Breedte plakken" -#: ../src/verbs.cpp:2293 +#: ../src/verbs.cpp:2291 msgid "Scale selection horizontally to match the width of the copied object" msgstr "De huidige selectie aan de breedte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2294 +#: ../src/verbs.cpp:2292 msgid "Paste _Height" msgstr "_Hoogte plakken" -#: ../src/verbs.cpp:2295 +#: ../src/verbs.cpp:2293 msgid "Scale selection vertically to match the height of the copied object" msgstr "De huidige selectie aan de hoogte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2296 +#: ../src/verbs.cpp:2294 msgid "Paste Size Separately" msgstr "Grootte apart plakken" -#: ../src/verbs.cpp:2297 +#: ../src/verbs.cpp:2295 msgid "Scale each selected object to match the size of the copied object" msgstr "Elk geselecteerd object aan de grootte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2298 +#: ../src/verbs.cpp:2296 msgid "Paste Width Separately" msgstr "Breedte apart plakken" -#: ../src/verbs.cpp:2299 +#: ../src/verbs.cpp:2297 msgid "Scale each selected object horizontally to match the width of the copied object" msgstr "Elk geselecteerd object aan de breedte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2300 +#: ../src/verbs.cpp:2298 msgid "Paste Height Separately" msgstr "Hoogte apart plakken" -#: ../src/verbs.cpp:2301 +#: ../src/verbs.cpp:2299 msgid "Scale each selected object vertically to match the height of the copied object" msgstr "Elk geselecteerd object aan de hoogte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2302 +#: ../src/verbs.cpp:2300 msgid "Paste _In Place" msgstr "_Op positie plakken" -#: ../src/verbs.cpp:2303 +#: ../src/verbs.cpp:2301 msgid "Paste objects from clipboard to the original location" msgstr "Objecten van het klembord naar hun originele locatie plakken" -#: ../src/verbs.cpp:2304 +#: ../src/verbs.cpp:2302 msgid "Paste Path _Effect" msgstr "Pad_effect plakken" -#: ../src/verbs.cpp:2305 +#: ../src/verbs.cpp:2303 msgid "Apply the path effect of the copied object to selection" msgstr "Het padeffect van het gekopieerde object op de huidige selectie toepassen" -#: ../src/verbs.cpp:2306 +#: ../src/verbs.cpp:2304 msgid "Remove Path _Effect" msgstr "Padeffect _verwijderen" -#: ../src/verbs.cpp:2307 +#: ../src/verbs.cpp:2305 msgid "Remove any path effects from selected objects" msgstr "Alle padeffecten van geselecteerde objecten verwijderen" -#: ../src/verbs.cpp:2308 +#: ../src/verbs.cpp:2306 msgid "_Remove Filters" msgstr "_Filters verwijderen" -#: ../src/verbs.cpp:2309 +#: ../src/verbs.cpp:2307 msgid "Remove any filters from selected objects" msgstr "Alle filters van geselecteerde objecten verwijderen" -#: ../src/verbs.cpp:2310 +#: ../src/verbs.cpp:2308 msgid "_Delete" msgstr "_Verwijderen" -#: ../src/verbs.cpp:2311 +#: ../src/verbs.cpp:2309 msgid "Delete selection" msgstr "De selectie verwijderen" -#: ../src/verbs.cpp:2312 +#: ../src/verbs.cpp:2310 msgid "Duplic_ate" msgstr "_Dupliceren" -#: ../src/verbs.cpp:2313 +#: ../src/verbs.cpp:2311 msgid "Duplicate selected objects" msgstr "Geselecteerde objecten verdubbelen" -#: ../src/verbs.cpp:2314 +#: ../src/verbs.cpp:2312 msgid "Create Clo_ne" msgstr "_Klonen" -#: ../src/verbs.cpp:2315 +#: ../src/verbs.cpp:2313 msgid "Create a clone (a copy linked to the original) of selected object" msgstr "Een kloon (een aan het origineel gekoppelde kopie) maken van het geselecteerde object" -#: ../src/verbs.cpp:2316 +#: ../src/verbs.cpp:2314 msgid "Unlin_k Clone" msgstr "Kloon o_ntkoppelen" -#: ../src/verbs.cpp:2317 +#: ../src/verbs.cpp:2315 msgid "Cut the selected clones' links to the originals, turning them into standalone objects" msgstr "De koppeling tussen de geselecteerde klonen en de originelen verwijderen, zodat ze op zichzelf staande objecten worden" -#: ../src/verbs.cpp:2318 +#: ../src/verbs.cpp:2316 msgid "Relink to Copied" msgstr "Herlinken aan kopie" -#: ../src/verbs.cpp:2319 +#: ../src/verbs.cpp:2317 msgid "Relink the selected clones to the object currently on the clipboard" msgstr "De geselecteerde klonen herlinken naar het object op het klembord" -#: ../src/verbs.cpp:2320 +#: ../src/verbs.cpp:2318 msgid "Select _Original" msgstr "_Origineel selecteren" -#: ../src/verbs.cpp:2321 +#: ../src/verbs.cpp:2319 msgid "Select the object to which the selected clone is linked" msgstr "Het object waaraan de kloon gekoppeld is selecteren" -#: ../src/verbs.cpp:2322 +#: ../src/verbs.cpp:2320 msgid "Objects to _Marker" msgstr "Objecten naar _markering" -#: ../src/verbs.cpp:2323 +#: ../src/verbs.cpp:2321 msgid "Convert selection to a line marker" msgstr "De selectie converteren naar een lijnmarkering" -#: ../src/verbs.cpp:2324 +#: ../src/verbs.cpp:2322 msgid "Objects to Gu_ides" msgstr "Objecten naar hulpl_ijnen" -#: ../src/verbs.cpp:2325 +#: ../src/verbs.cpp:2323 msgid "Convert selected objects to a collection of guidelines aligned with their edges" msgstr "De geselecteerde objecten converteren naar een set hulplijnen die hun randen aangeven" -#: ../src/verbs.cpp:2326 +#: ../src/verbs.cpp:2324 msgid "Objects to Patter_n" msgstr "Objecten naar patroo_n" -#: ../src/verbs.cpp:2327 +#: ../src/verbs.cpp:2325 msgid "Convert selection to a rectangle with tiled pattern fill" msgstr "De selectie converteren naar een rechthoek gevuld met een getegeld patroon" -#: ../src/verbs.cpp:2328 +#: ../src/verbs.cpp:2326 msgid "Pattern to _Objects" msgstr "Patroon naar _objecten" -#: ../src/verbs.cpp:2329 +#: ../src/verbs.cpp:2327 msgid "Extract objects from a tiled pattern fill" msgstr "Objecten uit een getegeld patroon extraheren" -#: ../src/verbs.cpp:2330 +#: ../src/verbs.cpp:2328 msgid "Clea_r All" msgstr "Alles verwijderen" -#: ../src/verbs.cpp:2331 +#: ../src/verbs.cpp:2329 msgid "Delete all objects from document" msgstr "Alle objecten uit het document verwijderen" -#: ../src/verbs.cpp:2332 +#: ../src/verbs.cpp:2330 msgid "Select Al_l" msgstr "_Alles selecteren" -#: ../src/verbs.cpp:2333 +#: ../src/verbs.cpp:2331 msgid "Select all objects or all nodes" msgstr "Alle objecten of alle knooppunten selecteren" -#: ../src/verbs.cpp:2334 +#: ../src/verbs.cpp:2332 msgid "Select All in All La_yers" msgstr "Alles selecteren in alle _lagen" -#: ../src/verbs.cpp:2335 +#: ../src/verbs.cpp:2333 msgid "Select all objects in all visible and unlocked layers" msgstr "Alle objecten in alle zichtbare en niet-vergrendelde lagen selecteren" -#: ../src/verbs.cpp:2336 +#: ../src/verbs.cpp:2334 msgid "In_vert Selection" msgstr "Selectie _omkeren" -#: ../src/verbs.cpp:2337 +#: ../src/verbs.cpp:2335 msgid "Invert selection (unselect what is selected and select everything else)" msgstr "De selectie omkeren (alleen dat selecteren wat nu niet geselecteerd is)" -#: ../src/verbs.cpp:2338 +#: ../src/verbs.cpp:2336 msgid "Invert in All Layers" msgstr "Omkeren in alle lagen" -#: ../src/verbs.cpp:2339 +#: ../src/verbs.cpp:2337 msgid "Invert selection in all visible and unlocked layers" msgstr "De selectie omkeren in alle zichtbare en niet-vergrendelde lagen" -#: ../src/verbs.cpp:2340 +#: ../src/verbs.cpp:2338 msgid "Select Next" msgstr "Volgende selecteren" -#: ../src/verbs.cpp:2341 +#: ../src/verbs.cpp:2339 msgid "Select next object or node" msgstr "Volgend object of knooppunt selecteren" -#: ../src/verbs.cpp:2342 +#: ../src/verbs.cpp:2340 msgid "Select Previous" msgstr "Vorige selecteren" -#: ../src/verbs.cpp:2343 +#: ../src/verbs.cpp:2341 msgid "Select previous object or node" msgstr "Vorig object of knoopppunt selecteren" -#: ../src/verbs.cpp:2344 +#: ../src/verbs.cpp:2342 msgid "D_eselect" msgstr "S_electie opheffen" -#: ../src/verbs.cpp:2345 +#: ../src/verbs.cpp:2343 msgid "Deselect any selected objects or nodes" msgstr "Alles deselecteren" -#: ../src/verbs.cpp:2346 -msgid "_Guides Around Page" +#: ../src/verbs.cpp:2344 +#, fuzzy +msgid "Create _Guides Around the Page" msgstr "_Hulplijnen rond pagina" +#: ../src/verbs.cpp:2345 #: ../src/verbs.cpp:2347 msgid "Create four guides aligned with the page borders" msgstr "Vier hulplijnen maken op de paginaranden" @@ -20889,17 +21062,16 @@ msgid "_Save as SVG" msgstr "Op_slaan als SVG" #: ../src/widgets/desktop-widget.cpp:1163 -#, fuzzy msgid "Note:" -msgstr "Geen" +msgstr "" -#: ../src/widgets/ege-paint-def.cpp:69 -#: ../src/widgets/ege-paint-def.cpp:91 +#: ../src/widgets/ege-paint-def.cpp:70 +#: ../src/widgets/ege-paint-def.cpp:92 #: ../src/widgets/gradient-selector.cpp:173 msgid "none" msgstr "Niet" -#: ../src/widgets/ege-paint-def.cpp:88 +#: ../src/widgets/ege-paint-def.cpp:89 msgid "remove" msgstr "verwijderen" @@ -20934,27 +21106,21 @@ msgid "Set pattern on stroke" msgstr "Patroon instellen op lijn" #. Family frame -#: ../src/widgets/font-selector.cpp:151 -msgid "F_ont family" +#: ../src/widgets/font-selector.cpp:143 +#, fuzzy +msgid "Font family" msgstr "L_ettertypefamilie" #. Style frame -#: ../src/widgets/font-selector.cpp:186 +#: ../src/widgets/font-selector.cpp:174 msgctxt "Font selector" -msgid "_Style" -msgstr "_Stijl" - -#: ../src/widgets/font-selector.cpp:227 -msgid "Font si_ze:" -msgstr "Letter_grootte:" +msgid "Style" +msgstr "Stijl" -#. TRANSLATORS: Test string used in text and font dialog (when no -#. * text has been entered) to get a preview of the font. Choose -#. * some representative characters that users of your locale will be -#. * interested in. -#: ../src/widgets/font-selector.cpp:641 -msgid "AaBbCcIiPpQq12369$€¢?.;/()" -msgstr "AaBbCcIiMmPpQqWw(12369)€£$!?.;/@" +#: ../src/widgets/font-selector.cpp:212 +#: ../share/extensions/dots.inx.h:2 +msgid "Font size:" +msgstr "Lettergrootte:" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/pservers.html#LinearGradientSpreadMethodAttribute #: ../src/widgets/gradient-selector.cpp:167 @@ -20998,14 +21164,14 @@ msgid "Edit the stops of the gradient" msgstr "De overgangen in het kleurverloop aanpassen" #: ../src/widgets/gradient-toolbar.cpp:543 -#: ../src/widgets/toolbox.cpp:2869 -#: ../src/widgets/toolbox.cpp:2949 -#: ../src/widgets/toolbox.cpp:3273 -#: ../src/widgets/toolbox.cpp:3311 -#: ../src/widgets/toolbox.cpp:3929 -#: ../src/widgets/toolbox.cpp:3953 -#: ../src/widgets/toolbox.cpp:5583 -#: ../src/widgets/toolbox.cpp:5612 +#: ../src/widgets/toolbox.cpp:2917 +#: ../src/widgets/toolbox.cpp:2997 +#: ../src/widgets/toolbox.cpp:3321 +#: ../src/widgets/toolbox.cpp:3359 +#: ../src/widgets/toolbox.cpp:3977 +#: ../src/widgets/toolbox.cpp:4001 +#: ../src/widgets/toolbox.cpp:5625 +#: ../src/widgets/toolbox.cpp:5654 msgid "<b>New:</b>" msgstr "<b>Nieuw:</b>" @@ -21033,18 +21199,18 @@ msgstr "Kleurverloop maken voor lijnen" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("<b>Average:</b>")); #: ../src/widgets/gradient-toolbar.cpp:622 -#: ../src/widgets/toolbox.cpp:2871 -#: ../src/widgets/toolbox.cpp:3281 -#: ../src/widgets/toolbox.cpp:3299 -#: ../src/widgets/toolbox.cpp:3931 -#: ../src/widgets/toolbox.cpp:3942 -#: ../src/widgets/toolbox.cpp:5586 -#: ../src/widgets/toolbox.cpp:5597 +#: ../src/widgets/toolbox.cpp:2919 +#: ../src/widgets/toolbox.cpp:3329 +#: ../src/widgets/toolbox.cpp:3347 +#: ../src/widgets/toolbox.cpp:3979 +#: ../src/widgets/toolbox.cpp:3990 +#: ../src/widgets/toolbox.cpp:5628 +#: ../src/widgets/toolbox.cpp:5639 msgid "<b>Change:</b>" msgstr "<b>Wijzigen:</b>" #: ../src/widgets/gradient-vector.cpp:275 -#: ../src/widgets/paint-selector.cpp:912 +#: ../src/widgets/paint-selector.cpp:908 #: ../src/widgets/stroke-style.cpp:421 msgid "No document selected" msgstr "Geen document geselecteerd" @@ -21095,183 +21261,183 @@ msgstr "Kleurverloop-editor" msgid "Change gradient stop color" msgstr "Overgangskleur aanpassen" -#: ../src/widgets/paint-selector.cpp:229 -#: ../src/widgets/paint-selector.cpp:612 +#: ../src/widgets/paint-selector.cpp:225 +#: ../src/widgets/paint-selector.cpp:608 msgid "No paint" msgstr "Geen opvulling" -#: ../src/widgets/paint-selector.cpp:231 -#: ../src/widgets/paint-selector.cpp:676 +#: ../src/widgets/paint-selector.cpp:227 +#: ../src/widgets/paint-selector.cpp:672 msgid "Flat color" msgstr "Egale kleur" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:233 -#: ../src/widgets/paint-selector.cpp:739 +#: ../src/widgets/paint-selector.cpp:229 +#: ../src/widgets/paint-selector.cpp:735 msgid "Linear gradient" msgstr "Lineair kleurverloop" -#: ../src/widgets/paint-selector.cpp:235 -#: ../src/widgets/paint-selector.cpp:742 +#: ../src/widgets/paint-selector.cpp:231 +#: ../src/widgets/paint-selector.cpp:738 msgid "Radial gradient" msgstr "Radiaal kleurverloop" -#: ../src/widgets/paint-selector.cpp:239 +#: ../src/widgets/paint-selector.cpp:235 msgid "Swatch" msgstr "Palet" -#: ../src/widgets/paint-selector.cpp:241 +#: ../src/widgets/paint-selector.cpp:237 msgid "Unset paint (make it undefined so it can be inherited)" msgstr "Vulling uitzetten (ongedefinieerd maken zodat het overgenomen kan worden)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:253 +#: ../src/widgets/paint-selector.cpp:249 msgid "Any path self-intersections or subpaths create holes in the fill (fill-rule: evenodd)" msgstr "Wanneer een pad zichzelf snijdt, ontstaat een gat (vulregel: evenoneven)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:264 +#: ../src/widgets/paint-selector.cpp:260 msgid "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" msgstr "Vulling is zonder gaten (vulregel: nietnul)" -#: ../src/widgets/paint-selector.cpp:579 +#: ../src/widgets/paint-selector.cpp:575 msgid "No objects" msgstr "Geen objecten" -#: ../src/widgets/paint-selector.cpp:590 +#: ../src/widgets/paint-selector.cpp:586 msgid "Multiple styles" msgstr "Meerdere stijlen" -#: ../src/widgets/paint-selector.cpp:601 +#: ../src/widgets/paint-selector.cpp:597 msgid "Paint is undefined" msgstr "Vulling is niet gedefinieerd" -#: ../src/widgets/paint-selector.cpp:1012 +#: ../src/widgets/paint-selector.cpp:1008 msgid "Use the <b>Node tool</b> to adjust position, scale, and rotation of the pattern on canvas. Use <b>Object > Pattern > Objects to Pattern</b> to create a new pattern from selection." msgstr "Gebruik het <b>knooppunten-gereedschap</b> om positie, schaal en rotatie van het patroon aan te passen. Gebruik <b>Object > Patroon > Objecten naar patroon</b> om een nieuw patroon te maken uit de selectie." -#: ../src/widgets/paint-selector.cpp:1100 +#: ../src/widgets/paint-selector.cpp:1096 msgid "Swatch fill" msgstr "Vullingspalet" -#: ../src/widgets/select-toolbar.cpp:249 +#: ../src/widgets/select-toolbar.cpp:256 msgid "Transform by toolbar" msgstr "Transformeren met behulp van de gereedschappenbalk" -#: ../src/widgets/select-toolbar.cpp:322 +#: ../src/widgets/select-toolbar.cpp:329 msgid "Now <b>stroke width</b> is <b>scaled</b> when objects are scaled." msgstr "De <b>lijndikte</b> wordt nu <b>meegeschaald</b> wanneer objecten geschaald worden." -#: ../src/widgets/select-toolbar.cpp:324 +#: ../src/widgets/select-toolbar.cpp:331 msgid "Now <b>stroke width</b> is <b>not scaled</b> when objects are scaled." msgstr "De <b>lijndikte</b> wordt nu <b>niet geschaald</b> wanneer objecten geschaald worden." -#: ../src/widgets/select-toolbar.cpp:335 +#: ../src/widgets/select-toolbar.cpp:342 msgid "Now <b>rounded rectangle corners</b> are <b>scaled</b> when rectangles are scaled." msgstr "<b>Afgeronde hoeken</b> worden nu <b>meegeschaald</b> wanneer rechthoeken worden geschaald." -#: ../src/widgets/select-toolbar.cpp:337 +#: ../src/widgets/select-toolbar.cpp:344 msgid "Now <b>rounded rectangle corners</b> are <b>not scaled</b> when rectangles are scaled." msgstr "<b>Afgeronde hoeken</b> worden nu <b>niet geschaald</b> wanneer rechthoeken worden geschaald." -#: ../src/widgets/select-toolbar.cpp:348 +#: ../src/widgets/select-toolbar.cpp:355 msgid "Now <b>gradients</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Kleurverlopen</b> worden nu <b>meeveranderd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:350 +#: ../src/widgets/select-toolbar.cpp:357 msgid "Now <b>gradients</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Kleurverlopen</b> blijven nu <b>gefixeerd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:361 +#: ../src/widgets/select-toolbar.cpp:368 msgid "Now <b>patterns</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Patronen</b> worden nu <b>meeveranderd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:363 +#: ../src/widgets/select-toolbar.cpp:370 msgid "Now <b>patterns</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Patronen</b> blijven nu <b>gefixeerd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X position" msgstr "X-Positie" -#: ../src/widgets/select-toolbar.cpp:476 +#: ../src/widgets/select-toolbar.cpp:483 msgctxt "Select toolbar" msgid "X:" msgstr "X:" -#: ../src/widgets/select-toolbar.cpp:478 +#: ../src/widgets/select-toolbar.cpp:485 msgid "Horizontal coordinate of selection" msgstr "Horizontale coΓ¶rdinaat van de selectie" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y position" msgstr "Y-Positie" -#: ../src/widgets/select-toolbar.cpp:482 +#: ../src/widgets/select-toolbar.cpp:489 msgctxt "Select toolbar" msgid "Y:" msgstr "Y:" -#: ../src/widgets/select-toolbar.cpp:484 +#: ../src/widgets/select-toolbar.cpp:491 msgid "Vertical coordinate of selection" msgstr "Verticale coΓ¶rdinaat van de selectie" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "Width" msgstr "Breedte" -#: ../src/widgets/select-toolbar.cpp:488 +#: ../src/widgets/select-toolbar.cpp:495 msgctxt "Select toolbar" msgid "W:" msgstr "B:" -#: ../src/widgets/select-toolbar.cpp:490 +#: ../src/widgets/select-toolbar.cpp:497 msgid "Width of selection" msgstr "Breedte van de selectie" -#: ../src/widgets/select-toolbar.cpp:497 +#: ../src/widgets/select-toolbar.cpp:504 msgid "Lock width and height" msgstr "Verhouding tussen breedte en hoogte vastzetten" -#: ../src/widgets/select-toolbar.cpp:498 +#: ../src/widgets/select-toolbar.cpp:505 msgid "When locked, change both width and height by the same proportion" msgstr "Indien vastgezet, breedte en hoogte in dezelfde mate aanpassen" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "Height" msgstr "Hoogte" -#: ../src/widgets/select-toolbar.cpp:507 +#: ../src/widgets/select-toolbar.cpp:514 msgctxt "Select toolbar" msgid "H:" msgstr "H:" -#: ../src/widgets/select-toolbar.cpp:509 +#: ../src/widgets/select-toolbar.cpp:516 msgid "Height of selection" msgstr "Hoogte van de selectie" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "Affect:" msgstr "Werking:" -#: ../src/widgets/select-toolbar.cpp:546 +#: ../src/widgets/select-toolbar.cpp:553 msgid "Control whether or not to scale stroke widths, scale rectangle corners, transform gradient fills, and transform pattern fills with the object" msgstr "Al dan niet lijnbreedte schalen, hoeken rechthoek schalen, vulkleurverloop aanpassen en vulpatroon aanpassen met het object" -#: ../src/widgets/select-toolbar.cpp:565 +#: ../src/widgets/select-toolbar.cpp:572 msgid "Scale rounded corners" msgstr "Afgeronde hoeken schalen" -#: ../src/widgets/select-toolbar.cpp:576 +#: ../src/widgets/select-toolbar.cpp:583 msgid "Move gradients" msgstr "Kleurverlopen verplaatsen" -#: ../src/widgets/select-toolbar.cpp:587 +#: ../src/widgets/select-toolbar.cpp:594 msgid "Move patterns" msgstr "Patronen verplaatsen" @@ -21279,104 +21445,98 @@ msgstr "Patronen verplaatsen" msgid "System" msgstr "Systeem" -#: ../src/widgets/sp-color-icc-selector.cpp:105 +#: ../src/widgets/sp-color-icc-selector.cpp:106 msgid "CMS" msgstr "Kleurbeheersysteem" -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:402 msgid "_R:" msgstr "_R:" -#: ../src/widgets/sp-color-icc-selector.cpp:213 #: ../src/widgets/sp-color-icc-selector.cpp:214 +#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-scales.cpp:405 msgid "_G:" msgstr "_G:" -#: ../src/widgets/sp-color-icc-selector.cpp:213 +#: ../src/widgets/sp-color-icc-selector.cpp:214 #: ../src/widgets/sp-color-scales.cpp:408 msgid "_B:" msgstr "_B:" # Hue - Tint. -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:428 msgid "_H:" msgstr "_T:" # Saturation - Verzadiging. -#: ../src/widgets/sp-color-icc-selector.cpp:215 #: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:431 msgid "_S:" msgstr "_V:" # Lightness - Helderheid. -#: ../src/widgets/sp-color-icc-selector.cpp:216 +#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:434 msgid "_L:" msgstr "_L:" -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:456 msgid "_C:" msgstr "_C:" -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:219 #: ../src/widgets/sp-color-scales.cpp:459 msgid "_M:" msgstr "_M:" -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-icc-selector.cpp:218 -#: ../src/widgets/sp-color-scales.cpp:462 -msgid "_Y:" -msgstr "_Y:" - -#: ../src/widgets/sp-color-icc-selector.cpp:217 #: ../src/widgets/sp-color-scales.cpp:465 msgid "_K:" msgstr "_K:" -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/widgets/sp-color-icc-selector.cpp:229 msgid "Gray" msgstr "Grijs" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:457 #: ../src/widgets/sp-color-scales.cpp:458 msgid "Cyan" msgstr "Cyaan" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:460 #: ../src/widgets/sp-color-scales.cpp:461 msgid "Magenta" msgstr "Magenta" -#: ../src/widgets/sp-color-icc-selector.cpp:231 #: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:233 #: ../src/widgets/sp-color-scales.cpp:463 #: ../src/widgets/sp-color-scales.cpp:464 msgid "Yellow" msgstr "Geel" -#: ../src/widgets/sp-color-icc-selector.cpp:287 +#: ../src/widgets/sp-color-icc-selector.cpp:294 msgid "Fix" msgstr "Corrigeren" -#: ../src/widgets/sp-color-icc-selector.cpp:290 +#: ../src/widgets/sp-color-icc-selector.cpp:297 msgid "Fix RGB fallback to match icc-color() value." msgstr "RGB-standaardwaarde aanpassen aan waarde van icc-color()." #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:371 +#: ../src/widgets/sp-color-icc-selector.cpp:378 #: ../src/widgets/sp-color-scales.cpp:411 #: ../src/widgets/sp-color-scales.cpp:437 #: ../src/widgets/sp-color-scales.cpp:468 @@ -21384,8 +21544,8 @@ msgstr "RGB-standaardwaarde aanpassen aan waarde van icc-color()." msgid "_A:" msgstr "_A:" -#: ../src/widgets/sp-color-icc-selector.cpp:381 -#: ../src/widgets/sp-color-icc-selector.cpp:393 +#: ../src/widgets/sp-color-icc-selector.cpp:388 +#: ../src/widgets/sp-color-icc-selector.cpp:400 #: ../src/widgets/sp-color-scales.cpp:412 #: ../src/widgets/sp-color-scales.cpp:413 #: ../src/widgets/sp-color-scales.cpp:438 @@ -21397,24 +21557,24 @@ msgstr "_A:" msgid "Alpha (opacity)" msgstr "Alfa (ondoorzichtigheid)" -#: ../src/widgets/sp-color-notebook.cpp:337 +#: ../src/widgets/sp-color-notebook.cpp:339 msgid "Color Managed" msgstr "Kleur beheerd" -#: ../src/widgets/sp-color-notebook.cpp:344 +#: ../src/widgets/sp-color-notebook.cpp:346 msgid "Out of gamut!" msgstr "Buiten kleurbereik!" -#: ../src/widgets/sp-color-notebook.cpp:351 +#: ../src/widgets/sp-color-notebook.cpp:353 msgid "Too much ink!" msgstr "Te veel inkt!" #. Create RGBA entry and color preview -#: ../src/widgets/sp-color-notebook.cpp:358 +#: ../src/widgets/sp-color-notebook.cpp:360 msgid "RGBA_:" msgstr "RGBA_:" -#: ../src/widgets/sp-color-notebook.cpp:366 +#: ../src/widgets/sp-color-notebook.cpp:368 msgid "Hexadecimal RGBA value of the color" msgstr "Hexadecimale RGBA-waarde van de kleur" @@ -21608,1558 +21768,1583 @@ msgstr "Te bepalen" msgid "Style of Paint Bucket fill objects" msgstr "Stijl van nieuwe verfemmerobjecten" -#: ../src/widgets/toolbox.cpp:1368 +#: ../src/widgets/toolbox.cpp:1370 msgid "Insert node" msgstr "Knooppunt invoegen" -#: ../src/widgets/toolbox.cpp:1369 +#: ../src/widgets/toolbox.cpp:1371 msgid "Insert new nodes into selected segments" msgstr "Nieuwe knooppunten invoegen in geselecteerde segmenten" -#: ../src/widgets/toolbox.cpp:1372 +#: ../src/widgets/toolbox.cpp:1374 msgid "Insert" msgstr "Invoegen" -#: ../src/widgets/toolbox.cpp:1380 +#: ../src/widgets/toolbox.cpp:1382 msgid "Delete selected nodes" msgstr "Geselecteerde knooppunten verwijderen" -#: ../src/widgets/toolbox.cpp:1391 +#: ../src/widgets/toolbox.cpp:1393 msgid "Join selected nodes" msgstr "Geselecteerde knooppunten verbinden" -#: ../src/widgets/toolbox.cpp:1394 +#: ../src/widgets/toolbox.cpp:1396 msgid "Join" msgstr "Verbinden" -#: ../src/widgets/toolbox.cpp:1402 +#: ../src/widgets/toolbox.cpp:1404 msgid "Break path at selected nodes" msgstr "Het pad op geselecteerde knooppunten verbreken" -#: ../src/widgets/toolbox.cpp:1412 +#: ../src/widgets/toolbox.cpp:1414 msgid "Join with segment" msgstr "Verbinden met segment" -#: ../src/widgets/toolbox.cpp:1413 +#: ../src/widgets/toolbox.cpp:1415 msgid "Join selected endnodes with a new segment" msgstr "Geselecteerde eindpunten verbinden met een nieuw segment" -#: ../src/widgets/toolbox.cpp:1422 +#: ../src/widgets/toolbox.cpp:1424 msgid "Delete segment" msgstr "Segment verwijderen" -#: ../src/widgets/toolbox.cpp:1423 +#: ../src/widgets/toolbox.cpp:1425 msgid "Delete segment between two non-endpoint nodes" msgstr "Het pad tussen twee niet-eindpunten verwijderen" -#: ../src/widgets/toolbox.cpp:1432 +#: ../src/widgets/toolbox.cpp:1434 msgid "Node Cusp" msgstr "Hoekig knooppunt" -#: ../src/widgets/toolbox.cpp:1433 +#: ../src/widgets/toolbox.cpp:1435 msgid "Make selected nodes corner" msgstr "Geselecteerde knooppunten hoekig maken" -#: ../src/widgets/toolbox.cpp:1442 +#: ../src/widgets/toolbox.cpp:1444 msgid "Node Smooth" msgstr "Glad knooppunt" -#: ../src/widgets/toolbox.cpp:1443 +#: ../src/widgets/toolbox.cpp:1445 msgid "Make selected nodes smooth" msgstr "Geselecteerde knooppunten glad maken" -#: ../src/widgets/toolbox.cpp:1452 +#: ../src/widgets/toolbox.cpp:1454 msgid "Node Symmetric" msgstr "Symmetrisch knooppunt" -#: ../src/widgets/toolbox.cpp:1453 +#: ../src/widgets/toolbox.cpp:1455 msgid "Make selected nodes symmetric" msgstr "Geselecteerde knooppunten symmetrisch maken" -#: ../src/widgets/toolbox.cpp:1462 +#: ../src/widgets/toolbox.cpp:1464 msgid "Node Auto" msgstr "Automatisch knooppunt" -#: ../src/widgets/toolbox.cpp:1463 +#: ../src/widgets/toolbox.cpp:1465 msgid "Make selected nodes auto-smooth" msgstr "Geselecteerde knooppunten automatisch glad maken" -#: ../src/widgets/toolbox.cpp:1472 +#: ../src/widgets/toolbox.cpp:1474 msgid "Node Line" msgstr "Recht knooppunt" -#: ../src/widgets/toolbox.cpp:1473 +#: ../src/widgets/toolbox.cpp:1475 msgid "Make selected segments lines" msgstr "Van geselecteerde segmenten rechte lijnen maken" -#: ../src/widgets/toolbox.cpp:1482 +#: ../src/widgets/toolbox.cpp:1484 msgid "Node Curve" msgstr "Krom knooppunt" -#: ../src/widgets/toolbox.cpp:1483 +#: ../src/widgets/toolbox.cpp:1485 msgid "Make selected segments curves" msgstr "Van geselecteerde segmenten krommes maken" -#: ../src/widgets/toolbox.cpp:1492 +#: ../src/widgets/toolbox.cpp:1494 msgid "Show Transform Handles" msgstr "Transformatiehandvatten tonen" -#: ../src/widgets/toolbox.cpp:1493 +#: ../src/widgets/toolbox.cpp:1495 msgid "Show transformation handles for selected nodes" msgstr "Transformatiehandvatten tonen voor geselecteerde knooppunten" -#: ../src/widgets/toolbox.cpp:1503 +#: ../src/widgets/toolbox.cpp:1505 msgid "Show Handles" msgstr "Handvatten tonen" -#: ../src/widgets/toolbox.cpp:1504 +#: ../src/widgets/toolbox.cpp:1506 msgid "Show Bezier handles of selected nodes" msgstr "Bezierhandvatten van geselecteerde knooppunten tonen" -#: ../src/widgets/toolbox.cpp:1514 +#: ../src/widgets/toolbox.cpp:1516 msgid "Show Outline" msgstr "Silhouet tonen" -#: ../src/widgets/toolbox.cpp:1515 +#: ../src/widgets/toolbox.cpp:1517 msgid "Show path outline (without path effects)" msgstr "Padindicator tonen (zonder padeffecten)" -#: ../src/widgets/toolbox.cpp:1537 +#: ../src/widgets/toolbox.cpp:1539 msgid "Edit clipping paths" msgstr "Afsnijpaden bewerken" -#: ../src/widgets/toolbox.cpp:1538 +#: ../src/widgets/toolbox.cpp:1540 msgid "Show clipping path(s) of selected object(s)" msgstr "Afsnijdingspad(en) van geselecteerde object(en) tonen" -#: ../src/widgets/toolbox.cpp:1548 +#: ../src/widgets/toolbox.cpp:1550 msgid "Edit masks" msgstr "Maskers bewerken" -#: ../src/widgets/toolbox.cpp:1549 +#: ../src/widgets/toolbox.cpp:1551 msgid "Show mask(s) of selected object(s)" msgstr "Masker(s) van geselecteerde object(en) tonen" -#: ../src/widgets/toolbox.cpp:1563 +#: ../src/widgets/toolbox.cpp:1565 msgid "X coordinate:" msgstr "X-coΓ¶rdinaat:" # Er wordt altijd maar één coΓ¶rdinaat getoond, dus enkelvoud is beter. -#: ../src/widgets/toolbox.cpp:1563 +#: ../src/widgets/toolbox.cpp:1565 msgid "X coordinate of selected node(s)" msgstr "X-coΓ¶rdinaat van geselecteerd knooppunt" -#: ../src/widgets/toolbox.cpp:1581 +#: ../src/widgets/toolbox.cpp:1583 msgid "Y coordinate:" msgstr "Y-coΓ¶rdinaat:" -#: ../src/widgets/toolbox.cpp:1581 +#: ../src/widgets/toolbox.cpp:1583 msgid "Y coordinate of selected node(s)" msgstr "Y-coΓ¶rdinaat van geselecteerd knooppunt" -#: ../src/widgets/toolbox.cpp:1665 -#: ../src/widgets/toolbox.cpp:7583 +#: ../src/widgets/toolbox.cpp:1667 +#: ../src/widgets/toolbox.cpp:7625 msgid "Font Size" msgstr "Lettertypegrootte" -#: ../src/widgets/toolbox.cpp:1665 +#: ../src/widgets/toolbox.cpp:1667 msgid "Font Size:" msgstr "Lettertypegrootte:" -#: ../src/widgets/toolbox.cpp:1666 +#: ../src/widgets/toolbox.cpp:1668 msgid "The font size to be used in the measurement labels" msgstr "Lettertypegrootte voor de meetlabels" -#: ../src/widgets/toolbox.cpp:2264 +#: ../src/widgets/toolbox.cpp:1680 +#: ../src/widgets/toolbox.cpp:1688 +#, fuzzy +msgid "The units to be used for the measurements" +msgstr "Lettertypegrootte voor de meetlabels" + +#: ../src/widgets/toolbox.cpp:2286 msgid "Bounding box" msgstr "Omvattend vak" -#: ../src/widgets/toolbox.cpp:2264 +#: ../src/widgets/toolbox.cpp:2286 msgid "Snap bounding box corners" msgstr "Aan hoeken van omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:2273 +#: ../src/widgets/toolbox.cpp:2295 msgid "Bounding box edges" msgstr "Randen van omvattend vak" -#: ../src/widgets/toolbox.cpp:2273 +#: ../src/widgets/toolbox.cpp:2295 msgid "Snap to edges of a bounding box" msgstr "Aan randen van omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:2282 +#: ../src/widgets/toolbox.cpp:2304 msgid "Bounding box corners" -msgstr "_Hoeken van omvattend vak" +msgstr "Hoeken van omvattend vak" -#: ../src/widgets/toolbox.cpp:2282 +#: ../src/widgets/toolbox.cpp:2304 msgid "Snap to bounding box corners" msgstr "Aan hoeken van omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:2291 +#: ../src/widgets/toolbox.cpp:2313 msgid "BBox Edge Midpoints" msgstr "Midden randen omvattend vak" -#: ../src/widgets/toolbox.cpp:2291 +#: ../src/widgets/toolbox.cpp:2313 msgid "Snap from and to midpoints of bounding box edges" msgstr "Aan het midden van de randen van het omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:2301 +#: ../src/widgets/toolbox.cpp:2323 msgid "BBox Centers" msgstr "Middelpunt omvattend vak" -#: ../src/widgets/toolbox.cpp:2301 +#: ../src/widgets/toolbox.cpp:2323 msgid "Snapping from and to centers of bounding boxes" msgstr "Aan het middelpunt van omvattende vakken kleven" -#: ../src/widgets/toolbox.cpp:2310 +#: ../src/widgets/toolbox.cpp:2332 msgid "Snap nodes or handles" msgstr "Aan knooppunten of handvatten kleven" -#: ../src/widgets/toolbox.cpp:2318 +#: ../src/widgets/toolbox.cpp:2340 msgid "Snap to paths" msgstr "Aan paden kleven" -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2349 msgid "Path intersections" msgstr "Kruispunten van paden" -#: ../src/widgets/toolbox.cpp:2327 +#: ../src/widgets/toolbox.cpp:2349 msgid "Snap to path intersections" msgstr "Aan kruispunten van paden kleven" -#: ../src/widgets/toolbox.cpp:2336 +#: ../src/widgets/toolbox.cpp:2358 msgid "To nodes" msgstr "Aan knooppunten" -#: ../src/widgets/toolbox.cpp:2336 +#: ../src/widgets/toolbox.cpp:2358 msgid "Snap to cusp nodes" msgstr "Aan hoekige knooppunten kleven" -#: ../src/widgets/toolbox.cpp:2345 +#: ../src/widgets/toolbox.cpp:2367 msgid "Smooth nodes" msgstr "Afgevlakte knooppunten" -#: ../src/widgets/toolbox.cpp:2345 +#: ../src/widgets/toolbox.cpp:2367 msgid "Snap to smooth nodes" msgstr "Aan afgevlakte knooppunten kleven" -#: ../src/widgets/toolbox.cpp:2354 +#: ../src/widgets/toolbox.cpp:2376 msgid "Line Midpoints" msgstr "Midden lijnsegment" -#: ../src/widgets/toolbox.cpp:2354 +#: ../src/widgets/toolbox.cpp:2376 msgid "Snap from and to midpoints of line segments" msgstr "Aan midden van lijnsegmenten kleven" -#: ../src/widgets/toolbox.cpp:2363 +#: ../src/widgets/toolbox.cpp:2385 +#, fuzzy +msgid "Others" +msgstr "Anders" + +#: ../src/widgets/toolbox.cpp:2385 +msgid "Snap other points (centers, guide origins, gradient handles, etc.)" +msgstr "" + +#: ../src/widgets/toolbox.cpp:2393 msgid "Object Centers" msgstr "Objectmiddelpunten" -#: ../src/widgets/toolbox.cpp:2363 +#: ../src/widgets/toolbox.cpp:2393 msgid "Snap from and to centers of objects" msgstr "Aan het middelpunt van objecten kleven" -#: ../src/widgets/toolbox.cpp:2372 +#: ../src/widgets/toolbox.cpp:2402 msgid "Rotation Centers" msgstr "Rotatiemiddelpunt" -#: ../src/widgets/toolbox.cpp:2372 +#: ../src/widgets/toolbox.cpp:2402 msgid "Snap from and to an item's rotation center" msgstr "Aan het rotatiecentrum van een item kleven" -#: ../src/widgets/toolbox.cpp:2381 +#: ../src/widgets/toolbox.cpp:2411 +msgid "Text baseline" +msgstr "Grondlijn tekst" + +#: ../src/widgets/toolbox.cpp:2411 +#, fuzzy +msgid "Snap from and to text anchors and baselines" +msgstr "Aan het middelpunt van objecten kleven" + +#: ../src/widgets/toolbox.cpp:2421 msgid "Page border" msgstr "Paginarand" -#: ../src/widgets/toolbox.cpp:2381 +#: ../src/widgets/toolbox.cpp:2421 msgid "Snap to the page border" msgstr "Aan paginarand kleven" -#: ../src/widgets/toolbox.cpp:2390 +#: ../src/widgets/toolbox.cpp:2430 msgid "Snap to grids" msgstr "Aan rasters kleven" -#: ../src/widgets/toolbox.cpp:2399 +#: ../src/widgets/toolbox.cpp:2439 msgid "Snap to guides" msgstr "Aan hulplijnen kleven" -#: ../src/widgets/toolbox.cpp:2604 +#: ../src/widgets/toolbox.cpp:2652 msgid "Star: Change number of corners" msgstr "Ster: aantal hoeken veranderen" -#: ../src/widgets/toolbox.cpp:2652 +#: ../src/widgets/toolbox.cpp:2700 msgid "Star: Change spoke ratio" msgstr "Ster: spaakverhouding veranderen" -#: ../src/widgets/toolbox.cpp:2697 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make polygon" msgstr "Veelhoek maken" -#: ../src/widgets/toolbox.cpp:2697 +#: ../src/widgets/toolbox.cpp:2745 msgid "Make star" msgstr "Ster maken" -#: ../src/widgets/toolbox.cpp:2735 +#: ../src/widgets/toolbox.cpp:2783 msgid "Star: Change rounding" msgstr "Ster: afronding veranderen" -#: ../src/widgets/toolbox.cpp:2773 +#: ../src/widgets/toolbox.cpp:2821 msgid "Star: Change randomization" msgstr "Ster: willekeurigheid veranderen" -#: ../src/widgets/toolbox.cpp:2968 +#: ../src/widgets/toolbox.cpp:3016 msgid "Regular polygon (with one handle) instead of a star" msgstr "Regelmatige veelhoek (met één handvat) in plaats van een ster" -#: ../src/widgets/toolbox.cpp:2975 +#: ../src/widgets/toolbox.cpp:3023 msgid "Star instead of a regular polygon (with one handle)" msgstr "Ster in plaats van regelmatige veelhoek (met één handvat)" -#: ../src/widgets/toolbox.cpp:2996 +#: ../src/widgets/toolbox.cpp:3044 msgid "triangle/tri-star" msgstr "driehoek/driepuntige ster" -#: ../src/widgets/toolbox.cpp:2996 +#: ../src/widgets/toolbox.cpp:3044 msgid "square/quad-star" msgstr "vierkant/vierpuntige ster" -#: ../src/widgets/toolbox.cpp:2996 +#: ../src/widgets/toolbox.cpp:3044 msgid "pentagon/five-pointed star" msgstr "vijfhoek/vijfpuntige ster" -#: ../src/widgets/toolbox.cpp:2996 +#: ../src/widgets/toolbox.cpp:3044 msgid "hexagon/six-pointed star" msgstr "zeshoek/zespuntige ster" -#: ../src/widgets/toolbox.cpp:2999 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners" msgstr "Hoeken" -#: ../src/widgets/toolbox.cpp:2999 +#: ../src/widgets/toolbox.cpp:3047 msgid "Corners:" msgstr "Hoeken:" -#: ../src/widgets/toolbox.cpp:2999 +#: ../src/widgets/toolbox.cpp:3047 msgid "Number of corners of a polygon or star" msgstr "Aantal hoeken van een veelhoek of ster" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "thin-ray star" msgstr "dunstralige ster" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "pentagram" msgstr "pentagram" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "hexagram" msgstr "hexagram" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "heptagram" msgstr "heptagram" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "octagram" msgstr "octagram" -#: ../src/widgets/toolbox.cpp:3012 +#: ../src/widgets/toolbox.cpp:3060 msgid "regular polygon" msgstr "regelmatige veelhoek" -#: ../src/widgets/toolbox.cpp:3015 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio" msgstr "Spaakverhouding" -#: ../src/widgets/toolbox.cpp:3015 +#: ../src/widgets/toolbox.cpp:3063 msgid "Spoke ratio:" msgstr "Spaakverhouding:" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/toolbox.cpp:3018 +#: ../src/widgets/toolbox.cpp:3066 msgid "Base radius to tip radius ratio" msgstr "Verhouding tussen de straal en de lengte van een spaak" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "stretched" msgstr "uitgerekt" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "twisted" msgstr "gewrongen" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly pinched" msgstr "licht afgeknepen" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "NOT rounded" msgstr "NIET afgerond" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "slightly rounded" msgstr "licht afgerond" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "visibly rounded" msgstr "zichtbaar afgerond" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "well rounded" msgstr "goed afgerond" -#: ../src/widgets/toolbox.cpp:3036 +#: ../src/widgets/toolbox.cpp:3084 msgid "amply rounded" msgstr "flink afgerond" -#: ../src/widgets/toolbox.cpp:3036 -#: ../src/widgets/toolbox.cpp:3051 +#: ../src/widgets/toolbox.cpp:3084 +#: ../src/widgets/toolbox.cpp:3099 msgid "blown up" msgstr "opgeblazen" -#: ../src/widgets/toolbox.cpp:3039 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded" msgstr "Afgerond" # Het gaat hier om een hoeveelheid. -#: ../src/widgets/toolbox.cpp:3039 +#: ../src/widgets/toolbox.cpp:3087 msgid "Rounded:" msgstr "Afronding:" -#: ../src/widgets/toolbox.cpp:3039 +#: ../src/widgets/toolbox.cpp:3087 msgid "How much rounded are the corners (0 for sharp)" msgstr "Hoe hoeken worden afgerond (0 voor scherpe hoeken)" -#: ../src/widgets/toolbox.cpp:3051 +#: ../src/widgets/toolbox.cpp:3099 msgid "NOT randomized" msgstr "GEEN willekeur" -#: ../src/widgets/toolbox.cpp:3051 +#: ../src/widgets/toolbox.cpp:3099 msgid "slightly irregular" msgstr "licht onregelmatig" -#: ../src/widgets/toolbox.cpp:3051 +#: ../src/widgets/toolbox.cpp:3099 msgid "visibly randomized" msgstr "zichtbaar onregelmatig" -#: ../src/widgets/toolbox.cpp:3051 +#: ../src/widgets/toolbox.cpp:3099 msgid "strongly randomized" msgstr "sterk onregelmatig" -#: ../src/widgets/toolbox.cpp:3054 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized" msgstr "Willekeur" -#: ../src/widgets/toolbox.cpp:3054 +#: ../src/widgets/toolbox.cpp:3102 msgid "Randomized:" msgstr "Willekeur:" -#: ../src/widgets/toolbox.cpp:3054 +#: ../src/widgets/toolbox.cpp:3102 msgid "Scatter randomly the corners and angles" msgstr "Punten en hoeken willekeurig uitspreiden" -#: ../src/widgets/toolbox.cpp:3069 -#: ../src/widgets/toolbox.cpp:4004 -#: ../src/widgets/toolbox.cpp:4259 -#: ../src/widgets/toolbox.cpp:8562 +#: ../src/widgets/toolbox.cpp:3117 +#: ../src/widgets/toolbox.cpp:4052 +#: ../src/widgets/toolbox.cpp:4307 +#: ../src/widgets/toolbox.cpp:8604 msgid "Defaults" msgstr "Standaardwaarden" -#: ../src/widgets/toolbox.cpp:3070 -#: ../src/widgets/toolbox.cpp:4005 +#: ../src/widgets/toolbox.cpp:3118 +#: ../src/widgets/toolbox.cpp:4053 msgid "Reset shape parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Zet de instellingen van de vorm terug naar de standaard instellingen (gebruik Bestand -> Inkscape voorkeuren -> Gereedschappen om de standaard instellingen te wijzigen)" -#: ../src/widgets/toolbox.cpp:3142 +#: ../src/widgets/toolbox.cpp:3190 msgid "Change rectangle" msgstr "Rechthoek aanpassen" -#: ../src/widgets/toolbox.cpp:3329 +#: ../src/widgets/toolbox.cpp:3377 msgid "W:" msgstr "B:" -#: ../src/widgets/toolbox.cpp:3329 +#: ../src/widgets/toolbox.cpp:3377 msgid "Width of rectangle" msgstr "Breedte van de rechthoek" -#: ../src/widgets/toolbox.cpp:3346 +#: ../src/widgets/toolbox.cpp:3394 msgid "H:" msgstr "H:" -#: ../src/widgets/toolbox.cpp:3346 +#: ../src/widgets/toolbox.cpp:3394 msgid "Height of rectangle" msgstr "Hoogte van de rechthoek" -#: ../src/widgets/toolbox.cpp:3360 -#: ../src/widgets/toolbox.cpp:3375 +#: ../src/widgets/toolbox.cpp:3408 +#: ../src/widgets/toolbox.cpp:3423 msgid "not rounded" msgstr "zonder afronding" -#: ../src/widgets/toolbox.cpp:3363 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius" msgstr "Horizontale straal" -#: ../src/widgets/toolbox.cpp:3363 +#: ../src/widgets/toolbox.cpp:3411 msgid "Rx:" msgstr "Rx:" -#: ../src/widgets/toolbox.cpp:3363 +#: ../src/widgets/toolbox.cpp:3411 msgid "Horizontal radius of rounded corners" msgstr "Horizontale straal van afgeronde hoeken" -#: ../src/widgets/toolbox.cpp:3378 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius" msgstr "Verticale straal" -#: ../src/widgets/toolbox.cpp:3378 +#: ../src/widgets/toolbox.cpp:3426 msgid "Ry:" msgstr "Ry:" -#: ../src/widgets/toolbox.cpp:3378 +#: ../src/widgets/toolbox.cpp:3426 msgid "Vertical radius of rounded corners" msgstr "Verticale straal van afgeronde hoeken" -#: ../src/widgets/toolbox.cpp:3397 +#: ../src/widgets/toolbox.cpp:3445 msgid "Not rounded" msgstr "Niet afgerond" -#: ../src/widgets/toolbox.cpp:3398 +#: ../src/widgets/toolbox.cpp:3446 msgid "Make corners sharp" msgstr "De hoeken weer scherp maken" #. TODO: use the correct axis here, too -#: ../src/widgets/toolbox.cpp:3593 +#: ../src/widgets/toolbox.cpp:3641 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "3D-kubus: Perspectief veranderen (hoek van oneindige as)" -#: ../src/widgets/toolbox.cpp:3660 +#: ../src/widgets/toolbox.cpp:3708 msgid "Angle in X direction" msgstr "Hoek in X-richting" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3662 +#: ../src/widgets/toolbox.cpp:3710 msgid "Angle of PLs in X direction" msgstr "Hoek van perspectieflijn in X-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3684 +#: ../src/widgets/toolbox.cpp:3732 msgid "State of VP in X direction" msgstr "Toestand van verdwijnpunt in X-richting" -#: ../src/widgets/toolbox.cpp:3685 +#: ../src/widgets/toolbox.cpp:3733 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in X-richting omschakelen tussen 'eindig ' en 'oneindig' (=parallel)" -#: ../src/widgets/toolbox.cpp:3700 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle in Y direction" msgstr "Hoek in Y-richting" -#: ../src/widgets/toolbox.cpp:3700 +#: ../src/widgets/toolbox.cpp:3748 msgid "Angle Y:" msgstr "Y-hoek:" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3702 +#: ../src/widgets/toolbox.cpp:3750 msgid "Angle of PLs in Y direction" msgstr "Hoek van perspectieflijn in Y-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3723 +#: ../src/widgets/toolbox.cpp:3771 msgid "State of VP in Y direction" msgstr "Toestand van verdwijnpunt in Y-richting" -#: ../src/widgets/toolbox.cpp:3724 +#: ../src/widgets/toolbox.cpp:3772 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in Y-richting omschakelen tussen 'eindig' en 'oneindig' (=parallel)" -#: ../src/widgets/toolbox.cpp:3739 +#: ../src/widgets/toolbox.cpp:3787 msgid "Angle in Z direction" msgstr "Hoek in Z-richting" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/toolbox.cpp:3741 +#: ../src/widgets/toolbox.cpp:3789 msgid "Angle of PLs in Z direction" msgstr "Hoek van perspectieflijn in Z-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/toolbox.cpp:3762 +#: ../src/widgets/toolbox.cpp:3810 msgid "State of VP in Z direction" msgstr "Toestand van verdwijnpunt in Z-richting" -#: ../src/widgets/toolbox.cpp:3763 +#: ../src/widgets/toolbox.cpp:3811 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in Z-richting omschakelen tussen 'eindig ' en 'oneindig' (=parallel)" -#: ../src/widgets/toolbox.cpp:3821 +#: ../src/widgets/toolbox.cpp:3869 msgid "Change spiral" msgstr "Spiraal aanpassen" -#: ../src/widgets/toolbox.cpp:3961 +#: ../src/widgets/toolbox.cpp:4009 msgid "just a curve" msgstr "gewoon een kromme" -#: ../src/widgets/toolbox.cpp:3961 +#: ../src/widgets/toolbox.cpp:4009 msgid "one full revolution" msgstr "één hele omwenteling" -#: ../src/widgets/toolbox.cpp:3964 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of turns" msgstr "Aantal stappen" -#: ../src/widgets/toolbox.cpp:3964 +#: ../src/widgets/toolbox.cpp:4012 msgid "Turns:" msgstr "Omwentelingen:" -#: ../src/widgets/toolbox.cpp:3964 +#: ../src/widgets/toolbox.cpp:4012 msgid "Number of revolutions" msgstr "Aantal omwentelingen" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "circle" msgstr "cirkel" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is much denser" msgstr "rand is veel dichter" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "edge is denser" msgstr "rand is dichter" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "even" msgstr "gelijkmatig" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is denser" msgstr "centrum is dichter" -#: ../src/widgets/toolbox.cpp:3975 +#: ../src/widgets/toolbox.cpp:4023 msgid "center is much denser" msgstr "centrum is veel dichter" -#: ../src/widgets/toolbox.cpp:3978 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence" msgstr "Uitwaaiering" -#: ../src/widgets/toolbox.cpp:3978 +#: ../src/widgets/toolbox.cpp:4026 msgid "Divergence:" msgstr "Uitwaaiering:" -#: ../src/widgets/toolbox.cpp:3978 +#: ../src/widgets/toolbox.cpp:4026 msgid "How much denser/sparser are outer revolutions; 1 = uniform" msgstr "Hoeveel de buitenste omwentelingen uitwaaieren; 1=gelijkmatig" -#: ../src/widgets/toolbox.cpp:3989 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts from center" msgstr "begint in centrum" -#: ../src/widgets/toolbox.cpp:3989 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts mid-way" msgstr "begint halfweg" -#: ../src/widgets/toolbox.cpp:3989 +#: ../src/widgets/toolbox.cpp:4037 msgid "starts near edge" msgstr "begint bij rand" -#: ../src/widgets/toolbox.cpp:3992 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius" msgstr "Binnenstraal" -#: ../src/widgets/toolbox.cpp:3992 +#: ../src/widgets/toolbox.cpp:4040 msgid "Inner radius:" msgstr "Binnenstraal:" -#: ../src/widgets/toolbox.cpp:3992 +#: ../src/widgets/toolbox.cpp:4040 msgid "Radius of the innermost revolution (relative to the spiral size)" msgstr "Straal van de binnenste omwenteling (ten opzichte van de spiraalgrootte)" -#: ../src/widgets/toolbox.cpp:4064 +#: ../src/widgets/toolbox.cpp:4112 msgid "Bezier" msgstr "Bezier" -#: ../src/widgets/toolbox.cpp:4065 +#: ../src/widgets/toolbox.cpp:4113 msgid "Create regular Bezier path" msgstr "Regulier Bezierpad aanmaken" -#: ../src/widgets/toolbox.cpp:4071 +#: ../src/widgets/toolbox.cpp:4119 msgid "Spiro" msgstr "Spiraal" -#: ../src/widgets/toolbox.cpp:4072 +#: ../src/widgets/toolbox.cpp:4120 msgid "Create Spiro path" msgstr "Spiraal maken" -#: ../src/widgets/toolbox.cpp:4079 +#: ../src/widgets/toolbox.cpp:4127 msgid "Zigzag" msgstr "Zigzag" -#: ../src/widgets/toolbox.cpp:4080 +#: ../src/widgets/toolbox.cpp:4128 msgid "Create a sequence of straight line segments" msgstr "Een sequentie van rechte lijnstukken maken" -#: ../src/widgets/toolbox.cpp:4086 +#: ../src/widgets/toolbox.cpp:4134 msgid "Paraxial" msgstr "Loodrecht" -#: ../src/widgets/toolbox.cpp:4087 +#: ../src/widgets/toolbox.cpp:4135 msgid "Create a sequence of paraxial line segments" msgstr "Een sequentie van onderling loodrechte lijnstukken maken" -#: ../src/widgets/toolbox.cpp:4095 +#: ../src/widgets/toolbox.cpp:4143 msgid "Mode of new lines drawn by this tool" msgstr "Modus van nieuwe lijnen getekend door dit gereedschap" -#: ../src/widgets/toolbox.cpp:4124 +#: ../src/widgets/toolbox.cpp:4172 msgid "Triangle in" msgstr "Aflopende driehoek" -#: ../src/widgets/toolbox.cpp:4125 +#: ../src/widgets/toolbox.cpp:4173 msgid "Triangle out" msgstr "Oplopende driehoek" -#: ../src/widgets/toolbox.cpp:4127 +#: ../src/widgets/toolbox.cpp:4175 msgid "From clipboard" msgstr "Van klembord" -#: ../src/widgets/toolbox.cpp:4152 -#: ../src/widgets/toolbox.cpp:4153 +#: ../src/widgets/toolbox.cpp:4200 +#: ../src/widgets/toolbox.cpp:4201 msgid "Shape:" msgstr "Vorm:" -#: ../src/widgets/toolbox.cpp:4152 +#: ../src/widgets/toolbox.cpp:4200 msgid "Shape of new paths drawn by this tool" msgstr "Vorm van nieuwe paden getekend met dit gereedschap" -#: ../src/widgets/toolbox.cpp:4236 +#: ../src/widgets/toolbox.cpp:4284 msgid "(many nodes, rough)" msgstr "(veel knooppunten, ruw)" #. Mean #. Rotation #. Scale -#: ../src/widgets/toolbox.cpp:4236 -#: ../src/widgets/toolbox.cpp:4344 -#: ../src/widgets/toolbox.cpp:4361 -#: ../src/widgets/toolbox.cpp:4569 -#: ../src/widgets/toolbox.cpp:4664 -#: ../src/widgets/toolbox.cpp:4680 -#: ../src/widgets/toolbox.cpp:4696 -#: ../src/widgets/toolbox.cpp:4756 -#: ../src/widgets/toolbox.cpp:4786 -#: ../src/widgets/toolbox.cpp:4804 -#: ../src/widgets/toolbox.cpp:5159 -#: ../src/widgets/toolbox.cpp:5192 -#: ../src/widgets/toolbox.cpp:6221 +#: ../src/widgets/toolbox.cpp:4284 +#: ../src/widgets/toolbox.cpp:4392 +#: ../src/widgets/toolbox.cpp:4409 +#: ../src/widgets/toolbox.cpp:4617 +#: ../src/widgets/toolbox.cpp:4706 +#: ../src/widgets/toolbox.cpp:4722 +#: ../src/widgets/toolbox.cpp:4738 +#: ../src/widgets/toolbox.cpp:4798 +#: ../src/widgets/toolbox.cpp:4828 +#: ../src/widgets/toolbox.cpp:4846 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:5234 +#: ../src/widgets/toolbox.cpp:6263 msgid "(default)" msgstr "(standaard)" -#: ../src/widgets/toolbox.cpp:4236 +#: ../src/widgets/toolbox.cpp:4284 msgid "(few nodes, smooth)" msgstr "(weinig knooppunten, glad)" -#: ../src/widgets/toolbox.cpp:4239 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing:" msgstr "Afvlakking:" -#: ../src/widgets/toolbox.cpp:4239 +#: ../src/widgets/toolbox.cpp:4287 msgid "Smoothing: " msgstr "Afvlakking: " -#: ../src/widgets/toolbox.cpp:4240 +#: ../src/widgets/toolbox.cpp:4288 msgid "How much smoothing (simplifying) is applied to the line" msgstr "Hoeveel afvlakking (vereenvoudiging) er toegepast wordt op de lijn" -#: ../src/widgets/toolbox.cpp:4260 +#: ../src/widgets/toolbox.cpp:4308 msgid "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Instellingen potlood terugzetten naar de standaardwaarden (gebruik Inkscape-voorkeuren > Gereedschappen om de standaardwaarden te veranderen)" #. Width -#: ../src/widgets/toolbox.cpp:4344 +#: ../src/widgets/toolbox.cpp:4392 msgid "(pinch tweak)" msgstr "(precieze boetsering)" -#: ../src/widgets/toolbox.cpp:4344 +#: ../src/widgets/toolbox.cpp:4392 msgid "(broad tweak)" msgstr "(brede boetsering)" -#: ../src/widgets/toolbox.cpp:4347 +#: ../src/widgets/toolbox.cpp:4395 msgid "The width of the tweak area (relative to the visible canvas area)" msgstr "De grootte van het boetseergebied (ten opzichte van het zichtbare canvas)" #. Force -#: ../src/widgets/toolbox.cpp:4361 +#: ../src/widgets/toolbox.cpp:4409 msgid "(minimum force)" msgstr "(minimale kracht)" -#: ../src/widgets/toolbox.cpp:4361 +#: ../src/widgets/toolbox.cpp:4409 msgid "(maximum force)" msgstr "(maximale kracht)" -#: ../src/widgets/toolbox.cpp:4364 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force" msgstr "Kracht" -#: ../src/widgets/toolbox.cpp:4364 +#: ../src/widgets/toolbox.cpp:4412 msgid "Force:" msgstr "Kracht:" -#: ../src/widgets/toolbox.cpp:4364 +#: ../src/widgets/toolbox.cpp:4412 msgid "The force of the tweak action" msgstr "De kracht van de boetseeracties" -#: ../src/widgets/toolbox.cpp:4382 +#: ../src/widgets/toolbox.cpp:4430 msgid "Move mode" msgstr "Modus verplaatsen" -#: ../src/widgets/toolbox.cpp:4383 +#: ../src/widgets/toolbox.cpp:4431 msgid "Move objects in any direction" msgstr "Objecten in elke richting verplaatsen" -#: ../src/widgets/toolbox.cpp:4389 +#: ../src/widgets/toolbox.cpp:4437 msgid "Move in/out mode" msgstr "Modus naar/van cursor verplaatsen" -#: ../src/widgets/toolbox.cpp:4390 +#: ../src/widgets/toolbox.cpp:4438 msgid "Move objects towards cursor; with Shift from cursor" msgstr "Objecten naar cursor verplaatsen; met Shift van de cursor weg" -#: ../src/widgets/toolbox.cpp:4396 +#: ../src/widgets/toolbox.cpp:4444 msgid "Move jitter mode" msgstr "Modus random verplaatsen" -#: ../src/widgets/toolbox.cpp:4397 +#: ../src/widgets/toolbox.cpp:4445 msgid "Move objects in random directions" msgstr "Objecten in random richting verplaatsen" -#: ../src/widgets/toolbox.cpp:4403 +#: ../src/widgets/toolbox.cpp:4451 msgid "Scale mode" msgstr "Modus schalen" -#: ../src/widgets/toolbox.cpp:4404 +#: ../src/widgets/toolbox.cpp:4452 msgid "Shrink objects, with Shift enlarge" msgstr "Objecten verkleinen, met Shift vergroten" -#: ../src/widgets/toolbox.cpp:4410 +#: ../src/widgets/toolbox.cpp:4458 msgid "Rotate mode" msgstr "Modus roteren" -#: ../src/widgets/toolbox.cpp:4411 +#: ../src/widgets/toolbox.cpp:4459 msgid "Rotate objects, with Shift counterclockwise" msgstr "Objecten roteren, met Shift tegen de richting van de klok in" -#: ../src/widgets/toolbox.cpp:4417 +#: ../src/widgets/toolbox.cpp:4465 msgid "Duplicate/delete mode" msgstr "Modus dupliceren/verwijderen" -#: ../src/widgets/toolbox.cpp:4418 +#: ../src/widgets/toolbox.cpp:4466 msgid "Duplicate objects, with Shift delete" msgstr "Objecten dupliceren, met Shift verwijderen" -#: ../src/widgets/toolbox.cpp:4424 +#: ../src/widgets/toolbox.cpp:4472 msgid "Push mode" msgstr "Modus duwen" -#: ../src/widgets/toolbox.cpp:4425 +#: ../src/widgets/toolbox.cpp:4473 msgid "Push parts of paths in any direction" msgstr "Delen van paden in gewenste richting duwen" -#: ../src/widgets/toolbox.cpp:4431 +#: ../src/widgets/toolbox.cpp:4479 msgid "Shrink/grow mode" msgstr "Modus verdunnen/verdikken" -#: ../src/widgets/toolbox.cpp:4432 +#: ../src/widgets/toolbox.cpp:4480 msgid "Shrink (inset) parts of paths; with Shift grow (outset)" msgstr "Delen van paden verdunnen; met Shift verdikken" -#: ../src/widgets/toolbox.cpp:4438 +#: ../src/widgets/toolbox.cpp:4486 msgid "Attract/repel mode" msgstr "Modus aantrekken/afstoten" -#: ../src/widgets/toolbox.cpp:4439 +#: ../src/widgets/toolbox.cpp:4487 msgid "Attract parts of paths towards cursor; with Shift from cursor" msgstr "Delen van paden naar de cursor toe aantrekken; met Shift om van de cursor af te stoten" -#: ../src/widgets/toolbox.cpp:4445 +#: ../src/widgets/toolbox.cpp:4493 msgid "Roughen mode" msgstr "Verruwingsmodus" -#: ../src/widgets/toolbox.cpp:4446 +#: ../src/widgets/toolbox.cpp:4494 msgid "Roughen parts of paths" msgstr "Delen van paden verruwen" -#: ../src/widgets/toolbox.cpp:4452 +#: ../src/widgets/toolbox.cpp:4500 msgid "Color paint mode" msgstr "Verfmodus" -#: ../src/widgets/toolbox.cpp:4453 +#: ../src/widgets/toolbox.cpp:4501 msgid "Paint the tool's color upon selected objects" msgstr "Gekozen kleur over aangewezen objecten verven" -#: ../src/widgets/toolbox.cpp:4459 +#: ../src/widgets/toolbox.cpp:4507 msgid "Color jitter mode" msgstr "Verkleuringsmodus" -#: ../src/widgets/toolbox.cpp:4460 +#: ../src/widgets/toolbox.cpp:4508 msgid "Jitter the colors of selected objects" msgstr "Kleur van de aangewezen objecten veranderen door slepen" -#: ../src/widgets/toolbox.cpp:4466 +#: ../src/widgets/toolbox.cpp:4514 msgid "Blur mode" msgstr "_Mengmodus:" -#: ../src/widgets/toolbox.cpp:4467 +#: ../src/widgets/toolbox.cpp:4515 msgid "Blur selected objects more; with Shift, blur less" msgstr "Geselecteerde objecten meer vervagen; minder vervagen met Shift" -#: ../src/widgets/toolbox.cpp:4494 +#: ../src/widgets/toolbox.cpp:4542 msgid "Channels:" msgstr "Kanalen:" -#: ../src/widgets/toolbox.cpp:4506 +#: ../src/widgets/toolbox.cpp:4554 msgid "In color mode, act on objects' hue" msgstr "Op de tint van het object inwerken (in verfmodi)" #. TRANSLATORS: "H" here stands for hue -#: ../src/widgets/toolbox.cpp:4510 +#: ../src/widgets/toolbox.cpp:4558 msgid "H" msgstr "T" -#: ../src/widgets/toolbox.cpp:4522 +#: ../src/widgets/toolbox.cpp:4570 msgid "In color mode, act on objects' saturation" msgstr "Op de verzadiging van het object inwerken (in verfmodi)" #. TRANSLATORS: "S" here stands for Saturation -#: ../src/widgets/toolbox.cpp:4526 +#: ../src/widgets/toolbox.cpp:4574 msgid "S" msgstr "V" -#: ../src/widgets/toolbox.cpp:4538 +#: ../src/widgets/toolbox.cpp:4586 msgid "In color mode, act on objects' lightness" msgstr "Op de lichtheid van het object inwerken (in verfmodi)" #. TRANSLATORS: "L" here stands for Lightness -#: ../src/widgets/toolbox.cpp:4542 +#: ../src/widgets/toolbox.cpp:4590 msgid "L" msgstr "L" -#: ../src/widgets/toolbox.cpp:4554 +#: ../src/widgets/toolbox.cpp:4602 msgid "In color mode, act on objects' opacity" msgstr "Op de ondoorzichtigheid van het object inwerken (in verfmodi)" #. TRANSLATORS: "O" here stands for Opacity -#: ../src/widgets/toolbox.cpp:4558 +#: ../src/widgets/toolbox.cpp:4606 msgid "O" msgstr "O" #. Fidelity -#: ../src/widgets/toolbox.cpp:4569 +#: ../src/widgets/toolbox.cpp:4617 msgid "(rough, simplified)" msgstr "(ruw, vereenvoudigd)" -#: ../src/widgets/toolbox.cpp:4569 +#: ../src/widgets/toolbox.cpp:4617 msgid "(fine, but many nodes)" msgstr "(fijn, maar veel knooppunten)" -#: ../src/widgets/toolbox.cpp:4572 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity" msgstr "Kwaliteit" -#: ../src/widgets/toolbox.cpp:4572 +#: ../src/widgets/toolbox.cpp:4620 msgid "Fidelity:" msgstr "Kwaliteit:" -#: ../src/widgets/toolbox.cpp:4573 +#: ../src/widgets/toolbox.cpp:4621 msgid "Low fidelity simplifies paths; high fidelity preserves path features but may generate a lot of new nodes" msgstr "Een lage kwaliteit vereenvoudigt paden; een hoge kwaliteit behoudt de padeigenschappen maar kan een groot aantal nieuwe knooppunten genereren" -#: ../src/widgets/toolbox.cpp:4591 -#: ../src/widgets/toolbox.cpp:4775 -#: ../src/widgets/toolbox.cpp:5310 +#: ../src/widgets/toolbox.cpp:4639 +#: ../src/widgets/toolbox.cpp:4817 +#: ../src/widgets/toolbox.cpp:5352 msgid "Pressure" msgstr "Druk" -#: ../src/widgets/toolbox.cpp:4592 +#: ../src/widgets/toolbox.cpp:4640 msgid "Use the pressure of the input device to alter the force of tweak action" msgstr "De op het invoerapparaat uitgeoefende druk gebruiken om de boetseerkracht te variΓ«ren" #. Width -#: ../src/widgets/toolbox.cpp:4664 +#: ../src/widgets/toolbox.cpp:4706 msgid "(narrow spray)" msgstr "(smalle verstuiving)" -#: ../src/widgets/toolbox.cpp:4664 +#: ../src/widgets/toolbox.cpp:4706 msgid "(broad spray)" msgstr "(brede verstuiving)" -#: ../src/widgets/toolbox.cpp:4667 +#: ../src/widgets/toolbox.cpp:4709 msgid "The width of the spray area (relative to the visible canvas area)" msgstr "De breedte van het verstuivingsgebied (relatief ten opzichte van het canvas)" -#: ../src/widgets/toolbox.cpp:4680 +#: ../src/widgets/toolbox.cpp:4722 msgid "(maximum mean)" msgstr "(maximum gemiddelde)" -#: ../src/widgets/toolbox.cpp:4683 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus" msgstr "Focus" -#: ../src/widgets/toolbox.cpp:4683 +#: ../src/widgets/toolbox.cpp:4725 msgid "Focus:" msgstr "Focus:" -#: ../src/widgets/toolbox.cpp:4683 -#, fuzzy +#: ../src/widgets/toolbox.cpp:4725 msgid "0 to spray a spot; increase to enlarge the ring radius" -msgstr "0 voor verstuiving op een punt. Vergroot om de straal te vergroten." +msgstr "0 voor puntverstuiving; verhoog om de straal te vergroten." #. Standard_deviation -#: ../src/widgets/toolbox.cpp:4696 +#: ../src/widgets/toolbox.cpp:4738 msgid "(minimum scatter)" msgstr "(minimum spreiding)" -#: ../src/widgets/toolbox.cpp:4696 +#: ../src/widgets/toolbox.cpp:4738 msgid "(maximum scatter)" msgstr "(maximum spreiding)" -#: ../src/widgets/toolbox.cpp:4699 +#: ../src/widgets/toolbox.cpp:4741 #, fuzzy msgctxt "Spray tool" msgid "Scatter" msgstr "Verspreiden" -#: ../src/widgets/toolbox.cpp:4699 -#, fuzzy +#: ../src/widgets/toolbox.cpp:4741 msgctxt "Spray tool" msgid "Scatter:" -msgstr "Verspreiden" +msgstr "Verspreiding:" -#: ../src/widgets/toolbox.cpp:4699 -#, fuzzy +#: ../src/widgets/toolbox.cpp:4741 msgid "Increase to scatter sprayed objects" -msgstr "Vergroot om verstoven objecten te verspreiden." +msgstr "Verhoog om verstoven objecten te verspreiden" -#: ../src/widgets/toolbox.cpp:4718 +#: ../src/widgets/toolbox.cpp:4760 msgid "Spray copies of the initial selection" msgstr "KopieΓ«n van de initiΓ«le selectie verstuiven" -#: ../src/widgets/toolbox.cpp:4725 +#: ../src/widgets/toolbox.cpp:4767 msgid "Spray clones of the initial selection" msgstr "Klonen van de initiΓ«le selectie verstuiven" -#: ../src/widgets/toolbox.cpp:4731 +#: ../src/widgets/toolbox.cpp:4773 msgid "Spray single path" -msgstr "In één richting verstuiven" +msgstr "Verstuiven in één richting" -#: ../src/widgets/toolbox.cpp:4732 +#: ../src/widgets/toolbox.cpp:4774 msgid "Spray objects in a single path" msgstr "Objecten in één richting verstuiven" #. Population -#: ../src/widgets/toolbox.cpp:4756 +#: ../src/widgets/toolbox.cpp:4798 msgid "(low population)" msgstr "(klein aantal)" -#: ../src/widgets/toolbox.cpp:4756 +#: ../src/widgets/toolbox.cpp:4798 msgid "(high population)" msgstr "(groot aantal)" -#: ../src/widgets/toolbox.cpp:4759 +#: ../src/widgets/toolbox.cpp:4801 msgid "Amount" msgstr "Hoeveelheid" -#: ../src/widgets/toolbox.cpp:4760 +#: ../src/widgets/toolbox.cpp:4802 #, fuzzy -msgid "Adjusts the number of items sprayed per clic" -msgstr "Het aantal verstoven objecten per klik aanpassen." +msgid "Adjusts the number of items sprayed per click" +msgstr "Het aantal verstoven objecten per klik" -#: ../src/widgets/toolbox.cpp:4776 -#, fuzzy +#: ../src/widgets/toolbox.cpp:4818 msgid "Use the pressure of the input device to alter the amount of sprayed objects" -msgstr "Gebruik de druk op het invoerapparaat om het aantal verstoven objecten aan te passen." +msgstr "De druk op het invoerapparaat gebruiken om het aantal verstoven objecten aan te passen" -#: ../src/widgets/toolbox.cpp:4786 +#: ../src/widgets/toolbox.cpp:4828 msgid "(high rotation variation)" msgstr "(grote variatie draaihoek)" -#: ../src/widgets/toolbox.cpp:4789 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation" msgstr "Draaihoek" -#: ../src/widgets/toolbox.cpp:4789 +#: ../src/widgets/toolbox.cpp:4831 msgid "Rotation:" msgstr "Draaihoek:" -#: ../src/widgets/toolbox.cpp:4791 -#, fuzzy, no-c-format +#: ../src/widgets/toolbox.cpp:4833 +#, no-c-format msgid "Variation of the rotation of the sprayed objects; 0% for the same rotation than the original object" -msgstr "Variatie van de rotatie van de verstoven objecten. 0% voor dezelfde rotatie als het originele object." +msgstr "Variatie van de rotatie van de verstoven objecten; 0% voor dezelfde rotatie als het originele object" -#: ../src/widgets/toolbox.cpp:4804 +#: ../src/widgets/toolbox.cpp:4846 msgid "(high scale variation)" msgstr "(grote variatie schaal)" -#: ../src/widgets/toolbox.cpp:4807 +#: ../src/widgets/toolbox.cpp:4849 #, fuzzy msgctxt "Spray tool" msgid "Scale" -msgstr "Schalen" +msgstr "Schaal" -#: ../src/widgets/toolbox.cpp:4807 -#, fuzzy +#: ../src/widgets/toolbox.cpp:4849 msgctxt "Spray tool" msgid "Scale:" msgstr "Schaal:" -#: ../src/widgets/toolbox.cpp:4809 -#, fuzzy, no-c-format +#: ../src/widgets/toolbox.cpp:4851 +#, no-c-format msgid "Variation in the scale of the sprayed objects; 0% for the same scale than the original object" -msgstr "Variatie van de schaal van de verstoven objecten. 0% voor de schaal van het originele object." +msgstr "Variatie van de schaal van de verstoven objecten; 0% voor de schaal van het originele object" -#: ../src/widgets/toolbox.cpp:4983 +#: ../src/widgets/toolbox.cpp:5025 msgid "No preset" msgstr "Geen voorkeur" -#: ../src/widgets/toolbox.cpp:5001 +#: ../src/widgets/toolbox.cpp:5043 msgid "Save..." msgstr "Opslaan..." #. Width -#: ../src/widgets/toolbox.cpp:5159 -#: ../src/widgets/toolbox.cpp:6221 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:6263 msgid "(hairline)" msgstr "(haarlijn)" -#: ../src/widgets/toolbox.cpp:5159 -#: ../src/widgets/toolbox.cpp:6221 +#: ../src/widgets/toolbox.cpp:5201 +#: ../src/widgets/toolbox.cpp:6263 msgid "(broad stroke)" msgstr "(dikke lijn)" -#: ../src/widgets/toolbox.cpp:5162 -#: ../src/widgets/toolbox.cpp:6224 +#: ../src/widgets/toolbox.cpp:5204 +#: ../src/widgets/toolbox.cpp:6266 msgid "Pen Width" msgstr "Penbreedte" -#: ../src/widgets/toolbox.cpp:5163 +#: ../src/widgets/toolbox.cpp:5205 msgid "The width of the calligraphic pen (relative to the visible canvas area)" msgstr "De breedte van de kalligrafische pen (ten opzichte van het canvas)" #. Thinning -#: ../src/widgets/toolbox.cpp:5176 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed blows up stroke)" msgstr "(snelheid verbreedt de lijn)" -#: ../src/widgets/toolbox.cpp:5176 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight widening)" msgstr "(lichte verbreding)" -#: ../src/widgets/toolbox.cpp:5176 +#: ../src/widgets/toolbox.cpp:5218 msgid "(constant width)" msgstr "(constante breedte)" -#: ../src/widgets/toolbox.cpp:5176 +#: ../src/widgets/toolbox.cpp:5218 msgid "(slight thinning, default)" msgstr "(lichte versmalling, standaard)" -#: ../src/widgets/toolbox.cpp:5176 +#: ../src/widgets/toolbox.cpp:5218 msgid "(speed deflates stroke)" msgstr "(snelheid versmalt de lijn)" -#: ../src/widgets/toolbox.cpp:5179 +#: ../src/widgets/toolbox.cpp:5221 msgid "Stroke Thinning" msgstr "Lijnversmalling" -#: ../src/widgets/toolbox.cpp:5179 +#: ../src/widgets/toolbox.cpp:5221 msgid "Thinning:" msgstr "Versmalling:" -#: ../src/widgets/toolbox.cpp:5180 +#: ../src/widgets/toolbox.cpp:5222 msgid "How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 makes them broader, 0 makes width independent of velocity)" msgstr "De invloed van snelheid op de dikte van de lijn (>0 maakte snelle lijnen dunner, <0 maakt ze dikker, 0 maakt de dikte onafhankelijk van de snelheid)" #. Angle -#: ../src/widgets/toolbox.cpp:5192 +#: ../src/widgets/toolbox.cpp:5234 msgid "(left edge up)" msgstr "(rand links omhoog)" -#: ../src/widgets/toolbox.cpp:5192 +#: ../src/widgets/toolbox.cpp:5234 msgid "(horizontal)" msgstr "(horizontaal)" -#: ../src/widgets/toolbox.cpp:5192 +#: ../src/widgets/toolbox.cpp:5234 msgid "(right edge up)" msgstr "(rand rechts omhoog)" -#: ../src/widgets/toolbox.cpp:5195 +#: ../src/widgets/toolbox.cpp:5237 msgid "Pen Angle" msgstr "Pen hoek" -#: ../src/widgets/toolbox.cpp:5196 +#: ../src/widgets/toolbox.cpp:5237 +#: ../share/extensions/motion.inx.h:1 +#: ../share/extensions/restack.inx.h:1 +msgid "Angle:" +msgstr "Hoek:" + +#: ../src/widgets/toolbox.cpp:5238 msgid "The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if fixation = 0)" msgstr "De hoek van de punt van de pen (in graden; 0 = horizontaal. Heeft geen invloed als de fixatie 0 is)." #. Fixation -#: ../src/widgets/toolbox.cpp:5210 +#: ../src/widgets/toolbox.cpp:5252 msgid "(perpendicular to stroke, \"brush\")" msgstr "(loodrecht op lijn, \"penseel\")" -#: ../src/widgets/toolbox.cpp:5210 +#: ../src/widgets/toolbox.cpp:5252 msgid "(almost fixed, default)" msgstr "(bijna vast, standaard)" -#: ../src/widgets/toolbox.cpp:5210 +#: ../src/widgets/toolbox.cpp:5252 msgid "(fixed by Angle, \"pen\")" msgstr "(vaste hoek, \"pen\")" -#: ../src/widgets/toolbox.cpp:5213 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation" msgstr "Fixatie" -#: ../src/widgets/toolbox.cpp:5213 +#: ../src/widgets/toolbox.cpp:5255 msgid "Fixation:" msgstr "Fixatie:" -#: ../src/widgets/toolbox.cpp:5214 +#: ../src/widgets/toolbox.cpp:5256 msgid "Angle behavior (0 = nib always perpendicular to stroke direction, 100 = fixed angle)" msgstr "Hoekgedrag van de pen (0 = altijd loodrecht op de tekenrichting, 100 = vaste hoek)" #. Cap Rounding -#: ../src/widgets/toolbox.cpp:5226 +#: ../src/widgets/toolbox.cpp:5268 msgid "(blunt caps, default)" msgstr "(stomp kapje, standaard)" -#: ../src/widgets/toolbox.cpp:5226 +#: ../src/widgets/toolbox.cpp:5268 msgid "(slightly bulging)" msgstr "(licht uitpuilend)" -#: ../src/widgets/toolbox.cpp:5226 +#: ../src/widgets/toolbox.cpp:5268 msgid "(approximately round)" msgstr "(ongeveer rond)" -#: ../src/widgets/toolbox.cpp:5226 +#: ../src/widgets/toolbox.cpp:5268 msgid "(long protruding caps)" msgstr "(lang uitstekend kapje)" -#: ../src/widgets/toolbox.cpp:5230 +#: ../src/widgets/toolbox.cpp:5272 msgid "Cap rounding" msgstr "Ronding van kapje" -#: ../src/widgets/toolbox.cpp:5230 +#: ../src/widgets/toolbox.cpp:5272 msgid "Caps:" msgstr "Kapje:" -#: ../src/widgets/toolbox.cpp:5231 +#: ../src/widgets/toolbox.cpp:5273 msgid "Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = round caps)" msgstr "Verhoog dit om kapjes aan het einde van lijnen meer uitgesproken te maken (0 = geen kapje, 1 = rond kapje)" #. Tremor -#: ../src/widgets/toolbox.cpp:5243 +#: ../src/widgets/toolbox.cpp:5285 msgid "(smooth line)" msgstr "(afgevlakte lijn)" -#: ../src/widgets/toolbox.cpp:5243 +#: ../src/widgets/toolbox.cpp:5285 msgid "(slight tremor)" msgstr "(lichte beving)" -#: ../src/widgets/toolbox.cpp:5243 +#: ../src/widgets/toolbox.cpp:5285 msgid "(noticeable tremor)" msgstr "(zichtbare beving)" -#: ../src/widgets/toolbox.cpp:5243 +#: ../src/widgets/toolbox.cpp:5285 msgid "(maximum tremor)" msgstr "(maximale beving)" -#: ../src/widgets/toolbox.cpp:5246 +#: ../src/widgets/toolbox.cpp:5288 msgid "Stroke Tremor" msgstr "Lijnbeving" -#: ../src/widgets/toolbox.cpp:5246 +#: ../src/widgets/toolbox.cpp:5288 msgid "Tremor:" msgstr "Beving:" -#: ../src/widgets/toolbox.cpp:5247 +#: ../src/widgets/toolbox.cpp:5289 msgid "Increase to make strokes rugged and trembling" msgstr "Verhoog dit om lijnen ruw en bevend te maken" #. Wiggle -#: ../src/widgets/toolbox.cpp:5261 +#: ../src/widgets/toolbox.cpp:5303 msgid "(no wiggle)" msgstr "(zonder wegglijden)" -#: ../src/widgets/toolbox.cpp:5261 +#: ../src/widgets/toolbox.cpp:5303 msgid "(slight deviation)" msgstr "(lichte uitwijkingen)" -#: ../src/widgets/toolbox.cpp:5261 +#: ../src/widgets/toolbox.cpp:5303 msgid "(wild waves and curls)" msgstr "(wilde golven en krullen)" -#: ../src/widgets/toolbox.cpp:5264 +#: ../src/widgets/toolbox.cpp:5306 msgid "Pen Wiggle" msgstr "Wegglijden van de pen" -#: ../src/widgets/toolbox.cpp:5264 +#: ../src/widgets/toolbox.cpp:5306 msgid "Wiggle:" msgstr "Wegglijden:" -#: ../src/widgets/toolbox.cpp:5265 +#: ../src/widgets/toolbox.cpp:5307 msgid "Increase to make the pen waver and wiggle" msgstr "Verhoog dit om de pen onvast te maken en te laten wegglijden" #. Mass -#: ../src/widgets/toolbox.cpp:5278 +#: ../src/widgets/toolbox.cpp:5320 msgid "(no inertia)" msgstr "(geen traagheid)" -#: ../src/widgets/toolbox.cpp:5278 +#: ../src/widgets/toolbox.cpp:5320 msgid "(slight smoothing, default)" msgstr "(lichte vertraging, standaard)" -#: ../src/widgets/toolbox.cpp:5278 +#: ../src/widgets/toolbox.cpp:5320 msgid "(noticeable lagging)" msgstr "(merkbare vertraging)" -#: ../src/widgets/toolbox.cpp:5278 +#: ../src/widgets/toolbox.cpp:5320 msgid "(maximum inertia)" msgstr "(maximale traagheid)" -#: ../src/widgets/toolbox.cpp:5281 +#: ../src/widgets/toolbox.cpp:5323 msgid "Pen Mass" msgstr "Penmassa" -#: ../src/widgets/toolbox.cpp:5281 +#: ../src/widgets/toolbox.cpp:5323 msgid "Mass:" msgstr "Massa:" -#: ../src/widgets/toolbox.cpp:5282 +#: ../src/widgets/toolbox.cpp:5324 msgid "Increase to make the pen drag behind, as if slowed by inertia" msgstr "Verhoog dit om de pen langzamer te laten reageren, alsof vertraagd door inertie" -#: ../src/widgets/toolbox.cpp:5297 +#: ../src/widgets/toolbox.cpp:5339 msgid "Trace Background" msgstr "Achtergrond volgen" -#: ../src/widgets/toolbox.cpp:5298 +#: ../src/widgets/toolbox.cpp:5340 msgid "Trace the lightness of the background by the width of the pen (white - minimum width, black - maximum width)" msgstr "De lichtheid van de achtergrond bepaalt de breedte van de pen (wit = minimum breedte, zwart = maximum breedte)" -#: ../src/widgets/toolbox.cpp:5311 +#: ../src/widgets/toolbox.cpp:5353 msgid "Use the pressure of the input device to alter the width of the pen" msgstr "De op het invoerapparaat uitgeoefende druk gebruiken om de penbreedte te variΓ«ren" -#: ../src/widgets/toolbox.cpp:5323 +#: ../src/widgets/toolbox.cpp:5365 msgid "Tilt" msgstr "Helling" -#: ../src/widgets/toolbox.cpp:5324 +#: ../src/widgets/toolbox.cpp:5366 msgid "Use the tilt of the input device to alter the angle of the pen's nib" msgstr "De helling waaronder het invoerapparaat wordt gehouden, gebruiken om de penhoek te variΓ«ren" -#: ../src/widgets/toolbox.cpp:5339 +#: ../src/widgets/toolbox.cpp:5381 msgid "Choose a preset" msgstr "Kies een voorkeur" -#: ../src/widgets/toolbox.cpp:5428 +#: ../src/widgets/toolbox.cpp:5470 msgid "Arc: Change start/end" msgstr "Boog: Begin/einde veranderen" -#: ../src/widgets/toolbox.cpp:5494 +#: ../src/widgets/toolbox.cpp:5536 msgid "Arc: Change open/closed" msgstr "Boog: Open/gesloten veranderen" -#: ../src/widgets/toolbox.cpp:5621 +#: ../src/widgets/toolbox.cpp:5663 msgid "Start:" msgstr "Begin:" -#: ../src/widgets/toolbox.cpp:5622 +#: ../src/widgets/toolbox.cpp:5664 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "De hoek (in graden) tussen een horizontale lijn en het begin van de boog" -#: ../src/widgets/toolbox.cpp:5634 +#: ../src/widgets/toolbox.cpp:5676 msgid "End:" msgstr "Einde:" -#: ../src/widgets/toolbox.cpp:5635 +#: ../src/widgets/toolbox.cpp:5677 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "De hoek (in graden) tussen een horizontale lijn en het einde van de boog" -#: ../src/widgets/toolbox.cpp:5651 +#: ../src/widgets/toolbox.cpp:5693 msgid "Closed arc" msgstr "Gesloten boog" -#: ../src/widgets/toolbox.cpp:5652 +#: ../src/widgets/toolbox.cpp:5694 msgid "Switch to segment (closed shape with two radii)" msgstr "Omschakelen naar segment (gesloten vorm met twee stralen)" -#: ../src/widgets/toolbox.cpp:5658 +#: ../src/widgets/toolbox.cpp:5700 msgid "Open Arc" msgstr "Open boog" -#: ../src/widgets/toolbox.cpp:5659 +#: ../src/widgets/toolbox.cpp:5701 msgid "Switch to arc (unclosed shape)" msgstr "Omschakelen naar boog (open vorm)" -#: ../src/widgets/toolbox.cpp:5682 +#: ../src/widgets/toolbox.cpp:5724 msgid "Make whole" msgstr "Ellips herstellen" -#: ../src/widgets/toolbox.cpp:5683 +#: ../src/widgets/toolbox.cpp:5725 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "Van de figuur een hele ellips maken, geen boog of segment" -#: ../src/widgets/toolbox.cpp:5761 +#: ../src/widgets/toolbox.cpp:5803 msgid "Pick opacity" msgstr "Kies ondoorzichtigheid" -#: ../src/widgets/toolbox.cpp:5762 +#: ../src/widgets/toolbox.cpp:5804 msgid "Pick both the color and the alpha (transparency) under cursor; otherwise, pick only the visible color premultiplied by alpha" msgstr "Zowel kleur als alfa (transparantie) onder de cursor nemen; zoniet, alleen de zichtbare kleur voorvermenigvuldigd met alfa nemen" -#: ../src/widgets/toolbox.cpp:5765 +#: ../src/widgets/toolbox.cpp:5807 msgid "Pick" msgstr "Kiezen" -#: ../src/widgets/toolbox.cpp:5774 +#: ../src/widgets/toolbox.cpp:5816 msgid "Assign opacity" msgstr "Ondoorzichtigheid wijzigen" -#: ../src/widgets/toolbox.cpp:5775 +#: ../src/widgets/toolbox.cpp:5817 msgid "If alpha was picked, assign it to selection as fill or stroke transparency" msgstr "Als alfa gekozen is, deze op de selectie toepassen als transparantie van vulling of omlijning" -#: ../src/widgets/toolbox.cpp:5778 +#: ../src/widgets/toolbox.cpp:5820 msgid "Assign" msgstr "Toekennen" -#: ../src/widgets/toolbox.cpp:5963 +#: ../src/widgets/toolbox.cpp:6005 msgid "Closed" msgstr "Gesloten" -#: ../src/widgets/toolbox.cpp:5965 +#: ../src/widgets/toolbox.cpp:6007 msgid "Open start" msgstr "Open begin" -#: ../src/widgets/toolbox.cpp:5967 +#: ../src/widgets/toolbox.cpp:6009 msgid "Open end" msgstr "Open einde" -#: ../src/widgets/toolbox.cpp:5969 +#: ../src/widgets/toolbox.cpp:6011 msgid "Open both" msgstr "Beide open" -#: ../src/widgets/toolbox.cpp:6028 +#: ../src/widgets/toolbox.cpp:6070 msgid "All inactive" msgstr "Allemaal inactief" -#: ../src/widgets/toolbox.cpp:6029 +#: ../src/widgets/toolbox.cpp:6071 msgid "No geometric tool is active" msgstr "Geen enkel geometrisch gereedschap is actief" -#: ../src/widgets/toolbox.cpp:6062 +#: ../src/widgets/toolbox.cpp:6104 msgid "Show limiting bounding box" msgstr "Het beperkend omvattend vak tonen" -#: ../src/widgets/toolbox.cpp:6063 +#: ../src/widgets/toolbox.cpp:6105 msgid "Show bounding box (used to cut infinite lines)" msgstr "Het omvattend vak tonen (om oneindige lijnen af te snijden)" -#: ../src/widgets/toolbox.cpp:6074 +#: ../src/widgets/toolbox.cpp:6116 msgid "Get limiting bounding box from selection" msgstr "Het beperkend omvattend vak verkrijgen van selectie" -#: ../src/widgets/toolbox.cpp:6075 +#: ../src/widgets/toolbox.cpp:6117 msgid "Set limiting bounding box (used to cut infinite lines) to the bounding box of current selection" msgstr "Het beperkend omvattend vak (om oneindige lijnen af te snijden) instellen op het omvattend vak van de huidige selectie" -#: ../src/widgets/toolbox.cpp:6087 +#: ../src/widgets/toolbox.cpp:6129 msgid "Choose a line segment type" msgstr "Segmenttype veranderen" -#: ../src/widgets/toolbox.cpp:6103 +#: ../src/widgets/toolbox.cpp:6145 msgid "Display measuring info" msgstr "Meetinfo weergeven" -#: ../src/widgets/toolbox.cpp:6104 +#: ../src/widgets/toolbox.cpp:6146 msgid "Display measuring info for selected items" msgstr "Meetinfo weergeven voor geselecteerde items" -#: ../src/widgets/toolbox.cpp:6124 +#: ../src/widgets/toolbox.cpp:6166 msgid "Open LPE dialog" msgstr "Padeffectenvenster openen" -#: ../src/widgets/toolbox.cpp:6125 +#: ../src/widgets/toolbox.cpp:6167 msgid "Open LPE dialog (to adapt parameters numerically)" msgstr "Padeffectenvenster openen (om parameters numeriek aan te passen)" -#: ../src/widgets/toolbox.cpp:6190 +#: ../src/widgets/toolbox.cpp:6232 msgid "Delete objects touched by the eraser" msgstr "Objecten aangeraakt met de gom verwijderen" -#: ../src/widgets/toolbox.cpp:6196 +#: ../src/widgets/toolbox.cpp:6238 msgid "Cut" msgstr "Knippen" -#: ../src/widgets/toolbox.cpp:6197 +#: ../src/widgets/toolbox.cpp:6239 msgid "Cut out from objects" msgstr "Van objecten uitsnijden" -#: ../src/widgets/toolbox.cpp:6225 +#: ../src/widgets/toolbox.cpp:6267 msgid "The width of the eraser pen (relative to the visible canvas area)" msgstr "De breedte van de gom (relatief ten opzichte van het zichtbare canvasoppervlak)" -#: ../src/widgets/toolbox.cpp:6465 +#: ../src/widgets/toolbox.cpp:6507 msgid "Text: Change font family" msgstr "Tekst: lettertypefamilie veranderen" -#: ../src/widgets/toolbox.cpp:6522 +#: ../src/widgets/toolbox.cpp:6564 msgid "Text: Change font size" msgstr "Tekst: lettertypegrootte veranderen" -#: ../src/widgets/toolbox.cpp:6661 +#: ../src/widgets/toolbox.cpp:6703 msgid "Text: Change font style" msgstr "Tekst: lettertypestijl veranderen" -#: ../src/widgets/toolbox.cpp:6740 +#: ../src/widgets/toolbox.cpp:6782 msgid "Text: Change superscript or subscript" msgstr "Tekst: superscript en subscript veranderen" -#: ../src/widgets/toolbox.cpp:6886 +#: ../src/widgets/toolbox.cpp:6928 msgid "Text: Change alignment" msgstr "Tekst: uitlijning veranderen" -#: ../src/widgets/toolbox.cpp:6929 +#: ../src/widgets/toolbox.cpp:6971 msgid "Text: Change line-height" msgstr "Tekst: lijnhoogte veranderen" -#: ../src/widgets/toolbox.cpp:6978 +#: ../src/widgets/toolbox.cpp:7020 msgid "Text: Change word-spacing" msgstr "Tekst: woordafstand veranderen" -#: ../src/widgets/toolbox.cpp:7020 +#: ../src/widgets/toolbox.cpp:7062 msgid "Text: Change letter-spacing" msgstr "Tekst: letterafstand veranderen" -#: ../src/widgets/toolbox.cpp:7061 +#: ../src/widgets/toolbox.cpp:7103 msgid "Text: Change dx (kern)" msgstr "Tekst: dx veranderen (kerning)" -#: ../src/widgets/toolbox.cpp:7095 +#: ../src/widgets/toolbox.cpp:7137 msgid "Text: Change dy" msgstr "Tekst: dy veranderen" -#: ../src/widgets/toolbox.cpp:7130 +#: ../src/widgets/toolbox.cpp:7172 msgid "Text: Change rotate" msgstr "Tekst: draaiing veranderen" -#: ../src/widgets/toolbox.cpp:7178 +#: ../src/widgets/toolbox.cpp:7220 msgid "Text: Change orientation" msgstr "Tekst: oriΓ«ntatie veranderen" -#: ../src/widgets/toolbox.cpp:7543 +#: ../src/widgets/toolbox.cpp:7585 msgid "Font Family" msgstr "Lettertypefamilie" -#: ../src/widgets/toolbox.cpp:7544 +#: ../src/widgets/toolbox.cpp:7586 msgid "Select Font Family (Alt-X to access)" msgstr "Selecteer lettertypefamilie (Alt+X voor dialoog)" @@ -23167,358 +23352,358 @@ msgstr "Selecteer lettertypefamilie (Alt+X voor dialoog)" #. Extra list width #. Cell layout #. Enable entry completion -#: ../src/widgets/toolbox.cpp:7551 +#: ../src/widgets/toolbox.cpp:7593 msgid "Font not found on system" msgstr "Lettertype niet aanwezig op systeem" -#: ../src/widgets/toolbox.cpp:7584 +#: ../src/widgets/toolbox.cpp:7626 msgid "Font size (px)" msgstr "Lettertypegrootte (px)" #. Name -#: ../src/widgets/toolbox.cpp:7596 +#: ../src/widgets/toolbox.cpp:7638 msgid "Toggle Bold" msgstr "Status vet veranderen" #. Label -#: ../src/widgets/toolbox.cpp:7597 +#: ../src/widgets/toolbox.cpp:7639 msgid "Toggle bold or normal weight" msgstr "Vet" #. Name -#: ../src/widgets/toolbox.cpp:7609 +#: ../src/widgets/toolbox.cpp:7651 msgid "Toggle Italic/Oblique" msgstr "Cursief" #. Label -#: ../src/widgets/toolbox.cpp:7610 +#: ../src/widgets/toolbox.cpp:7652 msgid "Toggle italic/oblique style" msgstr "Cursief" #. Name -#: ../src/widgets/toolbox.cpp:7622 +#: ../src/widgets/toolbox.cpp:7664 msgid "Toggle Superscript" msgstr "Superscript" #. Label -#: ../src/widgets/toolbox.cpp:7623 +#: ../src/widgets/toolbox.cpp:7665 msgid "Toggle superscript" msgstr "Superscript" #. Name -#: ../src/widgets/toolbox.cpp:7635 +#: ../src/widgets/toolbox.cpp:7677 msgid "Toggle Subscript" msgstr "Subscript" #. Label -#: ../src/widgets/toolbox.cpp:7636 +#: ../src/widgets/toolbox.cpp:7678 msgid "Toggle subscript" msgstr "Subscript" -#: ../src/widgets/toolbox.cpp:7653 -#: ../src/widgets/toolbox.cpp:7654 +#: ../src/widgets/toolbox.cpp:7695 +#: ../src/widgets/toolbox.cpp:7696 msgid "Align left" msgstr "Links uitlijnen" -#: ../src/widgets/toolbox.cpp:7661 -#: ../src/widgets/toolbox.cpp:7662 +#: ../src/widgets/toolbox.cpp:7703 +#: ../src/widgets/toolbox.cpp:7704 msgid "Align center" msgstr "Centreren" -#: ../src/widgets/toolbox.cpp:7669 -#: ../src/widgets/toolbox.cpp:7670 +#: ../src/widgets/toolbox.cpp:7711 +#: ../src/widgets/toolbox.cpp:7712 msgid "Align right" msgstr "Rechts uitlijnen" -#: ../src/widgets/toolbox.cpp:7677 +#: ../src/widgets/toolbox.cpp:7719 msgid "Justify" msgstr "Uitgevuld" -#: ../src/widgets/toolbox.cpp:7678 +#: ../src/widgets/toolbox.cpp:7720 msgid "Justify (only flowed text)" msgstr "Uitvullen (enkel ingekaderde tekst)" #. Name -#: ../src/widgets/toolbox.cpp:7684 +#: ../src/widgets/toolbox.cpp:7726 msgid "Alignment" msgstr "Uitlijning" #. Label -#: ../src/widgets/toolbox.cpp:7685 +#: ../src/widgets/toolbox.cpp:7727 msgid "Text alignment" msgstr "Tekstuitlijning" -#: ../src/widgets/toolbox.cpp:7712 +#: ../src/widgets/toolbox.cpp:7754 msgid "Horizontal" msgstr "Horizontaal" -#: ../src/widgets/toolbox.cpp:7719 +#: ../src/widgets/toolbox.cpp:7761 msgid "Vertical" msgstr "Verticaal" #. Label -#: ../src/widgets/toolbox.cpp:7726 +#: ../src/widgets/toolbox.cpp:7768 msgid "Text orientation" msgstr "TekstoriΓ«ntatie" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7749 +#: ../src/widgets/toolbox.cpp:7791 msgid "Smaller spacing" msgstr "Kleinere afstand" -#: ../src/widgets/toolbox.cpp:7749 -#: ../src/widgets/toolbox.cpp:7780 -#: ../src/widgets/toolbox.cpp:7811 +#: ../src/widgets/toolbox.cpp:7791 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgctxt "Text tool" msgid "Normal" msgstr "Normal" -#: ../src/widgets/toolbox.cpp:7749 +#: ../src/widgets/toolbox.cpp:7791 msgid "Larger spacing" msgstr "Grotere afstand" #. name -#: ../src/widgets/toolbox.cpp:7754 +#: ../src/widgets/toolbox.cpp:7796 msgid "Line Height" msgstr "Lijnhoogte" #. label -#: ../src/widgets/toolbox.cpp:7755 +#: ../src/widgets/toolbox.cpp:7797 msgid "Line:" msgstr "Lijn:" #. short label -#: ../src/widgets/toolbox.cpp:7756 +#: ../src/widgets/toolbox.cpp:7798 msgid "Spacing between lines (times font size)" msgstr "Ruimte tussen lijnen (maal lettertypegrootte)" #. Drop down menu -#: ../src/widgets/toolbox.cpp:7780 -#: ../src/widgets/toolbox.cpp:7811 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgid "Negative spacing" msgstr "Negatieve afstand" -#: ../src/widgets/toolbox.cpp:7780 -#: ../src/widgets/toolbox.cpp:7811 +#: ../src/widgets/toolbox.cpp:7822 +#: ../src/widgets/toolbox.cpp:7853 msgid "Positive spacing" msgstr "Positieve afstand" #. name -#: ../src/widgets/toolbox.cpp:7785 +#: ../src/widgets/toolbox.cpp:7827 msgid "Word spacing" msgstr "Woordafstand" #. label -#: ../src/widgets/toolbox.cpp:7786 +#: ../src/widgets/toolbox.cpp:7828 msgid "Word:" msgstr "Woord:" #. short label -#: ../src/widgets/toolbox.cpp:7787 +#: ../src/widgets/toolbox.cpp:7829 msgid "Spacing between words (px)" msgstr "Ruimte tussen woorden (px)" #. name -#: ../src/widgets/toolbox.cpp:7816 +#: ../src/widgets/toolbox.cpp:7858 msgid "Letter spacing" msgstr "Letterafstand" #. label -#: ../src/widgets/toolbox.cpp:7817 +#: ../src/widgets/toolbox.cpp:7859 msgid "Letter:" msgstr "Letter:" #. short label -#: ../src/widgets/toolbox.cpp:7818 +#: ../src/widgets/toolbox.cpp:7860 msgid "Spacing between letters (px)" msgstr "Ruimte tussen letters (px)" #. name -#: ../src/widgets/toolbox.cpp:7847 +#: ../src/widgets/toolbox.cpp:7889 msgid "Kerning" msgstr "Overhang" #. label -#: ../src/widgets/toolbox.cpp:7848 +#: ../src/widgets/toolbox.cpp:7890 msgid "Kern:" msgstr "Overhang:" #. short label -#: ../src/widgets/toolbox.cpp:7849 +#: ../src/widgets/toolbox.cpp:7891 msgid "Horizontal kerning (px)" msgstr "Horizontale overhang (px)" #. name -#: ../src/widgets/toolbox.cpp:7878 +#: ../src/widgets/toolbox.cpp:7920 msgid "Vertical Shift" msgstr "Verticale verplaatsing" #. label -#: ../src/widgets/toolbox.cpp:7879 +#: ../src/widgets/toolbox.cpp:7921 msgid "Vert:" msgstr "Vert:" #. short label -#: ../src/widgets/toolbox.cpp:7880 +#: ../src/widgets/toolbox.cpp:7922 msgid "Vertical shift (px)" msgstr "Verticale verplaatsing (px)" #. name -#: ../src/widgets/toolbox.cpp:7909 +#: ../src/widgets/toolbox.cpp:7951 msgid "Letter rotation" msgstr "Letterrotatie" #. label -#: ../src/widgets/toolbox.cpp:7910 +#: ../src/widgets/toolbox.cpp:7952 msgid "Rot:" msgstr "Rot:" #. short label -#: ../src/widgets/toolbox.cpp:7911 +#: ../src/widgets/toolbox.cpp:7953 msgid "Character rotation (degrees)" msgstr "Karakterrotatie (graden)" -#: ../src/widgets/toolbox.cpp:8026 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: orthogonal" msgstr "Type verbinding instellen: orthogonaal" -#: ../src/widgets/toolbox.cpp:8026 +#: ../src/widgets/toolbox.cpp:8068 msgid "Set connector type: polyline" msgstr "Type verbinding instellen: veellijn" -#: ../src/widgets/toolbox.cpp:8075 +#: ../src/widgets/toolbox.cpp:8117 msgid "Change connector curvature" msgstr "Kromming verbinding aanpassen" -#: ../src/widgets/toolbox.cpp:8126 +#: ../src/widgets/toolbox.cpp:8168 msgid "Change connector spacing" msgstr "Verbindingsafstanden aanpassen" -#: ../src/widgets/toolbox.cpp:8240 +#: ../src/widgets/toolbox.cpp:8282 msgid "EditMode" msgstr "Bewerkmodus" -#: ../src/widgets/toolbox.cpp:8241 +#: ../src/widgets/toolbox.cpp:8283 msgid "Switch between connection point editing and connector drawing mode" msgstr "Wisselen tussen bewerkmodus voor verbindingspunten en tekenmodus voor verbindingen" -#: ../src/widgets/toolbox.cpp:8255 +#: ../src/widgets/toolbox.cpp:8297 msgid "Avoid" msgstr "Vermijden" -#: ../src/widgets/toolbox.cpp:8265 +#: ../src/widgets/toolbox.cpp:8307 msgid "Ignore" msgstr "Negeren" -#: ../src/widgets/toolbox.cpp:8276 +#: ../src/widgets/toolbox.cpp:8318 msgid "Orthogonal" msgstr "Orthogonaal" -#: ../src/widgets/toolbox.cpp:8277 +#: ../src/widgets/toolbox.cpp:8319 msgid "Make connector orthogonal or polyline" msgstr "Verbinding orthogonaal of veellijn maken" -#: ../src/widgets/toolbox.cpp:8291 +#: ../src/widgets/toolbox.cpp:8333 msgid "Connector Curvature" msgstr "Kromming verbinding" -#: ../src/widgets/toolbox.cpp:8291 +#: ../src/widgets/toolbox.cpp:8333 msgid "Curvature:" msgstr "Kromming:" -#: ../src/widgets/toolbox.cpp:8292 +#: ../src/widgets/toolbox.cpp:8334 msgid "The amount of connectors curvature" msgstr "Hoeveelheid kromming van verbindingen" -#: ../src/widgets/toolbox.cpp:8302 +#: ../src/widgets/toolbox.cpp:8344 msgid "Connector Spacing" msgstr "Verbindingsafstanden" -#: ../src/widgets/toolbox.cpp:8302 +#: ../src/widgets/toolbox.cpp:8344 msgid "Spacing:" msgstr "Afstand:" -#: ../src/widgets/toolbox.cpp:8303 +#: ../src/widgets/toolbox.cpp:8345 msgid "The amount of space left around objects by auto-routing connectors" msgstr "De vrij te laten ruimte rond objecten bij het automatisch routeren van verbindingen" -#: ../src/widgets/toolbox.cpp:8314 +#: ../src/widgets/toolbox.cpp:8356 msgid "Graph" msgstr "Diagram" -#: ../src/widgets/toolbox.cpp:8324 +#: ../src/widgets/toolbox.cpp:8366 msgid "Connector Length" msgstr "Verbindingslengte" -#: ../src/widgets/toolbox.cpp:8325 +#: ../src/widgets/toolbox.cpp:8367 msgid "Ideal length for connectors when layout is applied" msgstr "Ideale lengte van verbindingen bij herschikken" -#: ../src/widgets/toolbox.cpp:8337 +#: ../src/widgets/toolbox.cpp:8379 msgid "Downwards" msgstr "Omlaag" -#: ../src/widgets/toolbox.cpp:8338 +#: ../src/widgets/toolbox.cpp:8380 msgid "Make connectors with end-markers (arrows) point downwards" msgstr "Eindmarkeringen (pijlen) van verbindingen wijzen omlaag" -#: ../src/widgets/toolbox.cpp:8354 +#: ../src/widgets/toolbox.cpp:8396 msgid "Do not allow overlapping shapes" msgstr "Geen overlappende vormen toestaan" -#: ../src/widgets/toolbox.cpp:8369 +#: ../src/widgets/toolbox.cpp:8411 msgid "New connection point" msgstr "Nieuw verbindingspunt" -#: ../src/widgets/toolbox.cpp:8370 +#: ../src/widgets/toolbox.cpp:8412 msgid "Add a new connection point to the currently selected item" msgstr "Een nieuw verbindingspunt naar het geselecteerde item toevoegen" -#: ../src/widgets/toolbox.cpp:8381 +#: ../src/widgets/toolbox.cpp:8423 msgid "Remove connection point" msgstr "Verbindingspunt verwijderen" -#: ../src/widgets/toolbox.cpp:8382 +#: ../src/widgets/toolbox.cpp:8424 msgid "Remove the currently selected connection point" msgstr "Het geselecteerde verbindingspunt verwijderen" -#: ../src/widgets/toolbox.cpp:8484 +#: ../src/widgets/toolbox.cpp:8526 msgid "Fill by" msgstr "Vullen met" -#: ../src/widgets/toolbox.cpp:8485 +#: ../src/widgets/toolbox.cpp:8527 msgid "Fill by:" msgstr "Vullen met:" -#: ../src/widgets/toolbox.cpp:8497 +#: ../src/widgets/toolbox.cpp:8539 msgid "Fill Threshold" msgstr "Vullingsdrempel" -#: ../src/widgets/toolbox.cpp:8498 +#: ../src/widgets/toolbox.cpp:8540 msgid "The maximum allowed difference between the clicked pixel and the neighboring pixels to be counted in the fill" msgstr "Het maximaal toegestane verschil tussen de aangeklikte pixel en de naastliggende pixels geteld in de vulling" -#: ../src/widgets/toolbox.cpp:8524 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by" msgstr "Verdikken/verdunnen met" -#: ../src/widgets/toolbox.cpp:8524 +#: ../src/widgets/toolbox.cpp:8566 msgid "Grow/shrink by:" msgstr "Verdikken/verdunnen met:" -#: ../src/widgets/toolbox.cpp:8525 +#: ../src/widgets/toolbox.cpp:8567 msgid "The amount to grow (positive) or shrink (negative) the created fill path" msgstr "De hoeveelheid waarmee het vullingspad verdikt (positief) of verdund (negatief) moet worden" -#: ../src/widgets/toolbox.cpp:8550 +#: ../src/widgets/toolbox.cpp:8592 msgid "Close gaps" msgstr "Gaten opvullen" -#: ../src/widgets/toolbox.cpp:8551 +#: ../src/widgets/toolbox.cpp:8593 msgid "Close gaps:" msgstr "Gaten opvullen:" -#: ../src/widgets/toolbox.cpp:8563 +#: ../src/widgets/toolbox.cpp:8605 msgid "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Herinitialiseer afgebakende gebieden vullen naar standaardwaarden (gebruik Inkscape-voorkeuren > Gereedschappen om de standaardwaarden te veranderen)" @@ -23839,10 +24024,6 @@ msgstr "Y-afstand:" msgid "Dot size:" msgstr "Puntgrootte:" -#: ../share/extensions/dots.inx.h:2 -msgid "Font size:" -msgstr "Lettergrootte:" - #: ../share/extensions/dots.inx.h:4 msgid "Number Nodes" msgstr "Knooppunten nummeren" @@ -24084,7 +24265,7 @@ msgstr "DXF-invoer" #: ../share/extensions/dxf_input.inx.h:10 msgid "Gcodetools compatible point import" -msgstr "Gcodetools compatibele import punten" +msgstr "Gcodetools compatibele importpunten" #: ../share/extensions/dxf_input.inx.h:12 msgid "Import AutoCAD's Document Exchange Format" @@ -24092,11 +24273,11 @@ msgstr "AutoCAD's Document Exchange Format importeren" #: ../share/extensions/dxf_input.inx.h:13 msgid "Manual x-axis origin (mm)" -msgstr "" +msgstr "Handmatige oorsprong x-as (mm)" #: ../share/extensions/dxf_input.inx.h:14 msgid "Manual y-axis origin (mm)" -msgstr "" +msgstr "Handmatige oorsprong y-as (mm)" #: ../share/extensions/dxf_input.inx.h:16 msgid "Or, use manual scale factor" @@ -24108,7 +24289,7 @@ msgstr "Lettertype tekst" #: ../share/extensions/dxf_input.inx.h:18 msgid "Use automatic scaling to size A4" -msgstr "Automatisch schalen tot A4-grootte toepassen" +msgstr "Automatisch schalen tot A4-grootte" #: ../share/extensions/dxf_outlines.inx.h:1 msgid "" @@ -24441,378 +24622,357 @@ msgstr "Aantal tanden:" msgid "Pressure angle (degrees):" msgstr "Drukhoek (graden):" -#: ../share/extensions/gcodetools_all_in_one.inx.h:1 +#: ../share/extensions/gcodetools_about.inx.h:1 +#, fuzzy +msgid "About" +msgstr "Hoeveelheid" + +#: ../share/extensions/gcodetools_about.inx.h:2 +#: ../share/extensions/gcodetools_area.inx.h:24 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 +#: ../share/extensions/gcodetools_dxf_points.inx.h:11 +#: ../share/extensions/gcodetools_engraving.inx.h:12 +#: ../share/extensions/gcodetools_graffiti.inx.h:13 +#: ../share/extensions/gcodetools_lathe.inx.h:16 +#: ../share/extensions/gcodetools_orientation_points.inx.h:3 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:4 +#: ../share/extensions/gcodetools_tools_library.inx.h:1 +msgid "Gcodetools" +msgstr "Gcodetools" + +#: ../share/extensions/gcodetools_about.inx.h:3 +#: ../share/extensions/gcodetools_area.inx.h:25 +#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 +#: ../share/extensions/gcodetools_dxf_points.inx.h:12 +#: ../share/extensions/gcodetools_engraving.inx.h:13 +#: ../share/extensions/gcodetools_graffiti.inx.h:14 +#: ../share/extensions/gcodetools_lathe.inx.h:17 +#: ../share/extensions/gcodetools_orientation_points.inx.h:4 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:5 +#: ../share/extensions/gcodetools_tools_library.inx.h:2 +#, fuzzy +msgid "Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed. Tutorials, manuals and support can be found at English support forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas, Chris Lusby Taylor. Gcodetools ver. 1.7" +msgstr "Gcodetools uitbreiding: converteert paden in Gcode (met behulp van cirkelinterpolatie), maakt offsetpaden en graveert scherpe hoeken met conische snijmessen. Deze plugin berekent Gcode voor paden met behulp van cirkelinterpolatie of lineare verplaatsing. Tutorials, handleidingen en ondersteuning zijn beschikbaar op het Engelstalige forum: http://www.cnc-club.ru/gcodetools en op het Russische forum http://www.cnc-club.ru/gcodetoolsru. Auteurs: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas. Gcodetools ver. 1.6.01" + +#: ../share/extensions/gcodetools_about.inx.h:4 +msgid "Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode is a special format which is used in most of CNC machines. So Gcodetools allows you to use Inkscape as CAM program. It can be use with a lot of machone types: Mills Lathes Laser and Palsma cutters and engravers Mill engravers Plotters etc. To get more info visit developers page at http://www.cnc-club.ru/gcodetools" +msgstr "" + #: ../share/extensions/gcodetools_area.inx.h:1 msgid "\"Create area offset\": creates several Inkscape path offsets to fill original path's area up to \"Area radius\" value. Outlines start from \"1/2 D\" up to \"Area width\" total width with \"D\" steps where D is taken from the nearest tool definition (\"Tool diameter\" value). Only one offset will be created if the \"Area width\" is equal to \"1/2 D\"." msgstr "\"Oppervlak offset maken\": maakt verschillende Inkscape-offsetpaden aan om de originele padoppervlakte te vullen tot de \"Contourbreedte\". Contouren beginnen van \"1/2 D\" tot de \"Contourbreedte\" met \"D\" stappen, waarbij D afkomstig is van de gereedschapsdefinitie (\"Diameter gereedschap\"). Slechts één offset wordt gemaakt indien de \"Contourbreedte\" gelijk is aan \"1/2 D\"." -#: ../share/extensions/gcodetools_all_in_one.inx.h:2 -#: ../share/extensions/gcodetools_orientation_points.inx.h:1 -msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" -msgstr "2-punts modus (verplaatsen en roteren, X/Y aspectratio behouden)" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:3 -#: ../share/extensions/gcodetools_orientation_points.inx.h:2 -msgid "3-points mode (move, rotate and mirror, different X/Y scale)" -msgstr "3-punts modus (verplaatsen, roteren en spiegelen, X/Y aspectratio verschillend)" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:4 #: ../share/extensions/gcodetools_area.inx.h:2 msgid "Action:" msgstr "Actie:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:5 #: ../share/extensions/gcodetools_area.inx.h:3 #: ../share/extensions/gcodetools_dxf_points.inx.h:1 -#: ../share/extensions/gcodetools_engraving.inx.h:1 +#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_graffiti.inx.h:3 #: ../share/extensions/gcodetools_lathe.inx.h:1 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:1 msgid "Add numeric suffix to filename" msgstr "Numeriek achtervoegsel aan bestandsnaam toevoegen" -#: ../share/extensions/gcodetools_all_in_one.inx.h:6 #: ../share/extensions/gcodetools_area.inx.h:4 #: ../share/extensions/gcodetools_dxf_points.inx.h:2 -#: ../share/extensions/gcodetools_engraving.inx.h:2 +#: ../share/extensions/gcodetools_engraving.inx.h:3 +#: ../share/extensions/gcodetools_graffiti.inx.h:4 #: ../share/extensions/gcodetools_lathe.inx.h:2 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:2 msgid "Additional post-processor:" msgstr "Additionele post-processor:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:7 -msgid "All in one" -msgstr "Alles in één" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:8 #: ../share/extensions/gcodetools_area.inx.h:5 msgid "Area" msgstr "Oppervlakte" -#: ../share/extensions/gcodetools_all_in_one.inx.h:9 #: ../share/extensions/gcodetools_area.inx.h:6 -msgid "Area artefacts" +#, fuzzy +msgid "Area artifacts" msgstr "Oppervlakartefacten" -#: ../share/extensions/gcodetools_all_in_one.inx.h:10 #: ../share/extensions/gcodetools_area.inx.h:7 +msgid "Area fill anlge" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:8 +msgid "Area fill shift" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:9 +msgid "Area tool overlap (0..0.9):" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:10 msgid "Area width:" msgstr "Contourbreedte:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:11 -#: ../share/extensions/gcodetools_area.inx.h:8 -msgid "Artefact diameter:" +#: ../share/extensions/gcodetools_area.inx.h:11 +#, fuzzy +msgid "Artifact diameter:" msgstr "Artefactdiameter:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:12 -#: ../share/extensions/gcodetools_area.inx.h:9 +#: ../share/extensions/gcodetools_area.inx.h:12 #: ../share/extensions/gcodetools_lathe.inx.h:3 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:3 -msgid "Biarc interpolation tolerance is the maximum distance between path and its approximation. The segment will be split into two segments if the distance between path's segment and it's approximation exceeds biarc interpolation tolerance." +#, fuzzy +msgid "Biarc interpolation tolerance is the maximum distance between path and its approximation. The segment will be split into two segments if the distance between path's segment and its approximation exceeds biarc interpolation tolerance. For depth function c=color intensity from 0.0 (white) to 1.0 (black), d is the depth defined by orientation points, s - surface defined by orientation points." msgstr "Bicirkelinterpolatietolerantie is de maximum afstand tussen het pad en zijn benadering. Het segment zal opgesplitst worden in twee segmenten indien de afstand tussen het segment en zijn benadering de bicirkelinterpolatietolerantie overschrijdt." -#: ../share/extensions/gcodetools_all_in_one.inx.h:13 -#: ../share/extensions/gcodetools_area.inx.h:10 +#: ../share/extensions/gcodetools_area.inx.h:13 #: ../share/extensions/gcodetools_lathe.inx.h:4 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:4 msgid "Biarc interpolation tolerance:" msgstr "Bicirkelinterpolatietolerantie" -#: ../share/extensions/gcodetools_all_in_one.inx.h:14 -#: ../share/extensions/gcodetools_dxf_points.inx.h:3 -msgid "Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used. Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value." -msgstr "Geselecteerde objecten converteren naar boorpunten (zoals de dxf_import plugin doet). Je kan ook de originele vorm bewaren. Slechts het beginpunt van elke vorm zal gebruikt worden. Je kan ook een object manueel selecteren, de XML-editor openen (Shift+Ctrl+X) en de 'dxfpoint'-tag met elke waarde toevoegen of verwijderen." +#: ../share/extensions/gcodetools_area.inx.h:14 +#: ../share/extensions/gcodetools_engraving.inx.h:4 +#: ../share/extensions/gcodetools_graffiti.inx.h:5 +#: ../share/extensions/gcodetools_lathe.inx.h:5 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 +msgid "Comment Gcode:" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:15 -#: ../share/extensions/gcodetools_dxf_points.inx.h:4 -msgid "Convert selection:" -msgstr "Selectie converteren" +#: ../share/extensions/gcodetools_area.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:7 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 +#, fuzzy +msgid "Cutting order" +msgstr "Spitse rand" -#: ../share/extensions/gcodetools_all_in_one.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:6 -msgid "DXF points" -msgstr "DXF-punten" +#: ../share/extensions/gcodetools_area.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:8 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 +#, fuzzy +msgid "Depth function:" +msgstr "Roodfunctie:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:17 -#: ../share/extensions/gcodetools_area.inx.h:11 -#: ../share/extensions/gcodetools_dxf_points.inx.h:7 -#: ../share/extensions/gcodetools_engraving.inx.h:3 -#: ../share/extensions/gcodetools_lathe.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:5 +#: ../share/extensions/gcodetools_area.inx.h:17 +#: ../share/extensions/gcodetools_dxf_points.inx.h:6 +#: ../share/extensions/gcodetools_engraving.inx.h:5 +#: ../share/extensions/gcodetools_graffiti.inx.h:8 +#: ../share/extensions/gcodetools_lathe.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 msgid "Directory:" msgstr "Directorie:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:18 -msgid "Draw additional graphics to debug engraving path:" -msgstr "Additionele afbeeldingen tekenen om graveringspad te debuggen:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:19 -#: ../share/extensions/gcodetools_engraving.inx.h:5 -msgid "Engraving" -msgstr "Gravering" +#: ../share/extensions/gcodetools_area.inx.h:18 +#: ../share/extensions/gcodetools_dxf_points.inx.h:7 +#: ../share/extensions/gcodetools_engraving.inx.h:8 +#: ../share/extensions/gcodetools_graffiti.inx.h:9 +#: ../share/extensions/gcodetools_lathe.inx.h:10 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 +msgid "Fast pre-penetrate" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:20 -#: ../share/extensions/gcodetools_area.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:19 #: ../share/extensions/gcodetools_dxf_points.inx.h:8 -#: ../share/extensions/gcodetools_engraving.inx.h:6 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6 +#: ../share/extensions/gcodetools_engraving.inx.h:9 +#: ../share/extensions/gcodetools_graffiti.inx.h:10 +#: ../share/extensions/gcodetools_lathe.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 msgid "File:" msgstr "Bestand:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:21 -#: ../share/extensions/gcodetools_area.inx.h:13 +#: ../share/extensions/gcodetools_area.inx.h:20 +#, fuzzy +msgid "Fill area" +msgstr "Afgebakend gebied vullen" + +#: ../share/extensions/gcodetools_area.inx.h:21 +#, fuzzy +msgid "Filling method" +msgstr "Verdeelmethode:" + +#: ../share/extensions/gcodetools_area.inx.h:22 #: ../share/extensions/gcodetools_dxf_points.inx.h:9 -#: ../share/extensions/gcodetools_engraving.inx.h:7 -#: ../share/extensions/gcodetools_lathe.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:7 -msgid "Full path to log file:" -msgstr "Volledig pad naar logbestand:" +#: ../share/extensions/gcodetools_engraving.inx.h:10 +#: ../share/extensions/gcodetools_graffiti.inx.h:11 +#: ../share/extensions/gcodetools_lathe.inx.h:14 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:11 +msgid "Flip y axis and parameterize Gcode" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:22 -#: ../share/extensions/gcodetools_area.inx.h:14 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:3 +#: ../share/extensions/gcodetools_area.inx.h:23 #: ../share/extensions/gcodetools_dxf_points.inx.h:10 -#: ../share/extensions/gcodetools_engraving.inx.h:8 -#: ../share/extensions/gcodetools_lathe.inx.h:11 -#: ../share/extensions/gcodetools_orientation_points.inx.h:3 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:8 -#: ../share/extensions/gcodetools_tools_library.inx.h:1 -msgid "Gcodetools" -msgstr "Gcodetools" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:23 -#: ../share/extensions/gcodetools_area.inx.h:15 -#: ../share/extensions/gcodetools_check_for_updates.inx.h:4 -#: ../share/extensions/gcodetools_dxf_points.inx.h:11 -#: ../share/extensions/gcodetools_engraving.inx.h:9 -#: ../share/extensions/gcodetools_lathe.inx.h:12 -#: ../share/extensions/gcodetools_orientation_points.inx.h:4 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:9 -#: ../share/extensions/gcodetools_tools_library.inx.h:2 -msgid "Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed. Tutorials, manuals and support can be found at English support forum: http://www.cnc-club.ru/gcodetools and Russian support forum: http://www.cnc-club.ru/gcodetoolsru Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas. Gcodetools ver. 1.6.01" -msgstr "Gcodetools uitbreiding: converteert paden in Gcode (met behulp van cirkelinterpolatie), maakt offsetpaden en graveert scherpe hoeken met conische snijmessen. Deze plugin berekent Gcode voor paden met behulp van cirkelinterpolatie of lineare verplaatsing. Tutorials, handleidingen en ondersteuning zijn beschikbaar op het Engelstalige forum: http://www.cnc-club.ru/gcodetools en op het Russische forum http://www.cnc-club.ru/gcodetoolsru. Auteurs: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas. Gcodetools ver. 1.6.01" +#: ../share/extensions/gcodetools_engraving.inx.h:11 +#: ../share/extensions/gcodetools_graffiti.inx.h:12 +#: ../share/extensions/gcodetools_lathe.inx.h:15 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 +msgid "Full path to log file:" +msgstr "Volledig pad naar logbestand:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:24 -#: ../share/extensions/gcodetools_area.inx.h:16 -#: ../share/extensions/gcodetools_dxf_points.inx.h:12 -#: ../share/extensions/gcodetools_engraving.inx.h:10 -#: ../share/extensions/gcodetools_lathe.inx.h:13 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:10 +#: ../share/extensions/gcodetools_area.inx.h:26 +#: ../share/extensions/gcodetools_dxf_points.inx.h:13 +#: ../share/extensions/gcodetools_engraving.inx.h:14 +#: ../share/extensions/gcodetools_graffiti.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:18 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:15 msgid "Generate log file" msgstr "Logbestand genereren" -#: ../share/extensions/gcodetools_all_in_one.inx.h:26 -#: ../share/extensions/gcodetools_tools_library.inx.h:4 -msgid "Just check tools" -msgstr "Gereedschappen nakijken" +#: ../share/extensions/gcodetools_area.inx.h:27 +#: ../share/extensions/gcodetools_engraving.inx.h:15 +#: ../share/extensions/gcodetools_graffiti.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:19 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 +msgid "Get additional comments from object's properties" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:27 -#: ../share/extensions/gcodetools_area.inx.h:18 +#: ../share/extensions/gcodetools_area.inx.h:29 msgid "Maximum area cutting curves:" msgstr "Maximum aantal snijcurves:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:28 -#: ../share/extensions/gcodetools_engraving.inx.h:12 -msgid "Maximum distance for engraving:" -msgstr "Maximum afstand voor gravure:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:29 -#: ../share/extensions/gcodetools_area.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:19 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:26 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 msgid "Maximum splitting depth:" msgstr "Maximum aantal opdelingen:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:30 -#: ../share/extensions/gcodetools_area.inx.h:20 -#: ../share/extensions/gcodetools_engraving.inx.h:13 -#: ../share/extensions/gcodetools_lathe.inx.h:20 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:13 +#: ../share/extensions/gcodetools_area.inx.h:31 +#: ../share/extensions/gcodetools_engraving.inx.h:18 +#: ../share/extensions/gcodetools_graffiti.inx.h:21 +#: ../share/extensions/gcodetools_lathe.inx.h:27 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 msgid "Minimum arc radius:" msgstr "Minimum straal boog:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:31 -#: ../share/extensions/gcodetools_engraving.inx.h:14 -msgid "Number of sample points used to calculate distance:" -msgstr "Aantal controlepunten gebruikt voor afstandsberekening:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:32 -#: ../share/extensions/gcodetools_area.inx.h:21 -#: ../share/extensions/gcodetools_engraving.inx.h:15 -#: ../share/extensions/gcodetools_lathe.inx.h:21 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:14 +#: ../share/extensions/gcodetools_area.inx.h:33 +#: ../share/extensions/gcodetools_engraving.inx.h:20 +#: ../share/extensions/gcodetools_graffiti.inx.h:23 +#: ../share/extensions/gcodetools_lathe.inx.h:30 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 msgid "Offset along Z axis:" msgstr "Offset langs Z-as:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:35 -#: ../share/extensions/gcodetools_orientation_points.inx.h:8 -msgid "Orientation points are used to calculate transformation (offset,scale,mirror,rotation in XY plane) of the path. 3-points mode only: do not put all three into one line (use 2-points mode instead). You can modify Z surface, Z depth values later using text tool (3rd coordinates). If there are no orientation points inside current layer they are taken from the upper layer. Do not ungroup orientation points! You can select them using double click to enter the group or by Ctrl+Click. Now press apply to create control points (independent set for each layer)." -msgstr "OriΓ«ntatiepunten worden gebruikt om de transformatie (offset, schalen, spiegeling, rotatie in het XY vlak) van het pad te berekenen. Alleen 3-punts modus: plaats niet alle 3 de punten op een lijn (gebruik dan de 2-punts modus). Je kan de Z-oppervlakte en Z-diepte later aanpassen met het tekstgereedschap (derde coΓ¶rdinaat). Indien er geen oriΓ«ntatiepunten in de huidige laag zijn, worden ze van de bovenste laag genomen. Degroepeer nooit oriΓ«ntatiepunten! Je kan ze selecteren door een dubbelklik om de groep binnen te gaan of door Ctrl+klik. Druk nu op Toepassen om de controlepunten aan te maken (onafhankelijke set voor elke laag)." +#: ../share/extensions/gcodetools_area.inx.h:35 +#: ../share/extensions/gcodetools_dxf_points.inx.h:16 +#: ../share/extensions/gcodetools_engraving.inx.h:22 +#: ../share/extensions/gcodetools_graffiti.inx.h:28 +#: ../share/extensions/gcodetools_lathe.inx.h:33 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:23 +#, fuzzy +msgid "Parameterize Gcode" +msgstr "Parameters" -#: ../share/extensions/gcodetools_all_in_one.inx.h:36 -#: ../share/extensions/gcodetools_orientation_points.inx.h:9 -msgid "Orientation type:" -msgstr "Type oriΓ«ntatie:" +#: ../share/extensions/gcodetools_area.inx.h:36 +#: ../share/extensions/gcodetools_lathe.inx.h:34 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:24 +msgid "Pass by Pass" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:37 -#: ../share/extensions/gcodetools_area.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:23 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:16 +#: ../share/extensions/gcodetools_area.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:35 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:25 +#, fuzzy +msgid "Path by path" +msgstr "Pad plakken" + +#: ../share/extensions/gcodetools_area.inx.h:38 +#: ../share/extensions/gcodetools_lathe.inx.h:36 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:26 msgid "Path to Gcode" msgstr "Pad naar Gcode" -#: ../share/extensions/gcodetools_all_in_one.inx.h:38 -#: ../share/extensions/gcodetools_area.inx.h:24 -#: ../share/extensions/gcodetools_dxf_points.inx.h:14 -#: ../share/extensions/gcodetools_engraving.inx.h:17 -#: ../share/extensions/gcodetools_lathe.inx.h:24 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:17 +#: ../share/extensions/gcodetools_area.inx.h:39 +#: ../share/extensions/gcodetools_dxf_points.inx.h:17 +#: ../share/extensions/gcodetools_engraving.inx.h:23 +#: ../share/extensions/gcodetools_graffiti.inx.h:29 +#: ../share/extensions/gcodetools_lathe.inx.h:37 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:27 msgid "Post-processor:" msgstr "Post-processor:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:39 -#: ../share/extensions/gcodetools_area.inx.h:25 -#: ../share/extensions/gcodetools_dxf_points.inx.h:15 -#: ../share/extensions/gcodetools_engraving.inx.h:18 -#: ../share/extensions/gcodetools_lathe.inx.h:25 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:18 +#: ../share/extensions/gcodetools_area.inx.h:40 +#: ../share/extensions/gcodetools_dxf_points.inx.h:18 +#: ../share/extensions/gcodetools_engraving.inx.h:24 +#: ../share/extensions/gcodetools_graffiti.inx.h:30 +#: ../share/extensions/gcodetools_lathe.inx.h:38 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:28 msgid "Preferences" msgstr "Voorkeuren" -#: ../share/extensions/gcodetools_all_in_one.inx.h:40 -#: ../share/extensions/gcodetools_area.inx.h:26 -#: ../share/extensions/gcodetools_engraving.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:26 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:19 +#: ../share/extensions/gcodetools_area.inx.h:41 +#: ../share/extensions/gcodetools_dxf_points.inx.h:19 +#: ../share/extensions/gcodetools_engraving.inx.h:25 +#: ../share/extensions/gcodetools_graffiti.inx.h:33 +#: ../share/extensions/gcodetools_lathe.inx.h:39 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:29 +msgid "Round all values to 4 digits" +msgstr "" + +#: ../share/extensions/gcodetools_area.inx.h:42 +#: ../share/extensions/gcodetools_engraving.inx.h:26 +#: ../share/extensions/gcodetools_graffiti.inx.h:34 +#: ../share/extensions/gcodetools_lathe.inx.h:40 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 msgid "Scale along Z axis:" msgstr "Schalen langs Z-as:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:41 -#: ../share/extensions/gcodetools_area.inx.h:27 -#: ../share/extensions/gcodetools_engraving.inx.h:20 -#: ../share/extensions/gcodetools_lathe.inx.h:27 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:20 +#: ../share/extensions/gcodetools_area.inx.h:43 +#: ../share/extensions/gcodetools_engraving.inx.h:27 +#: ../share/extensions/gcodetools_graffiti.inx.h:35 +#: ../share/extensions/gcodetools_lathe.inx.h:41 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:31 msgid "Select all paths if nothing is selected" msgstr "Alle paden selecteren indien niets is geselecteerd" -#: ../share/extensions/gcodetools_all_in_one.inx.h:42 -#: ../share/extensions/gcodetools_tools_library.inx.h:5 -msgid "Selected tool type fills appropriate default values. You can change these values using the Text tool later on. The topmost (z order) tool in the active layer is used. If there is no tool inside the current layer it is taken from the upper layer. Press Apply to create new tool." -msgstr "Het geselecteerde type gereedshap gebruikt de standaardwaarden. Je kan deze waarden nadien veranderen met het tekstgereedschap." - -#: ../share/extensions/gcodetools_all_in_one.inx.h:43 -#: ../share/extensions/gcodetools_engraving.inx.h:21 -msgid "Sharp angle tolerance:" -msgstr "Tolerantie scherpe hoek:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:44 -#: ../share/extensions/gcodetools_engraving.inx.h:22 -msgid "This function creates path to engrave sharp angles. Cutter's shape function is defined by the tool. Some simple shapes: cone....(45 degrees)...........: w cone....(height/diameter=10/3).: 10/3 w sphere..(\"r\" diameter).........: math.sqrt(max(0,r**2-w**2)) ellipse.(R1=r and R2=r*4r).....: math.sqrt(max(0,r**2-w**2))*4" -msgstr "Deze functie maakt een pad voor het graveren van scherpe hoeken. De functie voor de mesvorm wordt bepaald door het gereedschap. Enkele eenvoudige vormen: kegel...(45 graden)............: w kegel...(hoogte/diameter=10/3).: 10/3 w bol..(\"r\" diameter).........: math.sqrt(max(0,r**2-w**2)) ellips..(R1=r en R2=r*4r).....: math.sqrt(max(0,r**2-w**2))*4" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:45 -#: ../share/extensions/gcodetools_tools_library.inx.h:6 -msgid "Tools library" -msgstr "Gereedschappenbibliotheek" +#: ../share/extensions/gcodetools_area.inx.h:44 +#: ../share/extensions/gcodetools_lathe.inx.h:42 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:32 +msgid "Sort paths to reduse rapid distance" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:46 -#: ../share/extensions/gcodetools_tools_library.inx.h:7 -msgid "Tools type:" -msgstr "Type gereedschap:" +#: ../share/extensions/gcodetools_area.inx.h:46 +#: ../share/extensions/gcodetools_lathe.inx.h:43 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:33 +msgid "Subpath by subpath" +msgstr "" -#: ../share/extensions/gcodetools_all_in_one.inx.h:47 -#: ../share/extensions/gcodetools_area.inx.h:28 -#: ../share/extensions/gcodetools_dxf_points.inx.h:16 -#: ../share/extensions/gcodetools_engraving.inx.h:23 -#: ../share/extensions/gcodetools_lathe.inx.h:28 -#: ../share/extensions/gcodetools_orientation_points.inx.h:10 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:21 +#: ../share/extensions/gcodetools_area.inx.h:47 +#: ../share/extensions/gcodetools_dxf_points.inx.h:20 +#: ../share/extensions/gcodetools_engraving.inx.h:30 +#: ../share/extensions/gcodetools_graffiti.inx.h:37 +#: ../share/extensions/gcodetools_lathe.inx.h:45 +#: ../share/extensions/gcodetools_orientation_points.inx.h:9 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:34 msgid "Units (mm or in):" msgstr "Eenheden (mm of in):" -#: ../share/extensions/gcodetools_all_in_one.inx.h:48 -#: ../share/extensions/gcodetools_area.inx.h:29 +#: ../share/extensions/gcodetools_area.inx.h:48 msgid "Usage: 1. Select all Area Offsets (gray outlines) 2. Object/Ungroup (Shift+Ctrl+G) 3. Press Apply Suspected small objects will be marked out by colored arrows." msgstr "Gebruik: 1. Selecteer alle offsets van het oppervlak (grijze contouren) 2. Objecten degrouperen (Shift+Ctrl+G) 3. Druk op Toepassen Verdachte kleine objecten worden gemarkeerd met gekleurde bogen." -#: ../share/extensions/gcodetools_all_in_one.inx.h:49 -#: ../share/extensions/gcodetools_orientation_points.inx.h:11 -msgid "Z depth:" -msgstr "Z diepte:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:50 -#: ../share/extensions/gcodetools_area.inx.h:30 -#: ../share/extensions/gcodetools_dxf_points.inx.h:17 -#: ../share/extensions/gcodetools_engraving.inx.h:24 -#: ../share/extensions/gcodetools_lathe.inx.h:29 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:22 +#: ../share/extensions/gcodetools_area.inx.h:49 +#: ../share/extensions/gcodetools_dxf_points.inx.h:21 +#: ../share/extensions/gcodetools_engraving.inx.h:31 +#: ../share/extensions/gcodetools_graffiti.inx.h:39 +#: ../share/extensions/gcodetools_lathe.inx.h:46 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:35 msgid "Z safe height for G00 move over blank:" msgstr "Veilige Z-hoogte voor G00-verplaatsing over blanco:" -#: ../share/extensions/gcodetools_all_in_one.inx.h:51 -#: ../share/extensions/gcodetools_orientation_points.inx.h:12 -msgid "Z surface:" -msgstr "Z-oppervlak:" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:52 -#: ../share/extensions/gcodetools_dxf_points.inx.h:18 -msgid "clear dxfpoint sign" -msgstr "dxf-punt teken weghalen" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:53 -#: ../share/extensions/gcodetools_tools_library.inx.h:8 -msgid "cone" -msgstr "kegel" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:54 -#: ../share/extensions/gcodetools_tools_library.inx.h:9 -msgid "cylinder" -msgstr "cilinder" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:55 -#: ../share/extensions/gcodetools_tools_library.inx.h:10 -msgid "default" -msgstr "standaard" +#: ../share/extensions/gcodetools_area.inx.h:50 +#, fuzzy +msgid "Zig zag" +msgstr "Zigzag" -#: ../share/extensions/gcodetools_all_in_one.inx.h:56 -#: ../share/extensions/gcodetools_area.inx.h:31 +#: ../share/extensions/gcodetools_area.inx.h:51 msgid "delete" msgstr "verwijderen" -#: ../share/extensions/gcodetools_all_in_one.inx.h:57 -#: ../share/extensions/gcodetools_tools_library.inx.h:11 -msgid "lathe cutter" -msgstr "frees" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:58 -#: ../share/extensions/gcodetools_area.inx.h:32 +#: ../share/extensions/gcodetools_area.inx.h:53 msgid "mark with an arrow" msgstr "Markeren met een boog" -#: ../share/extensions/gcodetools_all_in_one.inx.h:59 -#: ../share/extensions/gcodetools_area.inx.h:33 +#: ../share/extensions/gcodetools_area.inx.h:54 msgid "mark with style" msgstr "Markeren met stijl" -#: ../share/extensions/gcodetools_all_in_one.inx.h:60 -#: ../share/extensions/gcodetools_tools_library.inx.h:12 -msgid "plasma" -msgstr "plasma" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:61 -#: ../share/extensions/gcodetools_dxf_points.inx.h:19 -msgid "set as dxfpoint and draw arrow" -msgstr "instellen als dxf-punt en pijl tekenen" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:62 -#: ../share/extensions/gcodetools_dxf_points.inx.h:20 -msgid "set as dxfpoint and save shape" -msgstr "instellen als dxf-punt en vorm bewaren" - -#: ../share/extensions/gcodetools_all_in_one.inx.h:63 -#: ../share/extensions/gcodetools_tools_library.inx.h:13 -msgid "tangent knife" -msgstr "tangensmes" - #: ../share/extensions/gcodetools_check_for_updates.inx.h:1 msgid "Check for Gcodetools latest stable version and try to get the updates." msgstr "De laatste stabiele Gcodetools versie controleren en trachten de updates op te halen." @@ -24821,49 +24981,285 @@ msgstr "De laatste stabiele Gcodetools versie controleren en trachten de updates msgid "Check for updates" msgstr "Controleren op updates" +#: ../share/extensions/gcodetools_dxf_points.inx.h:3 +msgid "Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used. Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value." +msgstr "Geselecteerde objecten converteren naar boorpunten (zoals de dxf_import plugin doet). Je kan ook de originele vorm bewaren. Slechts het beginpunt van elke vorm zal gebruikt worden. Je kan ook een object manueel selecteren, de XML-editor openen (Shift+Ctrl+X) en de 'dxfpoint'-tag met elke waarde toevoegen of verwijderen." + +#: ../share/extensions/gcodetools_dxf_points.inx.h:4 +msgid "Convert selection:" +msgstr "Selectie converteren" + #: ../share/extensions/gcodetools_dxf_points.inx.h:5 -msgid "DXF Points" +msgid "DXF points" msgstr "DXF-punten" -#: ../share/extensions/gcodetools_engraving.inx.h:4 -msgid "Draw additional graphics to debug engraving path" -msgstr "Additionele afbeeldingen tekenen om gravurepad te debuggen" +#: ../share/extensions/gcodetools_dxf_points.inx.h:22 +msgid "clear dxfpoint sign" +msgstr "dxf-punt teken weghalen" -#: ../share/extensions/gcodetools_lathe.inx.h:5 +#: ../share/extensions/gcodetools_dxf_points.inx.h:25 +msgid "set as dxfpoint and draw arrow" +msgstr "instellen als dxf-punt en pijl tekenen" + +#: ../share/extensions/gcodetools_dxf_points.inx.h:26 +msgid "set as dxfpoint and save shape" +msgstr "instellen als dxf-punt en vorm bewaren" + +#: ../share/extensions/gcodetools_engraving.inx.h:1 +msgid "Accuracy factor (2 low to 10 high):" +msgstr "" + +#: ../share/extensions/gcodetools_engraving.inx.h:6 +msgid "Draw additional graphics to see engraving path" +msgstr "Additionele afbeeldingen tekenen om gravurepad te zien" + +#: ../share/extensions/gcodetools_engraving.inx.h:7 +msgid "Engraving" +msgstr "Gravering" + +#: ../share/extensions/gcodetools_engraving.inx.h:17 +msgid "Maximum distance for engraving (mm/inch):" +msgstr "Maximum afstand voor gravure (mm/duim):" + +#: ../share/extensions/gcodetools_engraving.inx.h:28 +msgid "Smooth convex corners between this value and 180 degrees:" +msgstr "" + +#: ../share/extensions/gcodetools_engraving.inx.h:29 +#, fuzzy +msgid "This function creates path to engrave letters or any shape with sharp angles. Cutter's depth as a function of radius is defined by the tool. Depth may be any Python expression. For instance: cone....(45 degrees)......................: w cone....(height/diameter=10/3)..: 10*w/3 sphere..(radius r)...........................: math.sqrt(max(0,r**2-w**2)) ellipse.(minor axis r, major 4r).....: math.sqrt(max(0,r**2-w**2))*4" +msgstr "Deze functie maakt een pad voor het graveren van scherpe hoeken. De functie voor de mesvorm wordt bepaald door het gereedschap. Enkele eenvoudige vormen: kegel...(45 graden)............: w kegel...(hoogte/diameter=10/3).: 10/3 w bol..(\"r\" diameter).........: math.sqrt(max(0,r**2-w**2)) ellips..(R1=r en R2=r*4r).....: math.sqrt(max(0,r**2-w**2))*4" + +#: ../share/extensions/gcodetools_graffiti.inx.h:1 +#: ../share/extensions/gcodetools_orientation_points.inx.h:1 +msgid "2-points mode (move and rotate, maintained aspect ratio X/Y)" +msgstr "2-punts modus (verplaatsen en roteren, X/Y aspectratio behouden)" + +#: ../share/extensions/gcodetools_graffiti.inx.h:2 +#: ../share/extensions/gcodetools_orientation_points.inx.h:2 +msgid "3-points mode (move, rotate and mirror, different X/Y scale)" +msgstr "3-punts modus (verplaatsen, roteren en spiegelen, X/Y aspectratio verschillend)" + +#: ../share/extensions/gcodetools_graffiti.inx.h:6 +msgid "Create linearization preview" +msgstr "Voorvertoning linearisatie maken" + +#: ../share/extensions/gcodetools_graffiti.inx.h:7 +msgid "Create preview" +msgstr "Voorvertoning maken" + +#: ../share/extensions/gcodetools_graffiti.inx.h:17 +msgid "Graffiti" +msgstr "Graffiti" + +#: ../share/extensions/gcodetools_graffiti.inx.h:19 +#, fuzzy +msgid "Maximum segment length:" +msgstr "Maximum segmentlengte (px):" + +#: ../share/extensions/gcodetools_graffiti.inx.h:20 +#, fuzzy +msgid "Minimal connector radius:" +msgstr "Minimum straal boog:" + +#: ../share/extensions/gcodetools_graffiti.inx.h:26 +#: ../share/extensions/gcodetools_orientation_points.inx.h:7 +msgid "Orientation points are used to calculate transformation (offset,scale,mirror,rotation in XY plane) of the path. 3-points mode only: do not put all three into one line (use 2-points mode instead). You can modify Z surface, Z depth values later using text tool (3rd coordinates). If there are no orientation points inside current layer they are taken from the upper layer. Do not ungroup orientation points! You can select them using double click to enter the group or by Ctrl+Click. Now press apply to create control points (independent set for each layer)." +msgstr "OriΓ«ntatiepunten worden gebruikt om de transformatie (offset, schalen, spiegeling, rotatie in het XY vlak) van het pad te berekenen. Alleen 3-punts modus: plaats niet alle 3 de punten op een lijn (gebruik dan de 2-punts modus). Je kan de Z-oppervlakte en Z-diepte later aanpassen met het tekstgereedschap (derde coΓ¶rdinaat). Indien er geen oriΓ«ntatiepunten in de huidige laag zijn, worden ze van de bovenste laag genomen. Degroepeer nooit oriΓ«ntatiepunten! Je kan ze selecteren door een dubbelklik om de groep binnen te gaan of door Ctrl+klik. Druk nu op Toepassen om de controlepunten aan te maken (onafhankelijke set voor elke laag)." + +#: ../share/extensions/gcodetools_graffiti.inx.h:27 +#: ../share/extensions/gcodetools_orientation_points.inx.h:8 +msgid "Orientation type:" +msgstr "Type oriΓ«ntatie:" + +#: ../share/extensions/gcodetools_graffiti.inx.h:31 +msgid "Preview's paint emmit (pts/s):" +msgstr "" + +#: ../share/extensions/gcodetools_graffiti.inx.h:32 +#, fuzzy +msgid "Preview's size (px):" +msgstr "Grootte punt (px):" + +#: ../share/extensions/gcodetools_graffiti.inx.h:36 +#, fuzzy +msgid "Start position (x;y):" +msgstr "Layoutplaatsing:" + +#: ../share/extensions/gcodetools_graffiti.inx.h:38 +#: ../share/extensions/gcodetools_orientation_points.inx.h:10 +msgid "Z depth:" +msgstr "Z diepte:" + +#: ../share/extensions/gcodetools_graffiti.inx.h:40 +#: ../share/extensions/gcodetools_orientation_points.inx.h:11 +msgid "Z surface:" +msgstr "Z-oppervlak:" + +#: ../share/extensions/gcodetools_graffiti.inx.h:41 +#: ../share/extensions/gcodetools_orientation_points.inx.h:12 +#, fuzzy +msgid "graffiti points" +msgstr "OriΓ«ntatiepunten" + +#: ../share/extensions/gcodetools_graffiti.inx.h:43 +#: ../share/extensions/gcodetools_orientation_points.inx.h:14 +#, fuzzy +msgid "in-out reference point" +msgstr "Kleurverloopvoorkeuren" + +#: ../share/extensions/gcodetools_lathe.inx.h:6 msgid "Create fine cut using:" msgstr "Precisiesnede maken met:" -#: ../share/extensions/gcodetools_lathe.inx.h:7 -msgid "File" -msgstr "Bestand" - -#: ../share/extensions/gcodetools_lathe.inx.h:8 +#: ../share/extensions/gcodetools_lathe.inx.h:12 msgid "Fine cut count:" msgstr "Aantal sneden:" -#: ../share/extensions/gcodetools_lathe.inx.h:9 +#: ../share/extensions/gcodetools_lathe.inx.h:13 msgid "Fine cut width:" msgstr "Breedte snede:" -#: ../share/extensions/gcodetools_lathe.inx.h:15 +#: ../share/extensions/gcodetools_lathe.inx.h:21 msgid "Lathe" msgstr "Draaibank" -#: ../share/extensions/gcodetools_lathe.inx.h:16 +#: ../share/extensions/gcodetools_lathe.inx.h:22 msgid "Lathe X axis remap:" msgstr "Draaibank X-as herindeling:" -#: ../share/extensions/gcodetools_lathe.inx.h:17 +#: ../share/extensions/gcodetools_lathe.inx.h:23 msgid "Lathe Z axis remap:" msgstr "Draaibank Z-as herindeling:" -#: ../share/extensions/gcodetools_lathe.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:24 +#, fuzzy +msgid "Lathe modify path" +msgstr "Pad aanpassen" + +#: ../share/extensions/gcodetools_lathe.inx.h:25 msgid "Lathe width:" msgstr "Breedte draaibank:" -#: ../share/extensions/gcodetools_orientation_points.inx.h:7 -msgid "Orientation points" -msgstr "OriΓ«ntatiepunten" +#: ../share/extensions/gcodetools_lathe.inx.h:28 +#, fuzzy +msgid "Move path" +msgstr "Patronen verplaatsen" + +#: ../share/extensions/gcodetools_lathe.inx.h:44 +msgid "This function modifies path so it will be able to be cut with the rectangular cutter." +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:1 +msgid "-------------------------------------------------" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2 +#, fuzzy +msgid "Create in-out paths" +msgstr "Spiraal maken" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:3 +msgid "Do not add in-out reference points" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:7 +#, fuzzy +msgid "In-out path length:" +msgstr "Padlengte" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:8 +msgid "In-out path max distance to reference point:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:9 +msgid "In-out path radius for round path:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:10 +msgid "In-out path type:" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:11 +msgid "Maximum angle for corner (0-180 deg):" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:12 +#, fuzzy +msgid "Perpendicular" +msgstr "Loodrechte deellijn" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:13 +#, fuzzy +msgid "Prepare corners" +msgstr "paginahoek" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:14 +msgid "Prepare path for plasma or laser cuters" +msgstr "" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:15 +#, fuzzy +msgid "Replace original path" +msgstr "Afsnijpad uitschakelen" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:16 +#, fuzzy +msgid "Round" +msgstr "Afgerond" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:17 +#, fuzzy +msgid "Stepout distance for corners:" +msgstr "Aan hoeken van omvattend vak kleven" + +#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:18 +msgid "Tangent" +msgstr "Tangens" + +#: ../share/extensions/gcodetools_tools_library.inx.h:4 +msgid "Just check tools" +msgstr "Gereedschappen nakijken" + +#: ../share/extensions/gcodetools_tools_library.inx.h:5 +msgid "Selected tool type fills appropriate default values. You can change these values using the Text tool later on. The topmost (z order) tool in the active layer is used. If there is no tool inside the current layer it is taken from the upper layer. Press Apply to create new tool." +msgstr "Het geselecteerde type gereedshap gebruikt de standaardwaarden. Je kan deze waarden nadien veranderen met het tekstgereedschap." + +#: ../share/extensions/gcodetools_tools_library.inx.h:6 +msgid "Tools library" +msgstr "Gereedschappenbibliotheek" + +#: ../share/extensions/gcodetools_tools_library.inx.h:7 +msgid "Tools type:" +msgstr "Type gereedschap:" + +#: ../share/extensions/gcodetools_tools_library.inx.h:8 +msgid "cone" +msgstr "kegel" + +#: ../share/extensions/gcodetools_tools_library.inx.h:9 +msgid "cylinder" +msgstr "cilinder" + +#: ../share/extensions/gcodetools_tools_library.inx.h:10 +msgid "default" +msgstr "standaard" + +#: ../share/extensions/gcodetools_tools_library.inx.h:11 +msgid "graffiti" +msgstr "graffiti" + +#: ../share/extensions/gcodetools_tools_library.inx.h:12 +msgid "lathe cutter" +msgstr "frees" + +#: ../share/extensions/gcodetools_tools_library.inx.h:13 +msgid "plasma" +msgstr "plasma" + +#: ../share/extensions/gcodetools_tools_library.inx.h:14 +msgid "tangent knife" +msgstr "tangensmes" #: ../share/extensions/generate_voronoi.inx.h:1 msgid "Average size of cell (px):" @@ -26816,11 +27212,11 @@ msgstr "Kracht (%):" #: ../share/extensions/scour.inx.h:1 msgid "Convert CSS attributes to XML attributes" -msgstr "" +msgstr "CSS-attributen omzetten in XML-attributen" #: ../share/extensions/scour.inx.h:2 msgid "Create groups for similar attributes" -msgstr "" +msgstr "Groepen maken voor gelijkende attributen" #: ../share/extensions/scour.inx.h:3 msgid "Embed rasters" @@ -26836,15 +27232,15 @@ msgstr "Groepen samenvouwen" #: ../share/extensions/scour.inx.h:6 msgid "Help (Ids)" -msgstr "" +msgstr "Help (Ids)" #: ../share/extensions/scour.inx.h:7 msgid "Help (Options)" -msgstr "Help (opties)" +msgstr "Help (Opties)" #: ../share/extensions/scour.inx.h:8 msgid "Ids" -msgstr "" +msgstr "Ids" #: ../share/extensions/scour.inx.h:9 msgid "" @@ -26862,7 +27258,7 @@ msgstr "Programmadata behouden" #: ../share/extensions/scour.inx.h:17 msgid "Number of significant digits for coords" -msgstr "" +msgstr "Aantal beduidende cijfers voor coΓ¶rdinaten" #: ../share/extensions/scour.inx.h:18 msgid "Optimized SVG (*.svg)" @@ -26874,15 +27270,15 @@ msgstr "Geoptimaliseerde SVG-uitvoer" #: ../share/extensions/scour.inx.h:21 msgid "Preserve ID names starting with:" -msgstr "" +msgstr "ID namen behouden die beginnen met:" #: ../share/extensions/scour.inx.h:22 msgid "Preserve manually created ID names not ending with digits" -msgstr "" +msgstr "Manueel gemaakte ID-namen die niet eindigen met cijfers, behouden" #: ../share/extensions/scour.inx.h:23 msgid "Preserve these ID names, comma-separated:" -msgstr "" +msgstr "Deze ID-namen, gescheiden door komma's, behouden:" #: ../share/extensions/scour.inx.h:24 msgid "Remove comments" @@ -26898,7 +27294,7 @@ msgstr "Xml-declaratie verwijderen" #: ../share/extensions/scour.inx.h:27 msgid "Remove unused ID names for elements" -msgstr "" +msgstr "Ongebruikte ID-namen voor elementen verwijderen" #: ../share/extensions/scour.inx.h:28 msgid "Scalable Vector Graphics" @@ -26906,7 +27302,7 @@ msgstr "Scalable Vector Graphics" #: ../share/extensions/scour.inx.h:29 msgid "Shorten IDs" -msgstr "" +msgstr "ID's afkorten" #: ../share/extensions/scour.inx.h:30 msgid "Shorten color values" @@ -26940,7 +27336,7 @@ msgstr "" #: ../share/extensions/scour.inx.h:47 msgid "Work around renderer bugs" -msgstr "" +msgstr "Omzeilen van renderbugs" #: ../share/extensions/scour.inx.h:48 msgid "XML indentation (pretty-printing)" @@ -27762,39 +28158,45 @@ msgstr "Windows Metafile-invoer" msgid "XAML Input" msgstr "XAML-invoer" -#~ msgid "Iconify this dock" -#~ msgstr "Dit paneel inklappen" -#~ msgid "Close this dock" -#~ msgstr "Dit paneel sluiten" - -#, fuzzy -#~ msgid "Ancestor offset" -#~ msgstr "Gemiddelde verplaatsing:" - -#, fuzzy -#~ msgid "Maximum slope (%):" -#~ msgstr "Maximum segmentlengte (px):" - -#, fuzzy -#~ msgid "Modification type:" -#~ msgstr "Type oriΓ«ntatie:" - -#, fuzzy -#~ msgid "Shape" -#~ msgstr "Vormen" - -#, fuzzy -#~ msgid "Size and position" -#~ msgstr "Posities willekeurig maken" - -#, fuzzy -#~ msgid "Snap ancestors" -#~ msgstr "Aan rasters kleven" +#~ msgid "center" +#~ msgstr "midden" +#~ msgid "Center" +#~ msgstr "Midden" +#~ msgid "Transluscent" +#~ msgstr "Doorzichtig" +#~ msgid "Windows 32-bit Print" +#~ msgstr "Windows 32-bit print" +#~ msgid "Iconify" +#~ msgstr "Inklappen" +#~ msgid "Close" +#~ msgstr "Sluiten" +#~ msgid "(invalid UTF-8 string)" +#~ msgstr "(ongeldige UTF-8 string)" +#~ msgid "Label:" +#~ msgstr "Label:" +#~ msgid "Print Previe_w" +#~ msgstr "Afdruk_voorbeeld" +#~ msgid "Preview document printout" +#~ msgstr "Een afdrukvoorbeeld van het document tonen" +#~ msgctxt "Font selector" +#~ msgid "_Style" +#~ msgstr "_Stijl" +#~ msgid "Font si_ze:" +#~ msgstr "Letter_grootte:" +#~ msgid "All in one" +#~ msgstr "Alles in één" +#~ msgid "Draw additional graphics to debug engraving path:" +#~ msgstr "Additionele afbeeldingen tekenen om graveringspad te debuggen:" +#~ msgid "Number of sample points used to calculate distance:" +#~ msgstr "Aantal controlepunten gebruikt voor afstandsberekening:" +#~ msgid "Sharp angle tolerance:" +#~ msgstr "Tolerantie scherpe hoek:" +#~ msgid "DXF Points" +#~ msgstr "DXF-punten" +#~ msgid "File" +#~ msgstr "Bestand" #~ msgid "Font" #~ msgstr "Lettertype" -#~ msgctxt "Font selector" -#~ msgid "Style" -#~ msgstr "Stijl" #~ msgid "X frequency:" #~ msgstr "X-frequentie:" #~ msgid "Y frequency:" @@ -28435,8 +28837,6 @@ msgstr "XAML-invoer" #~ msgstr "%s (afdrukvoorbeeld kleuren) - Inkscape" #~ msgid "Drop shadow, color" #~ msgstr "Slagschaduw, gekleurd -EXP-" -#~ msgid "Colorizable Drop shadow" -#~ msgstr "Gekleurde slagschaduw" #~ msgid "Simplification:" #~ msgstr "Vereenvoudiging:" #~ msgid "Fading:" diff --git a/share/extensions/dxf_input.inx b/share/extensions/dxf_input.inx index 0e7ed7b8d..0ba38252a 100644 --- a/share/extensions/dxf_input.inx +++ b/share/extensions/dxf_input.inx @@ -7,18 +7,18 @@ <param name="tab" type="notebook"> <page name="options" _gui-text="Options"> <param name="auto" type="boolean" _gui-text="Use automatic scaling to size A4">true</param> - <param name="scale" type="string" _gui-text="Or, use manual scale factor">1.0</param> - <param name="xmin" type="string" _gui-text="Manual x-axis origin (mm)">0.0</param> - <param name="ymin" type="string" _gui-text="Manual y-axis origin (mm)">0.0</param> + <param name="scale" type="string" _gui-text="Or, use manual scale factor:">1.0</param> + <param name="xmin" type="string" _gui-text="Manual x-axis origin (mm):">0.0</param> + <param name="ymin" type="string" _gui-text="Manual y-axis origin (mm):">0.0</param> <param name="gcodetoolspoints" type="boolean" _gui-text="Gcodetools compatible point import">false</param> <param name="sep1" type="description">-------------------------------------------------------------------------</param> - <param name="encoding" type="enum" _gui-text="Character Encoding"> + <param name="encoding" type="enum" _gui-text="Character encoding:"> <item value="latin_1">Latin 1</item> <item value="cp1250">CP 1250</item> <item value="cp1252">CP 1252</item> <item value="utf_8">UTF 8</item> </param> - <param name="font" type="string" _gui-text="Text Font">Arial</param> + <param name="font" type="string" _gui-text="Text Font:">Arial</param> </page> <page name="help" _gui-text="Help"> <_param name="inputhelp" type="description" xml:space="preserve">- AutoCAD Release 13 and newer. diff --git a/share/extensions/gcodetools_about.inx b/share/extensions/gcodetools_about.inx index 3dd983835..b6c0fcde2 100644 --- a/share/extensions/gcodetools_about.inx +++ b/share/extensions/gcodetools_about.inx @@ -10,10 +10,10 @@ <page name='about' _gui-text='About'> <_param name="help" type="description">Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode is a special format which is used in most of CNC machines. So Gcodetools allows you to use Inkscape as CAM program. -It can be use with a lot of machone types: +It can be use with a lot of machine types: Mills Lathes - Laser and Palsma cutters and engravers + Laser and Plasma cutters and engravers Mill engravers Plotters etc. diff --git a/share/extensions/gcodetools_area.inx b/share/extensions/gcodetools_area.inx index 9f4a083d4..30ed362cd 100644 --- a/share/extensions/gcodetools_area.inx +++ b/share/extensions/gcodetools_area.inx @@ -21,7 +21,7 @@ Only one offset will be created if the "Area width" is equal to "1/2 D". </page> <page name='area_fill' _gui-text='Fill area'> - <param name="area-fill-angle" type="float" min="-360" max="360" _gui-text="Area fill anlge">0</param> + <param name="area-fill-angle" type="float" min="-360" max="360" _gui-text="Area fill angle">0</param> <param name="area-fill-shift" type="float" min="-1" max="1" _gui-text="Area fill shift">0</param> <param name="area-fill-method" type="float" min="-1" max="1" _gui-text="Area fill shift">0</param> <param name="area-fill-method" _gui-text="Filling method" type="optiongroup"> @@ -50,7 +50,7 @@ Suspected small objects will be marked out by colored arrows. <page name='path-to-gcode' _gui-text='Path to Gcode'> <param name="biarc-tolerance" type='float' precision="5" _gui-text='Biarc interpolation tolerance:'>1</param> <param name="biarc-max-split-depth" type="int" _gui-text="Maximum splitting depth:">4</param> - <param name="path-to-gcode-order" _gui-text="Cutting order" type="optiongroup" appearance="minimal"> + <param name="path-to-gcode-order" _gui-text="Cutting order:" type="optiongroup" appearance="minimal"> <_option value="subpath by subpath">Subpath by subpath</_option> <_option value="path by path">Path by path</_option> <_option value="pass by pass">Pass by Pass</_option> diff --git a/share/extensions/gcodetools_lathe.inx b/share/extensions/gcodetools_lathe.inx index a45896f3e..641a4f065 100644 --- a/share/extensions/gcodetools_lathe.inx +++ b/share/extensions/gcodetools_lathe.inx @@ -30,7 +30,7 @@ <page name='path-to-gcode' _gui-text='Path to Gcode'> <param name="biarc-tolerance" type='float' precision="5" _gui-text='Biarc interpolation tolerance:'>1</param> <param name="biarc-max-split-depth" type="int" _gui-text="Maximum splitting depth:">4</param> - <param name="path-to-gcode-order" _gui-text="Cutting order" type="optiongroup" appearance="minimal"> + <param name="path-to-gcode-order" _gui-text="Cutting order:" type="optiongroup" appearance="minimal"> <_option value="subpath by subpath">Subpath by subpath</_option> <_option value="path by path">Path by path</_option> <_option value="pass by pass">Pass by Pass</_option> diff --git a/share/extensions/gcodetools_path_to_gcode.inx b/share/extensions/gcodetools_path_to_gcode.inx index 16ac68ab8..b610c490b 100644 --- a/share/extensions/gcodetools_path_to_gcode.inx +++ b/share/extensions/gcodetools_path_to_gcode.inx @@ -10,7 +10,7 @@ <page name='path-to-gcode' _gui-text='Path to Gcode'> <param name="biarc-tolerance" type='float' precision="5" _gui-text='Biarc interpolation tolerance:'>1</param> <param name="biarc-max-split-depth" type="int" _gui-text="Maximum splitting depth:">4</param> - <param name="path-to-gcode-order" _gui-text="Cutting order" type="optiongroup" appearance="minimal"> + <param name="path-to-gcode-order" _gui-text="Cutting order:" type="optiongroup" appearance="minimal"> <_option value="subpath by subpath">Subpath by subpath</_option> <_option value="path by path">Path by path</_option> <_option value="pass by pass">Pass by Pass</_option> diff --git a/share/extensions/webslicer_create_group.py b/share/extensions/webslicer_create_group.py index c2de0594b..613162850 100644 --- a/share/extensions/webslicer_create_group.py +++ b/share/extensions/webslicer_create_group.py @@ -55,7 +55,7 @@ class WebSlicer_CreateGroup(WebSlicer_Effect): def get_base_elements(self): self.layer = self.get_slicer_layer() if is_empty(self.layer): - inkex.errormsg(_('You must to create and select some "Slicer rectangles" before try to group.')) + inkex.errormsg(_('You must create and select some "Slicer rectangles" before trying to group.')) exit(3) self.layer_descendants = self.get_descendants_in_array(self.layer) @@ -74,7 +74,7 @@ class WebSlicer_CreateGroup(WebSlicer_Effect): exit(1) for id,node in self.selected.iteritems(): if node not in self.layer_descendants: - inkex.errormsg(_('Opss... The element "%s" is not in the Web Slicer layer') % id) + inkex.errormsg(_('Oops... The element "%s" is not in the Web Slicer layer') % id) exit(2) g_parent = self.getParentNode(node) group = inkex.etree.SubElement(g_parent, 'g') diff --git a/share/tutorials/Makefile.am b/share/tutorials/Makefile.am index 2b4633c22..6b24ce34f 100644 --- a/share/tutorials/Makefile.am +++ b/share/tutorials/Makefile.am @@ -33,6 +33,7 @@ tutorial_DATA = \ tutorial-advanced.ca.svg \ tutorial-advanced.cs.svg \ tutorial-advanced.de.svg \ + tutorial-advanced.el.svg \ tutorial-advanced.es.svg \ tutorial-advanced.eu.svg \ tutorial-advanced.fa.svg \ @@ -57,6 +58,7 @@ tutorial_DATA = \ tutorial-basic.cs.svg \ tutorial-basic.da.svg \ tutorial-basic.de.svg \ + tutorial-basic.el.svg \ tutorial-basic.eo.svg \ tutorial-basic.es.svg \ tutorial-basic.eu.svg \ @@ -83,6 +85,7 @@ tutorial_DATA = \ tutorial-calligraphy.ca.svg \ tutorial-calligraphy.cs.svg \ tutorial-calligraphy.de.svg \ + tutorial-calligraphy.el.svg \ tutorial-calligraphy.es.svg \ tutorial-calligraphy.eu.svg \ tutorial-calligraphy.fa.svg \ @@ -102,6 +105,7 @@ tutorial_DATA = \ tutorial-elements.be.svg \ tutorial-elements.ca.svg \ tutorial-elements.de.svg \ + tutorial-elements.el.svg \ tutorial-elements.es.svg \ tutorial-elements.eu.svg \ tutorial-elements.fa.svg \ @@ -154,6 +158,7 @@ tutorial_DATA = \ tutorial-tips.be.svg \ tutorial-tips.ca.svg \ tutorial-tips.de.svg \ + tutorial-tips.el.svg \ tutorial-tips.es.svg \ tutorial-tips.eu.svg \ tutorial-tips.fa.svg \ diff --git a/share/tutorials/tutorial-advanced.el.svg b/share/tutorials/tutorial-advanced.el.svg new file mode 100644 index 000000000..f39d55477 --- /dev/null +++ b/share/tutorials/tutorial-advanced.el.svg @@ -0,0 +1,511 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. --> +<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient841"> + <stop id="stop842" stop-color="#0082ab" offset="0"/> + <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/> + <filter id="filter48" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset56" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/> + <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/> + <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/> + <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/> + <g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-3.296641)"> + <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" fill="#000"/> + </g> + <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff"> + <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::Ξ Ξ΅ΞΧΩΡΗΞΞΞΞ</tspan> + </text> +bulia byak, buliabyak@users.sf.net and josh andler, scislac@users.sf.net + <rect id="d0e15" display="none" height="1000px" width="264" y="36" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e15"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα ΞΊΞ±Ξ»Οπτει αντιγΟαφή/επικΟλληση, επεξεΟγασία ΞΊΟμβων, σχεδίαση ελεΟΞΈΞµΟΞ· ΞΊΞ±ΞΉ bezier, χειΟισμΟΟ‚ μονοπατιοΟ, boole, μετατοπίσεις, απλοποίηση ΞΊΞ±ΞΉ ΞµΟγαλείο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ….</flowDiv> + </flowRoot> + <rect id="d0e18" display="none" height="1000px" width="264" y="70.87" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e18"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ§Οήση <flowSpan font-weight="bold">Ctrl+Ξ²Ξλη</flowSpan>, <flowSpan font-weight="bold">Ο„ΟΞΏΟ‡ΟΟ‚ ποντικιοΟ</flowSpan> Ξ® <flowSpan font-weight="bold">ΟƒΟΟσιμο μεσαίου ποντικιοΟ</flowSpan> Ξ³ΞΉΞ± ΞΊΟλιση της σελίδας Ο€ΟΞΏΟ‚ τα κάτω. Για τα βασικά της δημιουΟΞ³Ξ―Ξ±Ο‚ αντικειμΞΞ½ΞΏΟ…, επιλογής ΞΊΞ±ΞΉ μετασχηματισμοΟ, δείτε το Ξ²Ξ±ΟƒΞΉΞΊΟ ΞΌΞ¬ΞΈΞ·ΞΌΞ± στο <flowSpan font-family="Sans">Βοήθεια > Ξαθήματα</flowSpan></flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="135.326559" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="135.326559" x="10">ΤεχνικΞΟ‚ επικΟλλησης</tspan> + </text> + <rect id="d0e38" display="none" height="1000px" width="288" y="140.53" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e38"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξετά την αντιγΟαφή ΞΌΞµΟΞΉΞΊΟΞ½ αντικειμΞνων ΞΌΞµ <flowSpan font-weight="bold">Ctrl+C</flowSpan> Ξ® αποκοπή ΞΌΞµ <flowSpan font-weight="bold">Ctrl+X</flowSpan>, Ξ· ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ® εντολή <flowSpan font-family="Sans">ΕπικΟλληση</flowSpan> (<flowSpan font-weight="bold">Ctrl+V</flowSpan>) επικολλά τα αντιγΟΞ±ΞΌΞΌΞΞ½Ξ± αντικείμενα Ξ±ΞΊΟΞΉΞ²ΟΟ‚ κάτω Ξ±Ο€Ο Ο„ΞΏ Ξ΄ΟΞΏΞΌΞΞ± του ποντικιοΟ, εάν ΞΏ Ξ΄ΟΞΏΞΌΞΞ±Ο‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞµΞΊΟ„ΟΟ‚ παΟΞ±ΞΈΟΟΞΏΟ…, στο ΞΊΞΞ½Ο„ΟΞΏ του παΟΞ±ΞΈΟΟΞΏΟ… ΞµΞ³Ξ³Οάφου. Ξμως, τα αντικείμενα στο Ο€ΟΟχειΟΞΏ ΞΈΟ…ΞΌΞΏΟνται Ξ±ΞΊΟΞΌΞ± την Ξ±Οχική ΞΈΞση Ξ±Ο€Ο Ο„Ξ·Ξ½ οποία αντιγΟάφηκαν ΞΊΞ±ΞΉ μποΟΞΏΟΞ½ Ξ½Ξ± επικολληθοΟΞ½ πίσω ΞµΞΊΞµΞ― ΞΌΞµ <flowSpan font-family="Sans">ΕπικκΟληση επιτΟπου</flowSpan> (<flowSpan font-weight="bold">Ctrl+Alt+V</flowSpan>).</flowDiv> + </flowRoot> + <rect id="d0e59" display="none" height="1000px" width="288" y="222.47" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e59"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± άλλη εντολή, <flowSpan font-family="Sans">ΕπικΟλληση ΞΌΞΏΟφοποίησης</flowSpan> (<flowSpan font-weight="bold">Shift+Ctrl+V</flowSpan>), εφαΟΞΌΟΞ¶ΞµΞΉ τη ΞΌΞΏΟφοποίηση του Ο€ΟΟτου αντικειμΞΞ½ΞΏΟ… στο Ο€ΟΟχειΟΞΏ στην Ο„ΟΞχουσα επιλογή. Ξ— Ξτσι επικολλημΞΞ½Ξ· "ΞΌΞΏΟφοποίηση" πεΟιλαμβάνει το Ξ³Ξμισμα, την πινελιά ΞΊΞ±ΞΉ Ουθμίσεις Ξ³ΟαμματοσειΟΟΞ½, αλλά Οχι το ΞΌΞΞ³ΞµΞΈΞΏΟ‚, σχήμα Ξ® ειδικΞΟ‚ παΟΞ±ΞΌΞΟ„ΟΞΏΟ…Ο‚ στον Ο„Οπο σχήματος, Οπως ΞΏ Ξ±ΟΞΉΞΈΞΌΟΟ‚ ΞΊΞΏΟΟ…Ο†ΟΞ½ αστεΟΞΉΞΏΟ.</flowDiv> + </flowRoot> + <rect id="d0e68" display="none" height="1000px" width="288" y="293.84" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e68"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ± Ξ±ΞΊΟΞΌΞ± ΟƒΟνολο εντολΟΞ½ επικΟλλησης, <flowSpan font-family="Sans">ΕπικΟλληση ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚</flowSpan>, κλιμακΟΞ½ΞµΞΉ την επιλογή Οστε Ξ½Ξ± ταιΟιάζει το ΞµΟ€ΞΉΞΈΟ…ΞΌΞ·Ο„Ο ΞΌΞΞ³ΞµΞΈΞΏΟ‚ του Ξ³Ξ½Ο‰Οίσματος των αντικειμΞνων Ο€ΟοχείΟΞΏΟ…. ΥπάΟχει ΞΞ½Ξ±Ο‚ Ξ±ΟΞΉΞΈΞΌΟΟ‚ εντολΟΞ½ Ξ³ΞΉΞ± το ΞΌΞΞ³ΞµΞΈΞΏΟ‚ της επικΟλλησης ΞΊΞ±ΞΉ ΞµΞ―Ξ½Ξ±ΞΉ ως εξής: ΞΌΞΞ³ΞµΞΈΞΏΟ‚ επικΟλλησης, πλάτος επικΟλλησης, ΟΟΞΏΟ‚ επικΟλλησης, επικΟλληση ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ ξεχωΟιστά, επικΟλληση πλάτους ξεχωΟιστά ΞΊΞ±ΞΉ επικΟλληση ΟΟΞΏΟ…Ο‚ ξεχωΟιστά.</flowDiv> + </flowRoot> + <rect id="d0e74" display="none" height="1000px" width="288" y="375.86" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e74"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— <flowSpan font-family="Sans">ΕπικΟλληση ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚</flowSpan> κλιμακΟΞ½ΞµΞΉ τη συνολική επιλογή Ξ³ΞΉΞ± Ξ½Ξ± ταιΟιάζει ΞΌΞµ το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ ΞΌΞΞ³ΞµΞΈΞΏΟ‚ των αντικειμΞνων Ο€ΟοχείΟΞΏΟ…. Ξ— <flowSpan font-family="Sans">ΕπικΟλληση πλάτους</flowSpan>/<flowSpan font-family="Sans">ΕπικΟλληση ΟΟΞΏΟ…Ο‚</flowSpan> κλιμακΟΞ½ΞµΞΉ τη συνολική επιλογή ΞΏΟΞΉΞ¶Οντια/κάθετα Ξ³ΞΉΞ± Ξ½Ξ± ταιΟιάζει το πλάτος/ΟΟΞΏΟ‚ των αντικειμΞνων Ο€ΟοχείΟΞΏΟ…. ΑυτΞΟ‚ ΞΏΞΉ εντολΞΟ‚ διατηΟΞΏΟΞ½ το Ξ»ΟΞ³ΞΏ κλιμάκωσης στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΞ»Ξγχων επιλογΞΞ± ΞµΟγαλείου (ΞΌΞµΟ„Ξ±ΞΎΟ Ο€ΞµΞ΄Ξ―Ο‰Ξ½ πλάτους ΞΊΞ±ΞΉ ΟΟΞΏΟ…Ο‚), Ξτσι Οστε Οταν το κλείδωμα πιΞζεται, Ξ· άλλη διάσταση του επιλεγμΞΞ½ΞΏΟ… αντικειμΞΞ½ΞΏΟ… κλιμακΟνεται κατά την ίδια αναλογία. ΑλλιΟΟ‚ Ξ· άλλη διάσταση παΟΞ±ΞΌΞΞ½ΞµΞΉ αμετάβλητη. ΞΞΉ εντολΞΟ‚ που πεΟΞΉΞχουν "ξεχωΟιστά" δουλεΟΞΏΟ…Ξ½ παΟΟΞΌΞΏΞΉΞ± ΞΌΞµ τις πιο πάνω πεΟΞΉΞ³Οαφείσες εντολΞΟ‚, ΞµΞΊΟ„ΟΟ‚ Ξ±Ο€Ο Ο„Ξ·Ξ½ κλιμάκωση κάθε επιλεγμΞΞ½ΞΏΟ… αντικειμΞΞ½ΞΏΟ… ξεχωΟιστά Ξ³ΞΉΞ± Ξ½Ξ± ταιΟιάξει σε ΞΌΞΞ³ΞµΞΈΞΏΟ‚/πλάτος/ΟΟΞΏΟ‚ των αντικειμΞνων Ο€ΟοχείΟΞΏΟ….</flowDiv> + </flowRoot> + <rect id="d0e86" display="none" height="1000px" width="288" y="521.72" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e86"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Ο€ΟΟχειΟΞΏ ΞµΞ―Ξ½Ξ±ΞΉ Ξ³ΞΉΞ± Ολο το ΟƒΟστημα - μποΟείτε Ξ½Ξ± αντιγΟΞ¬Οετε/επικολλήσετε αντικείμενα ΞΌΞµΟ„Ξ±ΞΎΟ Ξ΄ΞΉΞ±Ο†ΞΏΟετικΟΞ½ στιγμιοτΟπων του Inkscape ΞΊΞ±ΞΈΟΟ‚ ΞΊΞ±ΞΉ ΞΌΞµΟ„Ξ±ΞΎΟ Inkscape ΞΊΞ±ΞΉ άλλων εφαΟΞΌΞΏΞ³ΟΞ½ (ΞΏΞΉ οποίες Ο€ΟΞπει Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ ΞΉΞΊΞ±Ξ½ΞΟ‚ Ξ½Ξ± χειΟιστοΟΞ½ SVG στο Ο€ΟΟχειΟΞΏ Ξ³ΞΉΞ± Ξ½Ξ± το Ο‡Οησιμοποιήσουν).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="595.2516059999999" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="595.2516059999999" x="10">Σχεδίαση ελεΟΞΈΞµΟων Ξ³ΟΞ±ΞΌΞΌΟΞ½ ΞΊΞ±ΞΉ ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ¬ μονοπάτια</tspan> + </text> + <rect id="d0e95" display="none" height="1000px" width="288" y="600.45" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e95"/> + </flowRegion> + <flowDiv xml:space="preserve">Ππιο απλΟΟ‚ Ο„ΟΟπος δημιουΟΞ³Ξ―Ξ±Ο‚ ΞµΞ½ΟΟ‚ ελεΟΞΈΞµΟΞΏΟ… σχήματος ΞµΞ―Ξ½Ξ±ΞΉ Ξ· σχεδίαση του Ο‡ΟησιμοποιΟντας το ΞµΟγαλείο ΞΌΞΏΞ»ΟΞ²ΞΉ (ελεΟΞΈΞµΟων Ξ³ΟΞ±ΞΌΞΌΟΞ½) (<flowSpan font-weight="bold">F6</flowSpan>):</flowDiv> + </flowRoot> + <path id="advanced-f01-el.svgpath1346" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M46.607,13.757c0.097,0.121-6.045-10.694,2.296-8.6084,13.014,3.2535,36.676,11.755,39.601-2.8696,0.665-3.3242-1.896,6.5097-2.87,9.757-11.022,36.74-10.376,90.104-60.836,90.104-3.944,0,1.624-8.306,4.592-10.903" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath1350" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M80.979,57.809c0.786,3.928-17.812,41.364-8.609,22.957,15.013-30.025,26.378-37.166,20.087,0.574-1.261,7.57,5.876,5.7,9.753,4.592" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath1354" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M146.47,49.915c0.86,1.283-3.06-0.383-4.59-0.574-6.77-0.847-15.45,12.452-4.59,16.07,18.47,6.156-6.95,13.097-13.2,14.348" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath1358" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M184.92,45.323c0.68-0.424-5.31,1.448-9.18,9.183-11.9,23.804,20.09,8.79,20.09-5.165,0-11.549-31.72,4.416-21.24,8.609" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath1360" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M195.25,47.619c0-1.031-3.28,11.218,1.73,21.235" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath1372" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M209.6,38.436c4.81,24.041-7.01,48.593-14.35,70.594-4.08,12.25-0.05-14.799,0.58-22.384,3.21-38.534,52.43-71.095,27.55-27.549-2.52,4.399-8.08,5.74-12.63,5.74" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath2338" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M125.36,10.791c0.45,0.68-16.45,58.367-18.22,65-6.23,23.357-13.253,15.48,2.86-12.143,7.99-13.704,20.38-26.489,12.5-2.857-3.64,10.922-12.32-1.972-8.57,9.285,2.13,6.396,3.58,10.662,10.71,9.643" sodipodi:nodetypes="cccccc" transform="translate(10, 647.821962) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath2356" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M168.93,48.291c-0.93,1.387-3.45-0.619-5,0-15.47,6.188-25.19,28.823-0.72,23.928,2.56-0.512,4.77-2.143,7.15-3.214" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f01-el.svgpath2382" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M230.71,51.862c-0.02,0.042,8.22-2.601,14.65-5.357,13.01-5.578,12.87-20.01-2.15-11.429-10.41,5.949-18.7,23.929-1.07,23.929,9.37,0,21.66-3.891,28.93-10.357" stroke-dashoffset="0.0000000" transform="translate(10, 647.821962) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="1.0000000pt" fill="none"/> + <rect id="d0e111" display="none" height="1000px" width="288" y="771.64" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e111"/> + </flowRegion> + <flowDiv xml:space="preserve">Εάν ΞΈΞλετε πιο ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ¬ σχήματα, Ο‡Οησιμοποιείστε το ΞµΟγαλείο Ο€ΞΞ½Ξ± (Bezier) (<flowSpan font-weight="bold">Shift+F6</flowSpan>):</flowDiv> + </flowRoot> + <path id="advanced-f02-el.svgpath1317" d="M28.569,8.4053h23.456s-12.689-18.802-12.689,2.0517c0,20.853,0.384,55.38,0.384,55.38h16.92s-47.49,14.529-31.148,0" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1318" d="M71.857,37.319h-11.117s15.087,27.151,0,27.151" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1320" d="M68.536,43.654c7.83-15.458,13-8.555,13-8.555v28.918h-5.854" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1321" d="M83.172,29.942l9.301-14.321v48.849s-0.841-24.272,9.927-29.4c10.77-5.128,11.79,12.616,0.64,12.616s-7.563,0.033-7.563,0.033l18.653,16.58h-13.27" sodipodi:nodetypes="cccccccc" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1322" d="M138.02,45.326s6.16-15.126,0-11.965c-6.16,3.16-21.15,17.264-19.42,17.264s19.86-1.855,18.65,0c-1.2,1.854-5.77,15.212-11.53,14.187-5.77-1.026-9.23-10.94-9.23-10.94" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1323" d="M164.31,46.693c-7.8-12.013-18.46-12.648-18.46-12.648v20.511l12.31,10.939s9.61,3.077,9.61-8.204" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1324" d="M161.48,33.515h25.41s-15.37,0.279-16,13.387,7.4,17.195,13.02,11.574c5.95-5.952,7.43-24.648,7.43-24.648v31.202" sodipodi:nodetypes="cccscc" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1325" d="M197.87,73.397v-40.161h13.6c14.16,0,5.22,11.841-0.83,18.686-6.03,6.81-8.8,5.641-8.8-2.231" sodipodi:nodetypes="cccsc" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f02-el.svgpath1328" d="M219.33,44.95h37.64s-0.31-11.156-17.57-11.435c-17.25-0.279-15.68,17.849-15.68,23.427s5.02,15.897,17.88,15.897,15.37-13.666,15.37-20.08" transform="translate(10, 807.941945) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <rect id="d0e127" display="none" height="1000px" width="288" y="893.96" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e127"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞµ το ΞµΟγαλείο Ο€ΞΞ½Ξ± κάθε <flowSpan font-weight="bold">κλικ</flowSpan> δημιουΟΞ³ΞµΞ― ΞΞ½Ξ±Ξ½ ΞΏΞΎΟ ΞΊΟΞΌΞ²ΞΏ χωΟΞ―Ο‚ λαβΞΟ‚ ΞΊΞ±ΞΌΟ€Ολης, Ξτσι ΞΌΞΉΞ± σειΟΞ¬ κλικ παΟάγει ΞΌΞΉΞ± ακολουθία τμημάτων ΞµΟ…ΞΈΞµΞΉΟΞ½ Ξ³ΟΞ±ΞΌΞΌΟΞ½. <flowSpan font-weight="bold">κλικ ΞΊΞ±ΞΉ ΟƒΟΟσιμο</flowSpan> δημιουΟΞ³ΞµΞ― ΞΞ½Ξ±Ξ½ ΞΏΞΌΞ±Ξ»Ο ΞΊΟΞΌΞ²ΞΏ Bezier ΞΌΞµ Ξ΄ΟΞΏ συγγΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚ αντίθετες λαβΞΟ‚. Πατήστε <flowSpan font-weight="bold">Shift</flowSpan> ΞµΞ½Ο ΟƒΟΟετε ΞΌΞΉΞ± λαβή Ξ³ΞΉΞ± Ξ½Ξ± πεΟιστΟΞΟετε ΞΌΟΞ½ΞΏ ΞΌΞΉΞ± λαβή ΞΊΞ±ΞΉ Ξ½Ξ± ΞΊΞ±ΞΈΞΏΟίσετε την άλλη. Ως συνήθως, το <flowSpan font-weight="bold">Ctrl</flowSpan> πεΟΞΉΞΏΟΞ―Ξ¶ΞµΞΉ την κατεΟθυνση την κατεΟθυνση είτε του τμήματος της Ο„ΟΞχουσας Ξ³Οαμμής Ξ® των λαβΟΞ½ Bezier σε αυξήσεις 15 ΞΌΞΏΞΉΟΟΞ½. Πατήστε <flowSpan font-weight="bold">Enter</flowSpan> Ξ³ΞΉΞ± ολοκλήΟωση της Ξ³Οαμμής, <flowSpan font-weight="bold">Esc</flowSpan> Ξ³ΞΉΞ± Ξ±ΞΊΟΟωση. Για Ξ½Ξ± Ξ±ΞΊΟ…ΟΟσετε ΞΌΟΞ½ΞΏ το τελευταίο τμήμα της ατελείωτης Ξ³Οαμμής, πατήστε <flowSpan font-weight="bold">Backspace</flowSpan>.</flowDiv> + </flowRoot> + <rect id="d0e151" display="none" height="1000px" width="288" y="1007.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e151"/> + </flowRegion> + <flowDiv xml:space="preserve">Στα ΞµΟγαλεία ελεΟΞΈΞµΟων Ξ³ΟΞ±ΞΌΞΌΟΞ½ ΞΊΞ±ΞΉ bezier, το Ο„ΟΞχον επιλεγμΞΞ½ΞΏ μονοπάτι εμφανίζει ΞΌΞΉΞΊΟΞ¬ τετΟάγωνα <flowSpan font-style="italic">άγκυΟΞµΟ‚</flowSpan> ΞΊΞ±ΞΉ στα Ξ΄ΟΞΏ άκΟΞ±. ΑυτΞΟ‚ ΞΏΞΉ άγκυΟΞµΟ‚ σας επιτΟΞπουν Ξ½Ξ± <flowSpan font-style="italic">συνεχίσετε</flowSpan> Ξ±Ο…Ο„Ο Ο„ΞΏ μονοπάτι (σχεδιάζοντας Ξ±Ο€Ο ΞΌΞ―Ξ± Ξ±Ο€Ο Ο„ΞΉΟ‚ άγκυΟΞµΟ‚) Ξ® Ξ½Ξ± το <flowSpan font-style="italic">κλείσετε</flowSpan> (σχεδιάζοντας Ξ±Ο€Ο Ο„Ξ· ΞΌΞ―Ξ± άγκυΟΞ± στην άλλη) αντί Ξ³ΞΉΞ± δημιουΟΞ³Ξ―Ξ± Ξ½ΞΞΏΟ… μονοπατιοΟ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1091.9952429999998" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1091.9952429999998" x="10">΅ΕπεξεΟγασία μονοπατιΟΞ½</tspan> + </text> + <rect id="d0e169" display="none" height="1000px" width="288" y="1097.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e169"/> + </flowRegion> + <flowDiv xml:space="preserve">Αντίθετα ΞΌΞµ τα σχήματα που δημιουΟγήθηκαν Ξ±Ο€Ο ΞµΟγαλεία σχημάτων, τα ΞµΟγαλεία Ο€ΞΞ½Ξ±Ο‚ ΞΊΞ±ΞΉ ΞΌΞΏΞ»Ο…Ξ²ΞΉΞΏΟ Ξ΄Ξ·ΞΌΞΉΞΏΟ…ΟΞ³ΞΏΟΞ½ Ξ±Ο…Ο„Ο Ο€ΞΏΟ… Ξ»Ξγεται <flowSpan font-style="italic">μονοπάτια</flowSpan>. ΞΞ½Ξ± μονοπάτι ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± σειΟΞ¬ τμημάτων ΞµΟ…ΞΈΞµΞΉΟΞ½ Ξ³ΟΞ±ΞΌΞΌΟΞ½ ΞΊΞ±ΞΉ/Ξ® καμπυλΟΞ½ Bezier που, Οπως κάθε άλλο αντικείμενο Inkscape, μποΟΞµΞ― Ξ½Ξ± Ξχει ελεΟΞΈΞµΟΞΏ Ξ³Ξμισμα ΞΊΞ±ΞΉ ιδιΟτητες πινελιάς. Αλλά αντίθετα ΞΌΞµ ΞΞ½Ξ± σχήμα, ΞΞ½Ξ± μονοπάτι μποΟΞµΞ― Ξ½Ξ± επεξεΟγαστεί ΟƒΟΟοντας ελεΟΞΈΞµΟΞ± οποιοδήποτε ΞΊΟΞΌΞ²ΞΏ του (Οχι ΞΌΟΞ½ΞΏ τις Ο€ΟΞΏΞΊΞ±ΞΈΞΏΟισμΞΞ½ΞµΟ‚ λαβΞΟ‚) Ξ® ΟƒΟΟοντας άμεσα ΞΞ½Ξ± τμήμα του μονοπατιοΟ. ΕπιλΞξτε Ξ±Ο…Ο„Ο Ο„ΞΏ μονοπάτι ΞΊΞ±ΞΉ μεταβείτε στο ΞµΟγαλείο ΞΊΟμβων (<flowSpan font-weight="bold">F2</flowSpan>):</flowDiv> + </flowRoot> + <path id="advanced-f03-el.svgpath1235" d="M49.143,24.797c13.131-7.502,29.978-20.056,44.278-15.242,11.149,3.752,27.099,30.288,1.036,38.409,9.953,6.454,24.033,1.294,35.263-3.812,23.27-10.38,33.25-27.439,66.3-28.885,12.58-0.709,32.58,5.169,30.26,17.361-1.72,9.036-19.99,6.979-28.85,3.35-25.22-10.945-12.66-30.41-33.28-34.604-9.52-2.142-21.25,1.3591-27.36,13.496" sodipodi:nodetypes="cscsscsss" transform="translate(10, 1219.037453) " stroke="#000" stroke-width="1.2528700pt" fill="none"/> + <rect id="d0e188" display="none" height="1000px" width="288" y="1282.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e188"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ± δείτε ΞΞ½Ξ±Ξ½ Ξ±ΟΞΉΞΈΞΌΟ Ξ³ΞΊΟΞΉ τετΟΞ±Ξ³Ονων <flowSpan font-style="italic">ΞΊΟμβων</flowSpan> στο μονοπάτι. Αυτοί ΞΏΞΉ ΞΊΟΞΌΞ²ΞΏΞΉ μποΟΞΏΟΞ½ Ξ½Ξ± <flowSpan font-style="italic">επιλεγοΟΞ½</flowSpan> ΞΌΞµ <flowSpan font-weight="bold">κλικ</flowSpan>, <flowSpan font-weight="bold">Shift+κλικ</flowSpan> Ξ® <flowSpan font-weight="bold">ΟƒΟΟσιμο</flowSpan>ΞµΞ½ΟΟ‚ λάστιχου - Ξ±ΞΊΟΞΉΞ²ΟΟ‚ Οπως τα αντικείμενα επιλΞγονται Ξ±Ο€Ο Ο„ΞΏ ΞµΟγαλείο επιλογής. ΞποΟείτε επίσης Ξ½Ξ± πατήσετε ΞΞ½Ξ± τμήμα ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ Ξ³ΞΉΞ± Ξ±Ο…Ο„Οματη επιλογή των γειτονικΟΞ½ ΞΊΟμβων. ΞΞΉ επιλεγμΞΞ½ΞΏΞΉ ΞΊΟΞΌΞ²ΞΏΞΉ τονίζονται ΞΊΞ±ΞΉ εμφανίζουν τις <flowSpan font-style="italic">λαβΞΟ‚ ΞΊΟμβων</flowSpan> τους - ΞΞ½Ξ±Ξ½ Ξ® Ξ΄ΟΞΏ ΞΌΞΉΞΊΟΞΏΟΟ‚ ΞΊΟκλους συνδεμΞΞ½ΞΏΟ…Ο‚ ΞΌΞµ κάθε επιλεγμΞΞ½ΞΏ ΞΊΟΞΌΞ²ΞΏ ΞΌΞµ ΞµΟ…ΞΈΞµΞ―ΞµΟ‚ Ξ³ΟΞ±ΞΌΞΌΞΟ‚. Το πλήκτΟΞΏ <flowSpan font-weight="bold">!</flowSpan> αντιστΟΞφει την επιλογή ΞΊΟΞΌΞ²ΞΏΟ… στα Ο„ΟΞχοντα υπομονοπάτια (δηλ. υπομονοπάτια ΞΌΞµ τουλάχιστον ΞΞ½Ξ±Ξ½ επιλεγμΞΞ½ΞΏ ΞΊΟΞΌΞ²ΞΏ). <flowSpan font-weight="bold">Alt+!</flowSpan> αντιστΟΞφει το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ.</flowDiv> + </flowRoot> + <rect id="d0e215" display="none" height="1000px" width="288" y="1396.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e215"/> + </flowRegion> + <flowDiv xml:space="preserve">Τα μονοπάτια επεξεΟγάζονται ΞΌΞµ <flowSpan font-weight="bold">ΟƒΟΟσιμο</flowSpan> των ΞΊΟμβων τους, λαβΟΞ½ ΞΊΟμβων Ξ® άμεσα ΟƒΟΟοντας ΞΞ½Ξ± τμήμα μονοπατιοΟ. (Δοκιμάστε Ξ½Ξ± ΟƒΟΟετε ΞΌΞµΟΞΉΞΊΞΏΟΟ‚ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚, λαβΞΟ‚ ΞΊΞ±ΞΉ τμήματα ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ Ο„ΞΏΟ… πιο πάνω μονοπατιοΟ.) Το <flowSpan font-weight="bold">Ctrl</flowSpan> δουλεΟΞµΞΉ ως συνήθως πεΟΞΉΞΏΟίζοντας την κίνηση ΞΊΞ±ΞΉ την πεΟιστΟοφή. Τα πλήκτΟΞ± <flowSpan font-weight="bold">Ξ²Ξλους</flowSpan>, τα πλήκτΟΞ± <flowSpan font-weight="bold">Tab</flowSpan>, <flowSpan font-weight="bold">[</flowSpan>, <flowSpan font-weight="bold">]</flowSpan>, <flowSpan font-weight="bold"><</flowSpan>, <flowSpan font-weight="bold">></flowSpan> ΞΌΞµ τους Ο„ΟοποποιητΞΟ‚ τους Ολα δουλεΟΞΏΟ…Ξ½ Οπως ΞΊΞ±ΞΉ στον επιλογΞΞ±, αλλά εφαΟΞΌΟζονται σε ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ αντί Ξ³ΞΉΞ± αντικείμενα. ΞποΟείτε Ξ½Ξ± Ο€ΟοσθΞσετε ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ οπουδήποτε σε ΞΞ½Ξ± μονοπάτι είτε διπλοπατΟντας Ξ® ΞΌΞµ <flowSpan font-weight="bold">Ctrl+Alt+Click</flowSpan> στην επιθυμητή ΞΈΞση.</flowDiv> + </flowRoot> + <rect id="d0e245" display="none" height="1000px" width="288" y="1500" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e245"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞποΟείτε Ξ½Ξ± διαγΟΞ¬Οετε ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ ΞΌΞµ <flowSpan font-weight="bold">Del</flowSpan> Ξ® <flowSpan font-weight="bold">Ctrl+Alt+Click</flowSpan>. Ξταν διαγΟάφετε ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ γίνεται Ο€Οοσπάθεια διατήΟησης του σχήματος του μονοπατιοΟ, εάν επιθυμείτε ΞΏΞΉ λαβΞΟ‚ των γειτονικΟΞ½ ΞΊΟμβων Ξ½Ξ± ανακληθοΟΞ½ (Ξ½Ξ± ΞΌΞ·Ξ½ διατηΟήσουν το σχήμα) μποΟείτε Ξ½Ξ± διαγΟΞ¬Οετε ΞΌΞµ <flowSpan font-weight="bold">Ctrl+Del</flowSpan>. ΕπιπλΞΞΏΞ½, μποΟείτε Ξ½Ξ± διπλασιάσετε (<flowSpan font-weight="bold">Shift+D</flowSpan>) τους επιλεγμΞΞ½ΞΏΟ…Ο‚ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚. Το μονοπάτι μποΟΞµΞ― Ξ½Ξ± σπάσει (<flowSpan font-weight="bold">Shift+B</flowSpan>) στους επιλεγμΞΞ½ΞΏΟ…Ο‚ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ Ξ® εάν επιλΞξετε Ξ΄ΟΞΏ τελικοΟΟ‚ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ σε ΞΞ½Ξ± μονοπάτι, μποΟείτε Ξ½Ξ± τους ΞµΞ½Οσετε (<flowSpan font-weight="bold">Shift+J</flowSpan>).</flowDiv> + </flowRoot> + <rect id="d0e266" display="none" height="1000px" width="288" y="1592.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e266"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ±Ο‚ ΞΊΟΞΌΞ²ΞΏΟ‚ μποΟΞµΞ― Ξ½Ξ± Ξ³Ξ―Ξ½ΞµΞΉ <flowSpan font-style="italic">Ξ±Ο€Οτομος</flowSpan> (<flowSpan font-weight="bold">Shift+C</flowSpan>), που σημαίνει Οτι ΞΏΞΉ δυο του λαβΞΟ‚ μποΟΞΏΟΞ½ Ξ½Ξ± μετακινηθοΟΞ½ Ξ±Ξ½ΞµΞΎΞ¬Οτητα σε κάθε γωνία ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚, <flowSpan font-style="italic">ΞΏΞΌΞ±Ξ»ΟΟ‚</flowSpan> (<flowSpan font-weight="bold">Shift+S</flowSpan>), που σημαίνει Οτι ΞΏΞΉ λαβΞΟ‚ του ΞµΞ―Ξ½Ξ±ΞΉ πάντοτε στην ίδια ΞµΟ…ΞΈΞµΞ―Ξ± Ξ³ΟΞ±ΞΌΞΌΞ® (συγγΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚) ΞΊΞ±ΞΉ <flowSpan font-style="italic">συμμετΟΞΉΞΊΟΟ‚</flowSpan> (<flowSpan font-weight="bold">Shift+Y</flowSpan>), που ΞµΞ―Ξ½Ξ±ΞΉ το ίδιο Οπως ΞΏΞΌΞ±Ξ»ΟΟ‚, αλλά ΞΏΞΉ λαβΞΟ‚ Ξχουν επίσης το ίδιο μήκος. Ξταν εναλλάσσετε τον Ο„Οπο του ΞΊΟΞΌΞ²ΞΏΟ…, μποΟείτε Ξ½Ξ± διατηΟήσετε τη ΞΈΞση ΞΌΞΉΞ±Ο‚ Ξ±Ο€Ο Ο„ΞΉΟ‚ Ξ΄ΟΞΏ λαβΞΟ‚ Ξ±ΞΉΟ‰ΟΟντας το ποντίκι σας Ξ±Ο€Ο Ο€Ξ¬Ξ½Ο‰ του, Ξτσι που ΞΌΟΞ½ΞΏ Ξ· άλλη λαβή Ξ½Ξ± πεΟιστΟΞφεται/κλιμακΟνεται Ξ³ΞΉΞ± Ξ½Ξ± ταιΟιάξει.</flowDiv> + </flowRoot> + <rect id="d0e287" display="none" height="1000px" width="288" y="1695.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e287"/> + </flowRegion> + <flowDiv xml:space="preserve">Επίσης, μποΟείτε Ξ½Ξ± <flowSpan font-style="italic">Ξ±Ξ½Ξ±ΞΊΞ±Ξ»Ξσετε</flowSpan> ΞΌΞΉΞ± λαβή ΞΊΟΞΌΞ²ΞΏΟ… ΞΌΞ±Ξ¶Ξ― ΞΌΞµ το <flowSpan font-weight="bold">Ctrl+click</flowSpan> Οƒ' Ξ±Ο…Ο„Ο. Εάν Ξ΄ΟΞΏ γειτονικοί ΞΊΟΞΌΞ²ΞΏΞΉ Ξχουν τις λαβΞΟ‚ τους ανακαλεσμΞΞ½ΞµΟ‚, το τμήμα ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± ΞµΟ…ΞΈΞµΞ―Ξ± Ξ³ΟΞ±ΞΌΞΌΞ®. Για Ξ±Ο€Οσπαση των ανακαλεσμΞνων ΞΊΟμβων, <flowSpan font-weight="bold">Shift+ΟƒΟΟσιμο</flowSpan> ΞΌΞ±ΞΊΟΞΉΞ¬ Ξ±Ο€Ο Ο„ΞΏΞ½ ΞΊΟΞΌΞ²ΞΏ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1769.2715789999997" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1769.2715789999997" x="10">Υπομονοπάτια ΞΊΞ±ΞΉ συνδυασμΟΟ‚</tspan> + </text> + <rect id="d0e305" display="none" height="1000px" width="288" y="1774.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e305"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ± αντικείμενο ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ ΞΌΟ€ΞΏΟΞµΞ― Ξ½Ξ± πεΟΞΉΞχει πεΟισσΟτεΟΞ± Ξ±Ο€Ο ΞΞ½Ξ± <flowSpan font-style="italic">υπομονοπάτια</flowSpan>. ΞΞ½Ξ± υπομονοπάτι ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± σειΟΞ¬ ΞΊΟμβων συνδεμΞνων ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚. (ΣυνεπΟΟ‚, εάν ΞΞ½Ξ± μονοπάτι Ξχει πεΟισσΟτεΟΞ± Ξ±Ο€Ο ΞΞ½Ξ± υπομονοπάτια, δεν συνδΞονται Ολοι ΞΏΞΉ ΞΊΟΞΌΞ²ΞΏΞΉ του.) Ξάτω Ξ±ΟιστεΟΞ¬, Ο„ΟΞ―Ξ± υπομονοπάτια ανήκουν σε ΞΞ½Ξ± ΞΌΞΏΞ½Ο ΟƒΟνθετο μονοπάτι. Τα ίδια Ο„ΟΞ―Ξ± υπομονοπάτια στα δεξιά ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Ξ½ΞµΞΎΞ¬Οτητα αντικείμενα μονοπατιοΟ:</flowDiv> + </flowRoot> + <path id="advanced-f04-el.svgpath1735" d="M100.09,6.445c-6.511-7.5367-18.172-7.0049-26.385-2.6524-5.701,3.0209-11.538,6.5134-15.338,11.723-5.199,7.128-0.613,18.406,8.263,21.306,6.653,1.819,14.244-3.464,8.908-12.673m4.925-10.671c6.417-6.6214,17.628-1.347,20.287,6.426,2.27,6.608,2.77,14.498,9.14,18.923,6.42,4.45,17.12,5.311,21.25-2.255,3.53-6.462-3.15-14.74-10.26-12.459m-56.932,26.977c7.041,4.896,14.772-1.731,19.71-6.764,5.239-5.339,13.278-1.157,16.922,4.37,3.32,5.038,11.7,8.321,15.91,2.324" transform="translate(10, 1864.3740789999997) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f04-el.svgpath1729" stroke-linejoin="miter" d="M226.58,6.7994c-6.51-7.5367-18.17-7.0049-26.39-2.6524-5.7,3.0209-11.53,6.513-15.33,11.723-5.2,7.129-0.62,18.407,8.26,21.306,6.65,1.819,14.24-3.463,8.91-12.672" sodipodi:nodetypes="cssss" transform="translate(10, 1864.3740789999997) " stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f04-el.svgpath1730" stroke-linejoin="miter" d="M206.95,13.832c6.42-6.621,17.63-1.346,20.29,6.427,2.26,6.607,2.77,14.497,9.14,18.923,6.41,4.45,17.12,5.311,21.25-2.256,3.53-6.461-3.16-14.74-10.26-12.459" sodipodi:nodetypes="cssss" transform="translate(10, 1864.3740789999997) " stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f04-el.svgpath1731" d="M190.44,51.444c7.04,4.896,14.77-1.73,19.71-6.763,5.24-5.339,13.27-1.157,16.92,4.369,3.32,5.038,11.7,8.321,15.91,2.324" sodipodi:nodetypes="csss" transform="translate(10, 1864.3740789999997) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <rect id="d0e321" display="none" height="1000px" width="288" y="1931.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e321"/> + </flowRegion> + <flowDiv xml:space="preserve">ΣημειΟστε Οτι ΞΞ½Ξ± ΟƒΟνθετο μονοπάτι δεν ΞµΞ―Ξ½Ξ±ΞΉ το ίδιο Οπως ΞΌΞΉΞ± ομάδα. Είναι ΞΞ½Ξ± Ξ±Ο€Ξ»Ο Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ που ΞµΞ―Ξ½Ξ±ΞΉ επιλΞΞΎΞΉΞΌΞΏ ως ΟƒΟνολο. Εάν επιλΞξετε το πάνω Ξ±ΟιστεΟΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ΞΊΞ±ΞΉ εναλλάξετε το ΞµΟγαλείο ΞΊΟΞΌΞ²ΞΏΟ…, ΞΈΞ± δείτε ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ Ξ½Ξ± εμφανίζονται ΞΊΞ±ΞΉ στα Ο„ΟΞ―Ξ± υπομονοπάτια. Στα δεξιά, μποΟείτε Ξ½Ξ± επεξεΟγαστείτε ΞΊΟΞΌΞ²ΞΏ ΞΌΟΞ½ΞΏ ΞµΞ½ΟΟ‚ ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ Ο„Ξ· φοΟΞ¬.</flowDiv> + </flowRoot> + <rect id="d0e324" display="none" height="1000px" width="288" y="2002.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e324"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape μποΟΞµΞ― Ξ½Ξ± <flowSpan font-family="Sans">συνδυάσει</flowSpan> μονοπάτια σε ΞΞ½Ξ± ΟƒΟνθετο μονοπάτι (<flowSpan font-weight="bold">Ctrl+K</flowSpan>) ΞΊΞ±ΞΉ Ξ½Ξ± <flowSpan font-family="Sans">διασπάσει</flowSpan> ΞΞ½Ξ± ΟƒΟνθετο μονοπάτι σε ξεχωΟιστά μονοπάτια (<flowSpan font-weight="bold">Shift+Ctrl+K</flowSpan>). Δοκιμάστε Ξ±Ο…Ο„ΞΟ‚ τις εντολΞΟ‚ στα πιο πάνω παΟαδείγματα. Ξ‘Ο†ΞΏΟ ΞΞ½Ξ± αντικείμενο μποΟΞµΞ― Ξ½Ξ± Ξχει ΞΌΟΞ½ΞΏ ΞΞ½Ξ± Ξ³Ξμισμα ΞΊΞ±ΞΉ πινελιά, ΞΞ½Ξ± Ξ½ΞΞΏ ΟƒΟνθετο μονοπάτι παίΟΞ½ΞµΞΉ τη ΞΌΞΏΟφοποίηση του Ο€ΟΟτου (χαμηλΟτατου στη διάταξη-z) αντικειμΞΞ½ΞΏΟ… που συνδυάζεται.</flowDiv> + </flowRoot> + <rect id="d0e339" display="none" height="1000px" width="288" y="2084.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e339"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξταν συνδυάζετε επικαλυπτΟΞΌΞµΞ½Ξ± μονοπάτια ΞΌΞµ Ξ³Ξμισμα, συνήθως το Ξ³Ξμισμα ΞΈΞ± εξαφανιστεί στις πεΟΞΉΞΏΟ‡ΞΟ‚ Οπου τα μονοπάτια επικαλΟπτονται:</flowDiv> + </flowRoot> + <path id="advanced-f05-el.svgpath1796" d="M155.75,61.987l-26.12-11.321-3.86,19.965-7.44-27.481-18.02,9.429,16.85-22.948-18.602-8.208,28.442-1.134-5.18-19.664,18.62,21.533,12.15-16.312-5.23,27.986,20.33-0.678-25.14,13.365,13.2,15.468zm29.81-9.429c-4.76,12.495-21.78,17.62-37.98,11.44-16.21-6.18-25.49-21.338-20.72-33.833,4.76-12.495,21.78-17.62,37.99-11.44,16.2,6.181,25.48,21.337,20.71,33.833z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 2130.6462249999995) " stroke="#000" stroke-width="1.0000000pt" fill="#07ba88"/> + <rect id="d0e352" display="none" height="1000px" width="288" y="2213.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e352"/> + </flowRegion> + <flowDiv xml:space="preserve">ΑυτΟΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ πιο ΞµΟκολος Ο„ΟΟπος Ξ³ΞΉΞ± δημιουΟΞ³Ξ―Ξ± αντικειμΞνων ΞΌΞµ Ο„ΟΟπες σε αυτά. Για πεΟισσΟτεΟΞΏ ισχυΟΞΟ‚ εντολΞΟ‚ μονοπατιοΟ, δείτε "Ο€Οάξεις Boole" πιο κάτω.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2266.049032" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2266.049032" x="10">ΞετατΟοπή σε μονοπάτι</tspan> + </text> + <rect id="d0e361" display="none" height="1000px" width="288" y="2271.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e361"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξάθε σχήμα Ξ® αντικείμενο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… μποΟΞµΞ― Ξ½Ξ± <flowSpan font-style="italic">μετατΟαπεί σε μονοπάτι</flowSpan> (<flowSpan font-weight="bold">Shift+Ctrl+C</flowSpan>). Αυτή Ξ· λειτουΟΞ³Ξ―Ξ± δεν αλλάζει την εμφάνιση του αντικειμΞΞ½ΞΏΟ…, αλλά αφαιΟΞµΞ― Ολες τις ειδικΞΟ‚ δυνατΟτητες του Ο„Οπου του (Ο€.Ο‡. δεν μποΟείτε Ξ½Ξ± στΟΞΏΞ³Ξ³Ο…Ξ»ΞΟετε τις γωνίες του ΞΏΟθογωνίου Ξ® Ξ½Ξ± επεξεΟγαστείτε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ πια). Αντίθετα Ο„ΟΟΞ± μποΟείτε Ξ½Ξ± επεξεΟγαστείτε τους ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ του. Ξ•Ξ΄Ο ΞµΞ―Ξ½Ξ±ΞΉ Ξ΄ΟΞΏ αστΞΟΞΉΞ± - το Ξ±ΟιστεΟΟ ΞΊΟατά ΞΞ½Ξ± σχήμα ΞΊΞ±ΞΉ το δεξί μετατΟΞπεται σε μονοπάτι. Εναλλάξτε το ΞµΟγαλείο ΞΊΟΞΌΞ²ΞΏΟ… ΞΊΞ±ΞΉ συγκΟίνετε την επεξεΟγασιμΟτητά τους Οταν επιλΞγονται:</flowDiv> + </flowRoot> + <polygon id="advanced-f06-el.svgpolygon1410" stroke="#000" stroke-width="1.0000000pt" sodipodi:type="star" d="M 48.608655,3873.8302 L 38.020121,3854.1783 L 21.697849,3874.9159 L 30.460473,3854.3847 L 4.0704360,3854.5531 L 25.585784,3848.6030 L 9.0002176,3828.0754 L 27.066793,3841.1869 L 32.774968,3815.4211 L 33.788271,3837.7210 L 57.491814,3826.1191 L 40.688807,3840.8151 L 64.538468,3852.1136 L 42.572158,3848.1393 L 48.608655,3873.8302 z " fill-opacity="0.75000000" fill="#FF0" sodipodi:r1="31.036766" inkscape:flatsided="false" fill-rule="evenodd" transform="translate(10, 2382.4593859999995) translate(49.93435,-3814.793)" sodipodi:arg2="1.0947087" sodipodi:arg1="1.0816765" inkscape:randomized="0.0000000" sodipodi:cy="3846.4326" points="48.609,3873.8,38.02,3854.2,21.698,3874.9,30.46,3854.4,4.0704,3854.6,25.586,3848.6,9.0002,3828.1,27.067,3841.2,32.775,3815.4,33.788,3837.7,57.492,3826.1,40.689,3840.8,64.538,3852.1,42.572,3848.1,48.609,3873.8" sodipodi:sides="7" inkscape:rounded="0.0000000" sodipodi:r2="8.7148495" sodipodi:cx="34.026058"/> + <path id="advanced-f06-el.svgpath1412" d="M204.84,59.034l-10.59-19.652-16.32,20.738,8.76-20.532-26.39,0.169,21.52-5.95-16.59-20.528,18.07,13.112,5.71-25.766,1.01,22.3,23.71-11.602-16.81,14.696,23.85,11.298-21.96-3.974,6.03,25.691z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2382.4593859999995) " stroke="#000" stroke-width="1.0000000pt" fill="#FF0"/> + <rect id="d0e380" display="none" height="1000px" width="288" y="2455.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e380"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕπιπλΞΞΏΞ½, μποΟείτε Ξ½Ξ± μετατΟΞΟετε σε μονοπάτι ("πεΟΞ―Ξ³ΟΞ±ΞΌΞΌΞ±") την <flowSpan font-style="italic">πινελιά</flowSpan> κάθε αντικειμΞΞ½ΞΏΟ…. Ξ ΞΉΞΏ κάτω, το Ο€ΟΟτο αντικείμενο ΞµΞ―Ξ½Ξ±ΞΉ το Ξ±ΟΟ‡ΞΉΞΊΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ (χωΟΞ―Ο‚ Ξ³Ξμισμα, ΞΌΞ±ΟΟΞ· πινελιά), ΞµΞ½Ο Ο„ΞΏ δεΟτεΟΞΏ ΞµΞ―Ξ½Ξ±ΞΉ το αποτΞλεσμα της εντολής Πινελιά σε μονοπάτι (ΞΌΞ±ΟΟΞΏ Ξ³Ξμισμα, χωΟΞ―Ο‚ πινελιά):</flowDiv> + </flowRoot> + <path id="advanced-f07-el.svgpath1430" stroke-linejoin="miter" d="M34.91,34.708c10.658-12.173,21.176-24.395,36.677-28.281,9.293-2.3296,11.787,2.3947,4.861,10.163-5.164,5.793-10.411,10.153-12.815,16.793-2.972,8.211,2.886,9.486,11.489,7.954,8.469-1.508,14.084-8.505,19.886-15.467,4.214-5.056,8.772-5.262,10.602-0.884,7.11,15.931,20.13,0.978,22.1-0.441" sodipodi:nodetypes="csssssss" transform="translate(10, 2523.9431459999996) " stroke="#000" stroke-linecap="butt" stroke-width="9.0000000" fill="none"/> + <path id="advanced-f07-el.svgpath1432" d="M186.93,0.0677c-1.24,0.1038-2.52,0.3156-3.88,0.6562-8.6,2.1554-15.75,6.6404-22,12-6.24,5.36-11.65,11.611-16.97,17.687l6.75,5.938c5.34-6.096,10.51-12.046,16.06-16.813,5.56-4.766,11.44-8.331,18.35-10.062,1.26-0.3169,1.79-0.2322,2.5-0.25-0.43,0.8111-0.91,1.7071-2.1,3.0311-2.45,2.75-5.08,5.295-7.53,8.156-2.44,2.862-4.7,6.117-6.15,10.125-0.92,2.533-1.37,4.923-0.85,7.375,0.26,1.227,0.79,2.438,1.57,3.438,0.77,1,1.76,1.772,2.78,2.312,2.03,1.081,4.14,1.366,6.28,1.407,2.14,0.04,4.37-0.208,6.72-0.625,5.25-0.935,9.55-3.601,13.12-6.75,3.58-3.15,6.56-6.822,9.44-10.282,0.81-0.969,1.56-1.583,2.12-1.937,0.45-0.281,0.63-0.286,0.75-0.313,0.05,0.058,0.03,0.003,0.13,0.25v0.032l0.03,0.062c1.05,2.345,2.26,4.28,3.72,5.844s3.2,2.742,5.03,3.406,3.72,0.81,5.44,0.625,3.27-0.69,4.69-1.312c2.83-1.244,5.15-3.003,6.93-4.5,0.89-0.749,1.66-1.448,2.22-1.969,0.29-0.261,0.53-0.48,0.69-0.625,0.16-0.146,0.28-0.209,0.12-0.094l-5.28-7.312c-0.4,0.292-0.59,0.497-0.84,0.718-0.25,0.222-0.51,0.435-0.78,0.688-0.55,0.506-1.19,1.115-1.91,1.719-1.43,1.207-3.2,2.444-4.75,3.125-0.77,0.34-1.49,0.532-2.06,0.593-0.57,0.062-0.99,0.028-1.41-0.125-0.42-0.152-0.88-0.432-1.5-1.093-0.61-0.662-1.36-1.737-2.09-3.375-0.72-1.72-1.82-3.188-3.41-4.282-1.58-1.094-3.58-1.602-5.43-1.468-1.86,0.133-3.56,0.811-5.1,1.781-1.53,0.97-2.95,2.253-4.25,3.812-2.92,3.502-5.64,6.815-8.44,9.282-2.79,2.466-5.56,4.051-8.78,4.625-1.95,0.348-3.68,0.524-4.97,0.5-1.13-0.022-1.68-0.216-1.93-0.313-0.01-0.203-0.07-0.765,0.43-2.156,0.96-2.631,2.5-4.917,4.57-7.344s4.69-4.957,7.4-8c1.98-2.211,3.4-4.313,4.28-6.531,0.45-1.109,0.76-2.2602,0.82-3.5001s-0.17-2.5773-0.78-3.8125-1.62-2.2794-2.72-2.9687c-1.1-0.6894-2.27-1.0873-3.44-1.2813s-2.36-0.1976-3.59-0.0937z" fill-rule="evenodd" transform="translate(10, 2523.9431459999996) " fill="#000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2595.1417279999996" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2595.1417279999996" x="10">Ξ Οάξεις Boole</tspan> + </text> + <rect id="d0e405" display="none" height="1000px" width="288" y="2600.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e405"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ εντολΞΟ‚ στο ΞΌΞµΞ½ΞΏΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ σας επιτΟΞπουν Ξ½Ξ± συνδυάσετε Ξ΄ΟΞΏ Ξ® πεΟισσΟτεΟΞ± αντικείμενα Ο‡ΟησιμοποιΟντας τις <flowSpan font-style="italic">Ο€Οάξεις boole</flowSpan>:</flowDiv> + </flowRoot> + <text id="advanced-f08-el.svgtext1463" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2369075" x="132.69385" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1464" y="4.2369075" x="132.69385" role="line">Ξ‘Οχικά σχήματα</tspan></text> + <text id="advanced-f08-el.svgtext1468" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="75.103027" x="72.512367" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1469" y="75.103027" x="72.512367" role="line">Ξνωση (Ctrl++)</tspan></text> + <text id="advanced-f08-el.svgtext1471" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="75.103027" x="135.35332" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1472" y="75.103027" x="135.35332" role="line">ΔιαφοΟΞ¬ (Ctrl+-)</tspan></text> + <text id="advanced-f08-el.svgtext1476" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="75.103027" x="202.23427" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1477" y="75.103027" x="202.23427" role="line">Τομή</tspan><tspan id="advanced-f08-el.svgtspan1482" y="81.236844" x="202.23427" role="line">(Ctrl+*)</tspan></text> + <text id="advanced-f08-el.svgtext1479" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="149.98067" x="73.13726" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1480" y="149.98067" x="73.13726" role="line">ΑποκλεισμΟΟ‚</tspan><tspan id="advanced-f08-el.svgtspan1484" y="156.11448" x="73.13726" role="line">(Ctrl+^)</tspan></text> + <text id="advanced-f08-el.svgtext2252" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="149.98067" x="136.91679" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1820" y="149.98067" x="136.91679" role="line">ΔιαίΟεση</tspan><tspan id="advanced-f08-el.svgtspan1822" y="156.11448" x="136.91679" role="line">(Ctrl+/)</tspan></text> + <text id="advanced-f08-el.svgtext1828" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 2637.1575099999995) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="149.98067" x="199.6328" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f08-el.svgtspan1829" y="149.98067" x="199.6328" role="line">Αποκοπή μονοπατιοΟ</tspan><tspan id="advanced-f08-el.svgtspan1831" y="156.11448" x="199.6328" role="line">(Ctrl+Alt+/)</tspan><tspan id="advanced-f08-el.svgtspan1833" y="162.2483" x="199.6328" sodipodi:role="line"/></text> + <rect id="advanced-f08-el.svgrect1449" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2637.1575099999995) " height="27.398" width="37.561" stroke="#000" y="12.863" x="136.71" stroke-width="1pt" fill="#00F"/> + <ellipse id="advanced-f08-el.svgpath1450" fill-opacity="0.75" fill-rule="evenodd" rx="15.245" transform="translate(10, 2637.1575099999995) translate(125.2248,-4014.097)" stroke="#000" ry="15.687" cy="4055.5" cx="39.55" stroke-width="1pt" fill="#F00"/> + <path id="advanced-f08-el.svgpath1459" d="M72.94,90.828v27.372h12.937c-0.026,0.38-0.125,0.74-0.125,1.13,0,8.66,6.835,15.69,15.248,15.69,8.42,0,15.25-7.03,15.25-15.69,0-4.94-2.28-9.31-5.75-12.19v-16.312h-37.56z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1460" d="M136.71,90.828v27.372h12.94c0.57-8.12,7.09-14.56,15.13-14.56,3.61,0,6.88,1.34,9.5,3.5v-16.312h-37.57z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1461" d="M228.55,103.64c-8.04,0-14.55,6.44-15.12,14.56h24.62v-11.06c-2.61-2.16-5.89-3.5-9.5-3.5z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1462" d="M72.924,165.7v27.38h12.937c0.572-8.12,7.085-14.56,15.129-14.56,3.61,0,6.88,1.34,9.5,3.5v-16.32h-37.566zm37.566,16.32v11.06h-24.629c-0.027,0.38-0.125,0.74-0.125,1.12,0,8.66,6.835,15.69,15.254,15.69,8.41,0,15.25-7.03,15.25-15.69,0-4.94-2.28-9.31-5.75-12.18z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1817" d="M136.73,165.74v27.37h12.94c0.04-0.68,0.05-1.37,0.18-2.03,0.21-1.02,0.49-2.03,0.88-2.97,0.38-0.94,0.86-1.82,1.4-2.65,0.55-0.84,1.19-1.61,1.88-2.32s1.44-1.37,2.25-1.93c0.81-0.57,1.68-1.04,2.59-1.44,0.92-0.4,1.86-0.7,2.85-0.91s2.01-0.31,3.06-0.31,2.1,0.1,3.09,0.31c1,0.21,1.94,0.51,2.85,0.91s1.78,0.87,2.59,1.44c0.35,0.24,0.64,0.57,0.97,0.84v-16.31h-37.53z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1818" d="M174.26,182.05c-0.33-0.27-0.62-0.6-0.97-0.84-0.81-0.57-1.68-1.04-2.59-1.44s-1.85-0.7-2.85-0.91c-0.99-0.21-2.04-0.31-3.09-0.31s-2.07,0.1-3.06,0.31-1.93,0.51-2.85,0.91c-0.91,0.4-1.78,0.87-2.59,1.44-0.81,0.56-1.56,1.22-2.25,1.93s-1.33,1.48-1.88,2.32c-0.54,0.83-1.02,1.71-1.4,2.65-0.39,0.94-0.67,1.95-0.88,2.97-0.13,0.66-0.14,1.35-0.18,2.03h24.59v-11.06z" fill-opacity="0.75000000" fill-rule="evenodd" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="#00F"/> + <path id="advanced-f08-el.svgpath1826" d="M214.49,194.75h24.63v-11.09" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <path id="advanced-f08-el.svgpath1827" d="M238.05,182.24v-16.31h-37.56v27.4h12.94" transform="translate(10, 2637.1575099999995) " stroke="#000" stroke-width="1.0000000pt" fill="none"/> + <flowRoot id="advanced-f08-el.svgflowRoot2628" xml:space="preserve" transform="translate(10, 2637.1575099999995) " font-size="5.57619715px"><flowRegion id="advanced-f08-el.svgflowRegion2630"><rect id="advanced-f08-el.svgrect2632" y="76.05" width="63.135" x="135.36" height="14.647"/></flowRegion><flowPara id="advanced-f08-el.svgflowPara2634" font-family="Bitstream Vera Serif">(πυθμΞΞ½Ξ±Ο‚ ΞΌΞµΞ―ΞΏΞ½ ΞΊΞΏΟυφή)</flowPara></flowRoot> + <rect id="d0e421" display="none" height="1000px" width="288" y="2859.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e421"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ συντομεΟσεις πληκτΟολογίου Ξ³ΞΉΞ± Ξ±Ο…Ο„ΞΟ‚ τις εντολΞΟ‚ Ξ±Ξ½Ξ±Ο†ΞΟονται στους Ξ±ΟιθμητικοΟΟ‚ ανάλογους των Ο€Οάξεων boole (Ξνωση ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΟΟσθεση, διαφοΟΞ¬ ΞµΞ―Ξ½Ξ±ΞΉ αφαίΟεση, ΞΊΞ».). ΞΞΉ εντολΞΟ‚ <flowSpan font-family="Sans">ΔιαφοΟΞ¬</flowSpan> and <flowSpan font-family="Sans">αποκλεισμΟΟ‚</flowSpan> μποΟΞΏΟΞ½ Ξ½Ξ± εφαΟμοστοΟΞ½ ΞΌΟΞ½ΞΏ σε Ξ΄ΟΞΏ επιλεγμΞΞ½Ξ± αντικείμενα. Άλλες Ο€Οάξεις μποΟΞΏΟΞ½ Ξ½Ξ± επεξεΟγαστοΟΞ½ οποιοδήποτε Ξ±ΟΞΉΞΈΞΌΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞΉΞΌΞνων μονομιάς. Το αποτΞλεσμα πάντοτε Ξ΄Ξχεται τη ΞΌΞΏΟφοποίηση του κάτω αντικειμΞΞ½ΞΏΟ….</flowDiv> + </flowRoot> + <rect id="d0e430" display="none" height="1000px" width="288" y="2941.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e430"/> + </flowRegion> + <flowDiv xml:space="preserve">Το αποτΞλεσμα της εντολής <flowSpan font-family="Sans">ΑποκλεισμΟΟ‚</flowSpan> φαίνεται παΟΟΞΌΞΏΞΉΞΏ ΞΌΞµ <flowSpan font-family="Sans">ΣυνδυασμΟ</flowSpan> (δείτε πιο πάνω), αλλά διαφΞΟΞµΞΉ στο Οτι ΞΏ <flowSpan font-family="Sans">ΑποκλεισμΟΟ‚</flowSpan> Ο€ΟοσθΞτει επιπλΞΞΏΞ½ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚, Οπου τα Ξ±Οχικά μονοπάτια Ο„Ξμνονται. Ξ— διαφοΟΞ¬ ΞΌΞµΟ„Ξ±ΞΎΟ <flowSpan font-family="Sans">ΔιαίΟεσης</flowSpan> and <flowSpan font-family="Sans">ΞατακεΟματισμΟΟ‚ μονοπατιοΟ</flowSpan> ΞµΞ―Ξ½Ξ±ΞΉ Οτι το Ο€ΟΟτο αποκΟπτει το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ ΞΊΞ¬Ο„Ο‰ αντικείμενο ΞΌΞµ το μονοπάτι του άνω αντικειμΞΞ½ΞΏΟ…, ΞµΞ½Ο Ο„ΞΏ δεΟτεΟΞΏ αποκΟπτει την πινελιά του κάτω αντικειμΞΞ½ΞΏΟ… ΞΊΞ±ΞΉ αφαιΟΞµΞ― κάθε Ξ³Ξμισμα (Ξ±Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ Ξ²ΞΏΞ»ΞΉΞΊΟ Ξ³ΞΉΞ± αποκοπή πινελιΟΞ½ χωΟΞ―Ο‚ Ξ³Ξμισμα σε κομμάτια).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3047.255855" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3047.255855" x="10">ΣυΟΟίκνωση ΞΊΞ±ΞΉ ΞµΟ€Ξκταση</tspan> + </text> + <rect id="d0e454" display="none" height="1000px" width="288" y="3052.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e454"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape μποΟΞµΞ― Ξ½Ξ± επεκτείνει ΞΊΞ±ΞΉ Ξ½Ξ± συΟΟΞΉΞΊΞ½Οσει σχήματα Οχι ΞΌΟΞ½ΞΏ κλιμακΟνοντας, αλλά επίσης ΞΌΞµ <flowSpan font-style="italic">μετατΟπιση</flowSpan> του ΞΌΞΏΞ½ΞΏΟ€Ξ±Ο„ΞΉΞΏΟ ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ…, δηλαδή μετατοπίζοντας το κάθετα στο μονοπάτι σε κάθε σημείο. ΞΞΉ αντίστοιχες εντολΞΟ‚ καλοΟνται <flowSpan font-family="Sans">ΣυΟΟίκνωση</flowSpan> (<flowSpan font-weight="bold">Ctrl+(</flowSpan>) ΞΊΞ±ΞΉ <flowSpan font-family="Sans">ΕπΞκταση</flowSpan> (<flowSpan font-weight="bold">Ctrl+)</flowSpan>). Το εμφανιζΟΞΌΞµΞ½ΞΏ πιο κάτω ΞµΞ―Ξ½Ξ±ΞΉ το Ξ±ΟΟ‡ΞΉΞΊΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ (ΞΊΟΞΊΞΊΞΉΞ½ΞΏ) ΞΊΞ±ΞΉ ΞΞ½Ξ±Ο‚ Ξ±ΟΞΉΞΈΞΌΟΟ‚ μονοπατιΟΞ½ συΟΟίκνωσης ΞΊΞ±ΞΉ ΞµΟ€Ξκτασης Ξ±Ο€Ο Ξ±Ο…Ο„Ο Ο„ΞΏ Ξ±ΟχικΟ:</flowDiv> + </flowRoot> + <path id="advanced-f09-el.svgpath1893" stroke-linejoin="miter" d="M115.81,90.263c-16.592-6.213-24.464-26.139-22.243-43.098,1.074-8.205,2.889-17.007,6.823-23.669,2.32-3.927,0.06,6.387-0.16,8.347-0.913,8.042-0.666,17.609,6.23,23.314,3.44,2.848,8.32,3.345,6.88-2.814-2.18-9.364,10.91-16.85,20.11-13.934,7.11,2.251,12.73,9.419,10.97,16.948-1.91,8.158-11.61,4.751-13.16-2.785-1.53-7.452-10.93,1.693-9.85,7.286,1.47,7.682,9.57,9.514,16.01,10.234,7.97,0.892,18.69-2.911,19.6-11.738,0.73-7.13,3.81-14.344,11.82-15.244,9.37-1.054,19.57-0.877,33.29-0.178-15.92,0-23.98,10.502-28.31,19.012-4,7.872-13.27,12.644-21.56,13.805-10.35,1.451-24.13-0.786-30.18-0.786,0,10.718,9.09,15.684,16.62,15.406,6.95-0.257,11.57-8.682,18.44-11.491,8.52-3.478,18.52-3.25,26.14,2.201,6.04,4.319,12.03,12.117,8.66,19.641-3.36,7.5-13.9,8.71-20.32,3.87-5.83-4.39-12.21-9.159-20.21-9.12-7.06,0.034-11.04,2.496-12.62,10.32-2.53-6.862-7.05-9.815-22.98-15.527z" sodipodi:nodetypes="csssssssssssscsscsssssscs" transform="translate(10, 3142.5110609999997) " stroke="#ff0100" stroke-linecap="butt" stroke-width="0.67500001" fill="none"/> + <path id="advanced-f09-el.svgpath1895" stroke-linejoin="miter" d="M99.5,21.398c-6.586,11.012-8.859,24.639-7.854,37.357,1.466,15.945,12.324,30.921,28.104,35.206,8.4,2.59,16.35,7.479,19.15,16.289,2.3-2.14,2.23-11.427,8.32-12.289,10.68-2.682,18.68,5.939,27.26,10.389,9.5,4.43,22.72-3.64,20.13-14.65-3.68-15.148-22.17-22.946-36.23-17.278-9.17,2.095-14.34,15.051-24.91,11.226-4.16-0.301-12.23-9.472-7.13-10.39,15.56,1.307,34.08,3.251,45.78-9.434,5.96-8.402,10.84-19.432,22.1-21.742,3.95-0.623,17.73-2.335,7.97-5.152-12.56-0.04-25.68-1.842-37.9,1.432-8.52,3.359-7.75,13.674-11.23,20.474-7.16,7.412-21.56,7.107-28.43-0.395-2.97-3.595,0.1-9.54,4.12-10.511,0.97,6.962,10.4,14.117,16,7.406,7.64-12.42-8.42-27.667-21.09-22.691-8.19,1.747-14.36,9.935-12.19,18.285-9.12-1.845-10.22-14.061-9.32-21.897-0.38-4.288,3.98-10.872-1.46-13.103-0.21,0.259-1.004,1.238-1.19,1.468z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <path id="advanced-f09-el.svgpath1898" stroke-linejoin="miter" d="M100.16,15.711c-5.356,2.722-6.771,10.347-9.254,15.553-7.122,20.678-3.885,47.792,15.684,60.581,8.9,7.048,22.79,6.875,28.03,18.395,2.06,6.4,4.1,12.41,7.3,3.16,2.69-4.79,3.35-13.578,11.02-11.75,11.52,2.43,20.79,15.65,33.52,10.87,12.27-3.22,16.17-19.864,7.73-28.907-4.81-6.463-12.31-11.053-20.28-12.277,7.45-8.27,12.17-21.683,25.23-22.073,4.67-0.474,9.69-2.146,11.7-6.802-6.6-8.811-18.34-4.86-27.62-5.957-10.39,0.067-24.54-0.338-29.28,11.105-2.2,4.623-2,10.543-6.03,14.133,7.87-11.785-2.75-27.82-15.76-29.513-10.11-2.066-21.56,4.455-24.34,14.513-4.72-8.621,1.66-18.924-1.87-27.5-1.37-1.772-3.46-3.78-5.78-3.531zm28.72,44.906zm9.21,21.5c7.66-0.952,1.67,2.774-2.56,1.813-7.88-2.432-2.69-2.467,2.56-1.813z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <path id="advanced-f09-el.svgpath1903" stroke-linejoin="miter" d="M98.031,12.804c-9.98,7.226-12.053,20.853-13.978,32.201-2.927,22.271,8.396,47.031,30.167,55.285,8.35,3.22,17.24,8.44,19.09,17.95,2.7,6.12,12.4,2.94,12.27-3.38,0.73-6.17,8.01-12.22,13.11-6.21,10.17,5.66,23.73,13.35,34.52,4.62,13.25-8.52,11.13-30.146-1.94-37.963-2.45-4.196-14.46-4.585-7.97-9.941,4.82-7.411,12.6-12.878,21.5-13.479,4.57-1.449,10.59-6.184,10.55-10.684-9.87-12.008-27.11-8.123-40.73-8.43-8.4,0.451-17.03,2.889-22.59,9.625-7.2-13.726-26.6-18.649-39.15-9.291-4.77,2.404-0.35-9.067-2.63-12.427-1.14-5.133-6.72-11.096-12.219-7.876z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <path id="advanced-f09-el.svgpath1910" stroke-linejoin="miter" d="M99.031,0.2108c-17.313,5.1828-24.393,24.397-26.031,40.813-5.497,29.384,12.02,61.126,39.91,71.936,9.98,4.59,11.89,20.45,24.75,20.31,7.83-0.32,15.77-4.71,18.87-12.12,14.37,9.2,36.37,11.52,48.34-2.79,13.77-14.31,10.55-40.309-5.34-51.743,10.82-4.484,25.06-9.135,27.32-22.432,1.6-12.408-11.82-19.936-22.4-21.839-14.93-3.29-30.59-1.818-45.36,1.396-5.92,5.486-11.16-3.336-16.97-4.594-6.57-2.293-13.69-3.286-20.56-1.781-2.55-9.8036-11.94-18.42-22.529-17.156z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <path id="advanced-f09-el.svgpath1913" stroke-linejoin="miter" d="M97.188,38.023c-4.586,17.702-0.396,40.201,17.092,49.215,8.22,4.204,18.47,6.131,24.16,14.032,3.96-10.464,17.83-8.989,25.57-3.873,7,3.803,16.33,12.483,23.86,4.993,7.32-7.288-1.5-17.853-8.75-21.07-11.11-5.697-24.48-0.993-32.37,7.953-9.04,6.368-23.91,1.398-26-9.687-0.01-6.309,7.22-7.495,11.99-5.934,14.45,1.712,32.63,0.347,40.15-14.168,3.7-5.896,8.34-11.595,14.52-14.992-8.51,0.477-19.01-1.66-25.5,5.031-3.06,8.199-4.75,19.917-15.32,21.557-9.79,3.02-23.68,0.004-26.97-10.776-0.93-7.347,5.88-11.959,11.85-14.374-0.02,4.961,3.88,14.356,10,10.812,4.92-11.553-11.49-21.628-20.91-14.594-6.39,3.893-6.21,12.384-3.94,18.625-10.62-0.824-19.229-10.229-18.496-20.962-0.579-2.052,0.503-7.623-0.936-1.788z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <path id="advanced-f09-el.svgpath1920" stroke-linejoin="miter" d="M125.31,44.211zm10.53,4.531zm39.32-0.062c-6-0.419-11.66,3.641-12.05,9.777,0.03,2.449-6.31,10.556-1.99,7.473,6.83-4.129,9.69-11.85,15.13-17.313-0.33,0.019-1.06,0.061-1.09,0.063zm-75.41,8.593c1.37,11.282,7.67,22.743,18.47,27.344-2.98-4.866-0.67-11.372,3.59-14.094-2.91-5.523-8.48-6.492-13.9-8.093-2.59,0.074-8.4-7.928-8.16-5.157zm64,26.031c-2.77,0.747-13.16,5.474-9.36,6.386,10.87,0.475,17.91,12.25,28.99,11.02,7.13-4.985-0.85-14.641-7.14-16.048-3.88-1.725-8.32-1.952-12.49-1.358z" transform="translate(10, 3142.5110609999997) " stroke="#000" stroke-linecap="butt" stroke-width="0.17500000" fill="none"/> + <rect id="d0e482" display="none" height="1000px" width="288" y="3287.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e482"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ επίπεδες εντολΞΟ‚ <flowSpan font-family="Sans">ΣυΟΟίκνωση</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-family="Sans">ΕπΞκταση</flowSpan> παΟάγουν μονοπάτια (μετατΟΞποντας το Ξ±ΟΟ‡ΞΉΞΊΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ σε μονοπάτι εάν δεν ΞµΞ―Ξ½Ξ±ΞΉ ήδη μονοπάτι). Συχνά πιο βολική ΞµΞ―Ξ½Ξ±ΞΉ Ξ· <flowSpan font-family="Sans">Δυναμική μετατΟπιση</flowSpan> (<flowSpan font-weight="bold">Ctrl+J</flowSpan>), που δημιουΟΞ³ΞµΞ― ΞΞ½Ξ± αντικείμενο ΞΌΞµ συΟΟΞΌΞµΞ½Ξ· λαβή (παΟΟΞΌΞΏΞΉΞ± ΞΌΞµ τη λαβή σχήματος) που ΞµΞ»Ξγχει την Ξ±Ο€Οσταση μετατΟπισης. ΕπιλΞξτε το αντικείμενο πιο κάτω, εναλλαγή σε ΞµΟγαλείο ΞΊΟμβων ΞΊΞ±ΞΉ ΟƒΟΟσιμο της λαβής του Ξ³ΞΉΞ± Ξ½Ξ± πάΟετε ΞΌΞΉΞ± ΞΉΞ΄ΞΞ±:</flowDiv> + </flowRoot> + <path id="advanced-f10-el.svgpath1527" sodipodi:type="inkscape:offset" d="M101,3463c-0.1,0.1-0.13,0.1-0.28,0.4-3.882,6.6-5.68,15.3-6.751,23.5-2.2,16.8,5.598,36.6,21.971,42.7,7.97,2.9,13.1,5,16.59,7.4,3.12,2.1,4.89,4.3,6.16,7.3,0.83-3.4,2.14-5.7,4.09-7.2,2.17-1.7,5.05-2.3,8.63-2.3,8.16-0.1,14.64,4.8,20.47,9.2,3.11,2.3,7.24,3.2,11,2.6,3.75-0.6,7.06-2.7,8.68-6.4,1.63-3.6,1.01-7.3-0.78-10.6-1.79-3.4-4.74-6.4-7.72-8.5-7.49-5.4-17.33-5.6-25.75-2.2-3.34,1.4-6.19,4.2-9.09,6.7s-5.9,4.7-9.53,4.9c-3.86,0.1-8.09-1.1-11.38-3.7s-5.62-6.7-5.62-12.1c-0.01-0.2,0.04-0.3,0.11-0.3,0.08-0.1,0.19-0.2,0.29-0.2,3.08,0,8.03,0.6,13.5,1,5.48,0.4,11.47,0.5,16.6-0.2,8.18-1.1,17.36-5.9,21.28-13.6,3.78-7.4,10.44-16.4,22.65-18.6-10.72-0.5-19.35-0.5-27.24,0.4-3.9,0.5-6.54,2.4-8.35,5.1s-2.73,6.3-3.09,9.8c-0.47,4.6-3.5,7.8-7.38,9.8s-8.62,2.7-12.68,2.3c-3.24-0.4-6.92-1-10-2.6-3.09-1.5-5.59-4-6.35-8-0.29-1.5,0.1-3.2,0.88-4.8,0.77-1.5,1.94-3,3.18-4.1,1.25-1.1,2.59-1.8,3.85-1.6,0.63,0,1.22,0.3,1.68,0.8,0.47,0.6,0.8,1.3,1,2.3,0.75,3.6,3.5,6.2,6.19,7,1.35,0.3,2.66,0.2,3.75-0.4,1.1-0.7,2.01-1.9,2.47-3.8,1.71-7.3-3.75-14.3-10.69-16.5-4.46-1.4-9.94-0.3-14,2.3s-6.67,6.6-5.62,11.1c0.37,1.6,0.35,2.8,0,3.7s-1.07,1.5-1.91,1.6c-1.68,0.3-3.81-0.6-5.59-2-7.058-5.9-7.324-15.6-6.408-23.7,0.105-0.9,0.618-3.4,0.938-5.5,0.16-1.1,0.27-2.1,0.28-2.7,0-0.2-0.02-0.2-0.03-0.3z" inkscape:original="M 101.062500 3462.343750 C 100.902800 3462.433706 100.664673 3462.696654 100.375000 3463.187500 C 96.443695 3469.848900 94.636933 3478.639228 93.562500 3486.843750 C 91.341517 3503.803250 99.219050 3523.756139 115.812500 3529.968750 C 131.737740 3535.680450 136.252411 3538.608005 138.781250 3545.468750 C 140.362240 3537.645750 144.344522 3535.190852 151.406250 3535.156250 C 159.407750 3535.117050 165.798568 3539.886947 171.625000 3544.281250 C 178.046330 3549.124050 188.581246 3547.905311 191.937500 3540.406250 C 195.306020 3532.879850 189.320260 3525.100477 183.281250 3520.781250 C 175.660410 3515.330450 165.675465 3515.083811 157.156250 3518.562500 C 150.278600 3521.370800 145.642062 3529.805821 138.687500 3530.062500 C 131.155160 3530.340700 122.093750 3525.373600 122.093750 3514.656250 C 128.141300 3514.656250 141.893013 3516.888394 152.250000 3515.437500 C 160.536040 3514.276700 169.810637 3509.496825 173.812500 3501.625000 C 178.138690 3493.115200 186.199125 3482.625044 202.125000 3482.625000 C 188.399600 3481.926200 178.222058 3481.757977 168.843750 3482.812500 C 160.838550 3483.712600 157.759946 3490.932125 157.031250 3498.062500 C 156.129180 3506.889400 145.382449 3510.673326 137.406250 3509.781250 C 130.968270 3509.061350 122.881979 3507.244175 121.406250 3499.562500 C 120.331690 3493.969000 129.715916 3484.797919 131.250000 3492.250000 C 132.801250 3499.785400 142.499525 3503.219907 144.406250 3495.062500 C 146.166030 3487.533600 140.576047 3480.344687 133.468750 3478.093750 C 124.261060 3475.177750 111.161820 3482.666917 113.343750 3492.031250 C 114.778810 3498.190350 109.910481 3497.692485 106.468750 3494.843750 C 99.576199 3489.138750 99.307060 3479.573461 100.218750 3471.531250 C 100.413140 3469.816425 102.180400 3461.714057 101.062500 3462.343750 z " transform="translate(10, 3377.8034459999994) translate(0.000000,-3462.662)" stroke="#ff0100" inkscape:radius="-0.39687219" stroke-width="0.67500001" fill="none"/> + <rect id="d0e507" display="none" height="1000px" width="288" y="3474.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e507"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ¤Ξτοιο <flowSpan font-style="italic">αντικείμενο δυναμικής μετατΟπισης</flowSpan> ΞΈΟ…ΞΌΞ―Ξ¶ΞµΞΉ το Ξ±ΟΟ‡ΞΉΞΊΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ, Ξτσι δεν "υποβαθμίζει", Οταν αλλάζετε την Ξ±Ο€Οσταση μετατΟπισης ΞΎΞ±Ξ½Ξ¬ ΞΊΞ±ΞΉ ΞΎΞ±Ξ½Ξ¬. Ξταν δεν Ο‡Οειάζεται Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ουθμίσιμο πια, μποΟείτε πάντοτε Ξ½Ξ± μετατΟΞΟετε ΞΞ½Ξ± αντικείμενο μετατΟπισης σε μονοπάτι.</flowDiv> + </flowRoot> + <rect id="d0e513" display="none" height="1000px" width="288" y="3534.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e513"/> + </flowRegion> + <flowDiv xml:space="preserve">ΑκΟΞΌΞ± πιο βολική ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± <flowSpan font-style="italic">ΣυνδεδεμΞΞ½Ξ· μετατΟπιση</flowSpan>, που ΞµΞ―Ξ½Ξ±ΞΉ παΟΟΞΌΞΏΞΉΞ± ΞΌΞµ τη δυναμική ποικιλία, αλλά ΞµΞ―Ξ½Ξ±ΞΉ συνδεμΞΞ½Ξ· ΞΌΞµ ΞΞ½Ξ± άλλο μονοπάτι που παΟΞ±ΞΌΞΞ½ΞµΞΉ επεξεΟγάσιμο. ΞποΟείτε Ξ½Ξ± Ξχετε οποιοδήποτε Ξ±ΟΞΉΞΈΞΌΟ ΟƒΟ…Ξ½Ξ΄ΞµΞΌΞνων μετατοπίσεων Ξ³ΞΉΞ± ΞΞ½Ξ± πηγαίο μονοπάτι. Ξ Ξ±Οακάτω, το πηγαίο μονοπάτι ΞµΞ―Ξ½Ξ±ΞΉ ΞΊΟΞΊΞΊΞΉΞ½ΞΏ, ΞΌΞΉΞ± συνδεμΞΞ½Ξ· μετατΟπιση σε Ξ±Ο…Ο„Ο Ξχει ΞΌΞ±ΟΟΞ· πινελιά χωΟΞ―Ο‚ Ξ³Ξμισμα ΞΊΞ±ΞΉ Ξ· άλλη ΞΌΞ±ΟΟΞΏ Ξ³Ξμισμα χωΟΞ―Ο‚ πινελιά.</flowDiv> + </flowRoot> + <rect id="d0e519" display="none" height="1000px" width="288" y="3616.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e519"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕπιλΞξτε το ΞΊΟΞΊΞΊΞΉΞ½ΞΏ αντικείμενο ΞΊΞ±ΞΉ επεξεΟγασθείτε το ΞΊΟΞΌΞ²ΞΏ του. Ξ Ξ±Οακολουθείστε Ο€ΟΟ‚ συμπεΟΞΉΟ†ΞΟονται ΞΊΞ±ΞΉ ΞΏΞΉ δυο συνδεμΞΞ½ΞµΟ‚ μετατοπίσεις. Ξ¤ΟΟΞ± επιλΞξτε οποιαδήποτε Ξ±Ο€Ο Ο„ΞΉΟ‚ μετατοπίσεις ΞΊΞ±ΞΉ ΟƒΟΟτε τη λαβή του Ξ³ΞΉΞ± Ξ½Ξ± Ουθμίσετε την ακτίνα μετατΟπισης. Τελικά, σημειΟστε Ο€ΟΟ‚ μετακινείται Ξ® μετασχηματίζονται ΞΏΞΉ πηγαίες κινήσεις Ολων των αντικειμΞνων μετακινήσεις που ΞµΞ―Ξ½Ξ±ΞΉ συνδεμΞΞ½Ξ± ΞΌΞµ Ξ±Ο…Ο„Ο ΞΊΞ±ΞΉ Ο€ΟΟ‚ μποΟείτε Ξ½Ξ± μετακινήσετε Ξ® Ξ½Ξ± μετασχηματίσετε τα αντικείμενα μετατΟπισης Ξ±Ξ½ΞµΞΎΞ¬Οτητα χωΟΞ―Ο‚ Ξ±Ο€Ολεια της ΟƒΟνδεσης τους ΞΌΞµ την πηγή.</flowDiv> + </flowRoot> + <g id="advanced-f11-el.svgg8809" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10, 3728.091566999999) "> + <path id="advanced-f11-el.svgpath1987" stroke-linejoin="miter" d="m113.67,73.853c-16.593-6.2126-28.727-20.624-26.506-37.584,1.0744-8.2045,7.151-22.522,11.082-29.183,2.3174-3.9267,0.06287,6.3871-0.15929,8.3469-0.91169,8.0423-0.66462,17.609,6.2279,23.314,3.4417,2.8487,8.3216,3.3459,6.8865-2.8132-2.1819-9.3644,10.903-16.851,20.11-13.935,7.1073,2.2509,12.728,9.4197,10.968,16.949-1.9067,8.1575-11.609,4.7505-13.16-2.7849-1.5341-7.452-10.93,1.6922-9.8554,7.2857,1.4757,7.6817,9.5717,9.5136,16.01,10.234,7.9762,0.892,18.699-2.9107,19.601-11.738,0.7287-7.1304,3.8134-14.344,11.819-15.244,9.3783-1.0545,19.572-0.8772,33.297-0.1784-15.926,0-23.984,10.502-28.311,19.012-4.0019,7.8719-13.273,12.644-21.559,13.805-10.357,1.4509-24.134-0.7852-30.181-0.7852,0,10.717,9.0837,15.683,16.616,15.405,6.9546-0.2568,11.568-8.6819,18.445-11.49,8.5192-3.4786,18.514-3.2501,26.134,2.2007,6.039,4.3193,12.03,12.117,8.6618,19.643-3.3562,7.4991-13.903,8.7109-20.324,3.8681-5.8264-4.3942-12.202-9.1596-20.204-9.1204-7.0617,0.0345-11.043,2.4957-12.624,10.319-2.5288-6.8607-7.0498-9.8139-22.975-15.526z" sodipodi:nodetypes="csssssssssssscsscsssssscs" inkscape:connector-curvature="0" stroke="#ff0100" stroke-linecap="butt" stroke-width="0.67500000999999998" fill="none"/> + <path id="advanced-f11-el.svgpath1988" sodipodi:type="inkscape:offset" d="m98.562,0.78125c-0.98754,0.080502-1.8534,0.33118-2.375,0.625-2.4005,1.3521-2.2824,2.1356-2.7188,2.875-4.4256,7.4989-10.496,21.228-11.812,31.281-2.6107,19.935,11.668,36.582,30.062,43.469a5.5425,5.5425,0,0,0,0.0625,0.03125c7.8341,2.8098,12.648,4.9301,15.312,6.7188,2.6647,1.7887,3.3939,2.8382,4.375,5.5a5.5425,5.5425,0,0,0,10.625,-0.8125c0.63382-3.1363,1.4421-4.2082,2.1875-4.7812,0.74544-0.57309,2.1375-1.0796,5.0312-1.0938,5.7847-0.02834,10.995,3.6434,16.812,8.0312,4.5524,3.4333,10.229,4.5995,15.562,3.7188,5.3339-0.88076,10.641-4.1604,13.156-9.7812,2.4763-5.5328,1.4093-11.414-0.96875-15.875-2.378-4.4609-5.9308-7.9561-9.5312-10.531-3.9435-2.8206-8.331-4.4389-12.844-5.125,2.0148-2.0121,3.768-4.3307,5.125-7,3.9-7.671,9.89-15.969,23.38-15.969a5.5425,5.5425,0,0,0,0.28,-11.062c-13.811-0.70317-24.32-0.92557-34.219,0.1875-5.5591,0.62506-10.044,3.8239-12.625,7.7188-2.5812,3.8949-3.6371,8.3065-4.0625,12.469-0.23361,2.2859-1.5445,3.799-4.1875,5.1562-0.5351,0.2748-1.2306,0.38146-1.8438,0.59375,2.173-1.6459,3.6971-4.1709,4.3438-6.9375,2.53-10.834-5.16-20.451-14.69-23.469-6.6268-2.0987-13.583-0.51371-19.031,3-4.0336,2.6013-7.5012,6.8894-8.3438,11.938-2.415-4.0184-2.7029-9.669-2.0312-15.594-0.00075,0.0066,0.52695-2.92,0.875-5.2812,0.17402-1.1806,0.32827-2.273,0.34375-3.5312,0.008-0.62915,0.15286-1.1622-0.40625-2.7188-0.28-0.779-0.84-2.2133-2.79-3.2195-0.97-0.50311-2.07-0.61175-3.058-0.53125zm26.531,40.562c1.2096,2.3834,3.0313,4.2871,5.1562,5.6562-0.83131-0.24906-1.731-0.4586-2.375-0.78125-1.9855-0.99474-2.7893-1.7396-3.1875-3.8125,0.067,0.34873,0.008-0.25776,0.40625-1.0625zm2.5938,23.312c1.9742,0.16077,3.0414,0.21721,5.3438,0.375,2.7613,0.18924,5.6999,0.3312,8.6562,0.34375-2.3876,1.9941-4.1511,3.0185-5.3438,3.0625-2.4683,0.09116-5.4276-0.78931-7.4688-2.4062-0.48622-0.38518-0.78896-0.92091-1.1875-1.375z" xlink:href="#advanced-f11-el.svgpath1987" inkscape:original="M 98.90625 6.25 C 98.74655 6.3399517 98.539672 6.6029125 98.25 7.09375 C 94.318695 13.75515 88.230687 28.07675 87.15625 36.28125 C 84.935267 53.24075 97.062806 67.63115 113.65625 73.84375 C 129.58149 79.55545 134.12741 82.5143 136.65625 89.375 C 138.23724 81.552 142.21952 79.097 149.28125 79.0625 C 157.28275 79.0233 163.64232 83.7933 169.46875 88.1875 C 175.89008 93.0303 186.425 91.8116 189.78125 84.3125 C 193.14977 76.7861 187.16401 68.97555 181.125 64.65625 C 173.50416 59.20545 163.51922 58.99015 155 62.46875 C 148.12235 65.27705 143.51706 73.71195 136.5625 73.96875 C 129.03016 74.24695 119.9375 69.2799 119.9375 58.5625 C 125.98505 58.5625 139.76801 60.79465 150.125 59.34375 C 158.41104 58.18295 167.68563 53.40315 171.6875 45.53125 C 176.01369 37.02145 184.07412 26.53125 200 26.53125 C 186.2746 25.83245 176.06581 25.633 166.6875 26.6875 C 158.6823 27.5876 155.6037 34.8071 154.875 41.9375 C 153.97293 50.7644 143.25745 54.5795 135.28125 53.6875 C 128.84327 52.9676 120.72573 51.1192 119.25 43.4375 C 118.17544 37.844 127.59091 28.70425 129.125 36.15625 C 130.67625 43.69165 140.37452 47.095 142.28125 38.9375 C 144.04103 31.4086 138.41979 24.2509 131.3125 22 C 122.10481 19.084 109.00557 26.5731 111.1875 35.9375 C 112.62256 42.0966 107.75423 41.5987 104.3125 38.75 C 97.419952 33.045 97.182061 23.4798 98.09375 15.4375 C 98.28814 13.722675 100.02415 5.6203379 98.90625 6.25 z " stroke="#000" inkscape:href="#advanced-f11-el.svgpath1987" inkscape:radius="5.5419211" stroke-width="0.67500000999999998" fill="none"/> + <path id="advanced-f11-el.svgpath1989" sodipodi:type="inkscape:offset" d="m97.719,14.656c-3.7525,7.2074-8.5372,18.906-9.4375,25.781-2.1384,16.329,9.5505,30.232,25.75,36.312,0.0131,0.0049,0.0182,0.02636,0.0312,0.03125,7.9637,2.8574,13.152,5.0224,16.75,7.4375,2.6896,1.8054,4.3093,3.9294,5.5938,6.3125,0.88173-2.6151,2.0476-4.7994,3.8125-6.1562,2.3518-1.808,5.3995-2.4509,9.0625-2.4688,8.4612-0.04145,15.047,4.9795,20.875,9.375,2.9324,2.2116,6.8881,3.0549,10.438,2.4688,3.5494-0.5861,6.6206-2.5448,8.125-5.9062,1.52-3.3962,0.96665-6.811-0.75-10.031-1.7166-3.2203-4.601-6.1453-7.5-8.2188-7.2461-5.1828-16.818-5.416-25.031-2.0625-3.1491,1.2859-5.957,3.9756-8.875,6.5s-6.0371,4.9486-9.9688,5.0938c-4.0353,0.14904-8.4169-1.1043-11.875-3.8438s-5.9375-7.035-5.9375-12.719a1.1494,1.1494,0,0,1,1.1562,-1.1562c3.1652,0,8.0964,0.5629,13.562,0.9375,5.4661,0.3746,11.44,0.5795,16.469-0.125,7.9735-1.117,16.926-5.8187,20.688-13.219,3.2842-6.4602,8.8316-14.162,18.219-17.688-8.2126-0.22588-15.607-0.19463-22.062,0.53125-3.6798,0.41376-6.1004,2.1978-7.8125,4.7812s-2.617,5.9961-2.9688,9.4375c-0.49612,4.8546-3.755,8.3386-7.7812,10.406-4.0262,2.0676-8.8693,2.8474-13.094,2.375-3.2739-0.36609-7.0484-1.0366-10.281-2.6562-3.2328-1.6196-5.9417-4.3238-6.75-8.5312-0.33824-1.7607,0.13908-3.6045,0.96875-5.2812,0.82967-1.6768,2.0355-3.2035,3.375-4.3438s2.8374-1.9659,4.4375-1.8125c0.80004,0.07669,1.5763,0.47274,2.1562,1.125,0.57992,0.65226,0.96765,1.5258,1.1875,2.5938,0.68714,3.3379,3.2442,5.7308,5.625,6.375,1.1904,0.32212,2.2898,0.21819,3.1875-0.3125s1.6702-1.5006,2.0938-3.3125c1.5996-6.8435-3.5825-13.502-10.188-15.594-4.1843-1.3251-9.4906-0.25509-13.375,2.25s-6.2415,6.2225-5.2812,10.344c0.39058,1.6763,0.40714,3.0234-0.0312,4.125-0.43839,1.1016-1.4277,1.8261-2.4688,2.0312-2.0822,0.4104-4.3182-0.64566-6.2188-2.2188-7.3686-6.099-7.5819-16.147-6.6562-24.312,0.09953-0.87798,0.48514-2.8307,0.78125-4.6562z" fill-rule="evenodd" xlink:href="#advanced-f11-el.svgpath1987" inkscape:original="M 98.90625 6.25 C 98.74655 6.3399517 98.539672 6.6029125 98.25 7.09375 C 94.318695 13.75515 88.230687 28.07675 87.15625 36.28125 C 84.935267 53.24075 97.062806 67.63115 113.65625 73.84375 C 129.58149 79.55545 134.12741 82.5143 136.65625 89.375 C 138.23724 81.552 142.21952 79.097 149.28125 79.0625 C 157.28275 79.0233 163.64232 83.7933 169.46875 88.1875 C 175.89008 93.0303 186.425 91.8116 189.78125 84.3125 C 193.14977 76.7861 187.16401 68.97555 181.125 64.65625 C 173.50416 59.20545 163.51922 58.99015 155 62.46875 C 148.12235 65.27705 143.51706 73.71195 136.5625 73.96875 C 129.03016 74.24695 119.9375 69.2799 119.9375 58.5625 C 125.98505 58.5625 139.76801 60.79465 150.125 59.34375 C 158.41104 58.18295 167.68563 53.40315 171.6875 45.53125 C 176.01369 37.02145 184.07412 26.53125 200 26.53125 C 186.2746 25.83245 176.06581 25.633 166.6875 26.6875 C 158.6823 27.5876 155.6037 34.8071 154.875 41.9375 C 153.97293 50.7644 143.25745 54.5795 135.28125 53.6875 C 128.84327 52.9676 120.72573 51.1192 119.25 43.4375 C 118.17544 37.844 127.59091 28.70425 129.125 36.15625 C 130.67625 43.69165 140.37452 47.095 142.28125 38.9375 C 144.04103 31.4086 138.41979 24.2509 131.3125 22 C 122.10481 19.084 109.00557 26.5731 111.1875 35.9375 C 112.62256 42.0966 107.75423 41.5987 104.3125 38.75 C 97.419952 33.045 97.182061 23.4798 98.09375 15.4375 C 98.28814 13.722675 100.02415 5.6203379 98.90625 6.25 z " transform="matrix(0.39324,0,0,0.39324,199.7709,1.52383)" inkscape:href="#advanced-f11-el.svgpath1987" inkscape:radius="-1.1492475" stroke-width="0.42500000999999998"/> + </g> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3849.4351339999994" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3849.4351339999994" x="10">Απλοποίηση</tspan> + </text> + <rect id="d0e538" display="none" height="1000px" width="288" y="3854.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e538"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— ΞΊΟΟΞΉΞ± Ο‡Οήση της εντολής <flowSpan font-family="Sans">Απλοποίηση</flowSpan> (<flowSpan font-weight="bold">Ctrl+L</flowSpan>) ΞΌΞµΞΉΟΞ½ΞµΞΉ τον Ξ±ΟΞΉΞΈΞΌΟ Ο„Ο‰Ξ½ ΞΊΟμβων στο μονοπάτι, ΞµΞ½Ο <flowSpan font-style="italic">σχεδΟΞ½</flowSpan> διατηΟΞµΞ― το σχήμα του. Ξ‘Ο…Ο„Ο ΞΌΟ€ΞΏΟΞµΞ― Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ο‡Οήσιμο Ξ³ΞΉΞ± μονοπάτια που δημιουΟγήθηκαν ΞΌΞµ το ΞµΟγαλείο μολυβιοΟ, Ξ±Ο†ΞΏΟ Ξ±Ο…Ο„Ο Ο„ΞΏ ΞµΟγαλείο ΞΌΞµΟΞΉΞΊΞΟ‚ φοΟΞΟ‚ δημιουΟΞ³ΞµΞ― πεΟισσΟτεΟΞΏΟ…Ο‚ ΞΊΟΞΌΞ²ΞΏΟ…Ο‚ Ξ±Ο€Ο Ο„ΞΏΟ…Ο‚ Ξ±Ξ½Ξ±Ξ³ΞΊΞ±Ξ―ΞΏΟ…Ο‚. Ξ ΞΉΞΏ κάτω, το Ξ±ΟιστεΟΟ ΟƒΟ‡Ξ®ΞΌΞ± ΞµΞ―Ξ½Ξ±ΞΉ Οπως δημιουΟγήθηκε ΞΌΞµ το ΞµΟγαλείο ελεΟΞΈΞµΟΞΏΟ… χεΟΞΉΞΏΟ ΞΊΞ±ΞΉ το δεξί ΞµΞ―Ξ½Ξ±ΞΉ ΞΞ½Ξ± αντίγΟαφο που απλοποιήθηκε. Το Ξ±ΟΟ‡ΞΉΞΊΟ ΞΌΞΏΞ½ΞΏΟ€Ξ¬Ο„ΞΉ Ξχει 28 ΞΊΟΞΌΞ²ΞΏΟ…Ο‚, ΞµΞ½Ο Ο„ΞΏ απλοποιημΞΞ½ΞΏ Ξχει 17 (που σημαίνει Ο€ΞΏΞ»Ο Ο€ΞΉΞΏ ΞµΟκολη δουλειά ΞΌΞµ το ΞµΟγαλείο ΞΊΟμβων) ΞΊΞ±ΞΉ ΞµΞ―Ξ½Ξ±ΞΉ πιο ΞΏΞΌΞ±Ξ»Ο.</flowDiv> + </flowRoot> + <path id="advanced-f12-el.svgpath2511" d="M65.491,41.902c-0.166-1.366-0.723-7.872-1.13-10.17,0.135-2.902-0.092-6.623-0.376-9.793-0.744-4.076-0.188-7.743,0-12.053,2.061-4.2646,3.993-6.8304,6.779-9.4163,4.693,1.1534,5.894,2.56,6.78,7.1564,1.088,3.7598,0.989,7.7008,0.753,12.053,0,4.002-0.005,5.616,2.26,8.663,5.424,0.469,6.295-0.011,8.287-4.896,1.905-3.313,2.552-6.93,3.766-10.547,3.167-2.269,5.884-3.0937,9.42-4.5195,4.76-1.225,7.7-0.0601,10.92,2.2595,1.74,4.915,2.85,8.223,0.38,12.43-1.73,2.325-4.19,4.017-7.16,5.65-2.22,1.406-5.2,2.924-7.533,4.52-3.678,0.481-3.862,3.5-2.26,6.403,2.547,1.451,5.733,0.568,7.533-1.884,3.49-1.674,5-3.198,9.42-3.389,3.8,0.547,6.04,1.173,8.28,3.013,2.4,3.464,3.26,5.675,4.15,8.663-1.81,2.519-2.95,3.868-5.65,5.65-3.43,0-6.87,0.034-10.17-0.377-3.1-0.32-5.74-1.125-8.67-1.507-4.152,0-8.073,0.208-12.05,0.754-2.662,0.056-3.615,0.344-6.403,0.376-2.371,0.155-4.714,0.521-6.026,0.754-2.937-0.026-5.542-0.531-5.65-0.754-2.119,0.044-3.899,0.058-4.143,0.377" transform="translate(10, 3965.825776999999) " stroke="#000" stroke-width="0.75127902pt" fill="none"/> + <path id="advanced-f12-el.svgpath2525" d="M171.97,41.902c-0.87-10.337-2.38-20.746-1.38-31.119,0.98-3.9093,3.01-8.0876,6.96-9.6974,4.69-0.4192,6.76,4.9465,7.14,8.7906,0.73,5.6198-0.93,11.53,1.28,16.937,2.74,3.423,8.29,1.043,9.56-2.588,1.71-4.439,1.84-10.153,6.21-13.01,4.72-2.666,11.1-4.9244,16.05-1.5361,5.8,4.6361,3.82,14.881-2.82,17.711-4.03,2.859-9.11,4.268-12.62,7.787-1.83,4.484,5.59,7.277,7.71,3.141,4.26-3.722,10.89-5.473,15.92-2.217,3.94,2.248,7.12,7.464,4.85,11.89-2.56,4.105-8.09,4.283-12.37,3.53-6.49-1.002-13.05-2.329-19.63-1.397-7.75,0.632-15.57,2.16-23.34,0.845-0.68,0.009-1.37,0.108-2.01,0.349" transform="translate(10, 3965.825776999999) " stroke="#000" stroke-width="0.75127902pt" fill="none"/> + <rect id="d0e560" display="none" height="1000px" width="288" y="4030.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e560"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Ο€ΞΏΟƒΟ Ο„Ξ·Ο‚ απλοποίησης (αποκαλοΟΞΌΞµΞ½ΞΏ <flowSpan font-style="italic">ΞΊΞ±Ο„Οφλι</flowSpan>) ΞµΞΎΞ±Οτάται Ξ±Ο€Ο Ο„ΞΏ ΞΌΞΞ³ΞµΞΈΞΏΟ‚ της επιλογής. ΣυνεπΟΟ‚, εάν επιλΞξετε ΞΞ½Ξ± μονοπάτι ΞΌΞ±Ξ¶Ξ― ΞΌΞµ ΞΌΞµΟΞΉΞΊΞ¬ ΞΌΞµΞ³Ξ±Ξ»ΟτεΟΞ± αντικείμενα, ΞΈΞ± απλοποιηθεί πιο επιθετικά παΟΞ¬ εάν επιλΞξετε Ξ±Ο…Ο„Ο Ο„ΞΏ μονοπάτι ΞΌΟΞ½ΞΏ του. ΕπιπλΞΞΏΞ½, Ξ· εντολή <flowSpan font-family="Sans">Απλοποίηση</flowSpan> ΞµΞ―Ξ½Ξ±ΞΉ <flowSpan font-style="italic">επιταχυνΟΞΌΞµΞ½Ξ·</flowSpan>. Ξ‘Ο…Ο„Ο ΟƒΞ·ΞΌΞ±Ξ―Ξ½ΞµΞΉ Οτι εάν πατήσετε <flowSpan font-weight="bold">Ctrl+L</flowSpan> πολλΞΟ‚ φοΟΞΟ‚ σε Ξ³ΟήγοΟΞ· διαδοχή (Ξτσι Οστε ΞΏΞΉ κλήσεις Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ σε 0,5 δευτεΟΟλεπτα ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚), το ΞΊΞ±Ο„Οφλι αυξάνεται Ξ³ΞΉΞ± κάθε κλήση. (Εάν κάνετε ΞΌΞΉΞ± άλλη απλοποίηση μετά Ξ±Ο€Ο Ξ΄ΞΉΞ±ΞΊΞΏΟ€Ξ®, το ΞΊΞ±Ο„Οφλι ΞµΞ―Ξ½Ξ±ΞΉ πίσω στην Ξ±Οχική του τιμή.) Ξάνοντας Ο‡Οήση της επιτάχυνσης, ΞµΞ―Ξ½Ξ±ΞΉ ΞµΟκολο Ξ½Ξ± εφαΟΞΌΟσετε το Ξ±ΞΊΟΞΉΞ²ΞΟ‚ Ο€ΞΏΟƒΟ Ξ±Ο€Ξ»ΞΏΟ€ΞΏΞ―Ξ·ΟƒΞ·Ο‚ που Ο‡ΟΞµΞΉΞ±Ξ¶Οσαστε Ξ³ΞΉΞ± κάθε πεΟίπτωση.</flowDiv> + </flowRoot> + <rect id="d0e575" display="none" height="1000px" width="288" y="4154.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e575"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΞΟΞ± Ξ±Ο€Ο Ο„Ξ·Ξ½ εξομάλυνση των πινελιΟΞ½ ελεΟΞΈΞµΟΞΏΟ… χεΟΞΉΞΏΟ, Ξ· <flowSpan font-family="Sans">Απλοποίηση</flowSpan> μποΟΞµΞ― Ξ½Ξ± Ο‡Οησιμοποιηθεί Ξ³ΞΉΞ± ποικίλα δημιουΟΞ³ΞΉΞΊΞ¬ ΞµΟ†Ξ. Συχνά, ΞΞ½Ξ± σχήμα που ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Ξ½ΞµΞ»Ξ±ΟƒΟ„ΞΉΞΊΟ ΞΊΞ±ΞΉ γεωμετΟΞΉΞΊΟ ΞµΟ€Ο‰Ο†ΞµΞ»ΞµΞ―Ο„Ξ±ΞΉ Ξ±Ο€Ο ΞΊΞ¬Ο€ΞΏΞΉΞΏ Ο€ΞΏΟƒΟ Ξ±Ο€Ξ»ΞΏΟ€ΞΏΞ―Ξ·ΟƒΞ·Ο‚ που δημιουΟΞ³ΞµΞ― Ο‰ΟΞ±Ξ―ΞµΟ‚ Ξ³ΞµΞ½ΞΉΞΊΞµΟσεις Οπως στη ζωή της Ξ±Οχικής ΞΌΞΏΟφής - Ξ±Ξ½Ξ±ΞΌΞΉΞ³Ξ½Οοντας Ξ±Ο€Οτομες γωνίες ΞΊΞ±ΞΉ εισάγοντας Ο€ΞΏΞ»Ο Ο†Ο…ΟƒΞΉΞΊΞΟ‚ παΟΞ±ΞΌΞΏΟΟ†Οσεις, ΞΌΞµΟΞΉΞΊΞΟ‚ φοΟΞΟ‚ ΞΌΞµ στιλ ΞΊΞ±ΞΉ ΞΌΞµΟΞΉΞΊΞΟ‚ φοΟΞΟ‚ ΞΏΞ»Οτελα αστείες. ΞΞ± ΞΞ½Ξ± παΟάδειγμα σχήματος ΞµΞΉΞΊΟΞ½Ξ±Ο‚ που φαίνεται Ο€ΞΏΞ»Ο Ο€ΞΉΞΏ Ο‰ΟΞ±Ξ―ΞΏ μετά Ξ±Ο€Ο <flowSpan font-family="Sans">απλοποίηση</flowSpan>:</flowDiv> + </flowRoot> + <text id="advanced-f13-el.svgtext2796" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 4255.325534999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2366295" x="43.765549" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f13-el.svgtspan2797" y="4.2366295" x="43.765549" role="line">Ξ‘ΟχικΟ</tspan></text> + <text id="advanced-f13-el.svgtext2799" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 4255.325534999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2366295" x="125.61612" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f13-el.svgtspan2800" y="4.2366295" x="125.61612" role="line">ΕλαφΟΞΉΞ¬ απλοποίηση</tspan></text> + <text id="advanced-f13-el.svgtext2802" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 4255.325534999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2366295" x="213.13528" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f13-el.svgtspan2803" y="4.2366295" x="213.13528" role="line">Ξντονη απλοποίηση</tspan></text> + <path id="advanced-f13-el.svgpath2786" d="M97.048,92.194l0.322,9.646-1.286,4.07-1.608,0.64v3.86l-0.964-0.1,0.214,4.82-1.715,0.21-0.857,10.61,6.537,4.18-1.714,2.68-10.717-1.93-10.395,1.93-1.715-2.68,5.251-3.32-5.787-1.18-11.253,2.36v-1.39l7.074-5.36-1.929-18.86c-1.215-0.22-2.394-0.54-3.537-0.97l-1.5-16.075-2.572-0.428-1.179-3.323-0.965,0.215-2.465,33.011-2.036,0.53,9.109,5.9-1.178,3-14.79-3.22-6.001,1.4-0.429,4.71,5.466,4.93c-0.286,0.29-0.464,0.68-0.536,1.18-0.071,0.5-0.286,0.75-0.643,0.75-0.214,0-0.357-0.04-0.429-0.11l-9.216-1.61-9.859,1.72-0.858-1.93,5.466-4.71-1.179-12.22h-1.393c-0.143-1.22-0.25-2.43-0.322-3.65-0.071-1.14-0.143-2.32-0.214-3.53l-1.179-0.86-2.25-4.07,0.643-11.79h-1.286l1.286-7.716c0.285-0.858,0.714-1.501,1.286-1.93,0.643-0.428,1.321-0.749,2.036-0.964,0.786-0.214,1.572-0.393,2.357-0.536,0.858-0.143,1.644-0.357,2.358-0.643l0.536,2.358-5.787,1.393c-0.429,0.357-0.643,0.786-0.643,1.286l-0.857,4.394h2.572v-1.607h2.143v6.322h10.288v-6.322h2.143v1.607h2.572l-0.964-4.715c-0.071-0.358-0.214-0.608-0.429-0.751-0.143-0.142-0.286-0.285-0.428-0.428l-5.895-1.394,0.643-2.143,6.216,1.715c0.572,0.286,1.108,0.786,1.608,1.5v-6.966c-0.358,0.572-0.858,1.072-1.501,1.5-0.643,0.358-1.321,0.644-2.036,0.858-0.286-1.143-0.429-2.25-0.429-3.322v-1.286c0-0.5,0.072-1.072,0.215-1.715,0-0.714-0.179-1.143-0.536-1.286-0.286-0.143-0.643-0.214-1.072-0.214,0.143,0.357,0.25,0.75,0.322,1.179,0.071,0.357,0.107,0.785,0.107,1.286,0,1.786-0.572,3.322-1.715,4.608-1.143,1.215-2.536,1.822-4.179,1.822-1.572,0-2.93-0.607-4.073-1.822-1.143-1.286-1.714-2.822-1.714-4.608,0-1.001,0.178-1.822,0.535-2.465-0.428,0-0.821,0.071-1.178,0.214-0.358,0.143-0.536,0.5-0.536,1.072v0.214c0.214,1.215,0.321,2.179,0.321,2.894,0,1-0.214,2.143-0.643,3.429-0.786-0.214-1.607-0.607-2.465-1.178-0.785-0.572-1.25-1.287-1.393-2.144-0.143-0.572-0.214-1-0.214-1.286,0-1.358,0.571-2.501,1.715-3.43,0.857-0.5,1.75-0.75,2.679-0.75l1.071,0.107-1.393-32.578,15.647-4.287c-1.215-0.714-2.179-1.75-2.894-3.108-0.714-1.357-1.071-2.858-1.071-4.501,0-2.501,0.714-4.573,2.143-6.216,1.5-1.715,3.286-2.572,5.358-2.572s3.858,0.857,5.359,2.572c1.5,1.643,2.25,3.715,2.25,6.216,0,1.643-0.393,3.144-1.179,4.501-0.714,1.358-1.679,2.394-2.893,3.108l16.075,4.287-0.214,5.465,4.822-1.179,0.643,2.358c-0.5,0.214-0.821,0.572-0.964,1.072-0.143,0.428-0.215,0.928-0.215,1.5,0,0.786,0.072,1.571,0.215,2.358,0.214,0.785,0.393,1.321,0.536,1.607h6.108c0.572-1.643,0.857-3.001,0.857-4.072,0-0.929-0.214-1.608-0.643-2.036-0.214-0.215-0.393-0.358-0.535-0.429l0.535-2.358,11.253,2.358,2.143,21.862h0.751l-0.215,2.679c1,1.358,1.501,2.787,1.501,4.287,0,0.715-0.108,1.322-0.322,1.822-0.357,0.929-0.893,1.75-1.607,2.465-0.715,0.642-1.501,1.143-2.358,1.5l7.073,1.929c0.357,0.215,0.75,0.464,1.179,0.751,0.428,0.285,0.679,0.749,0.75,1.392l2.25,10.074h-1.393zm-52.833-44.582l-5.895-11.574c-1.571,0.5-3.179,0.965-4.822,1.394-1.572,0.428-3.179,0.857-4.823,1.285l1.179,28.936c0.357-0.143,0.679-0.322,0.965-0.536,0.357-0.286,0.714-0.5,1.071-0.643v-24.22h2.465v24.22c0.929,0.143,1.715,0.464,2.358,0.964,0.714,0.5,1.25,1.144,1.607,1.929,0.286-0.071,0.786-0.107,1.501-0.107,0.714,0,1.214,0.036,1.5,0.107l2.894-1.178v-20.577zm50.154,36.223c-0.071-0.429-0.25-0.821-0.536-1.179-0.214-0.428-0.643-0.714-1.286-0.857l-7.287-1.822-7.395,1.822c-0.643,0.143-1.071,0.393-1.286,0.75-0.143,0.286-0.321,0.715-0.536,1.286l-1.286,6.001h2.894l0.321-3.965,2.251,0.215-1.822,20.794,13.718,1.07-1.822-21.864,2.25-0.215,0.536,3.965h2.786l-1.5-6.001zm-36.973-46.403c-1.643-0.429-3.286-0.894-4.929-1.394l-5.895,11.574v20.577l9.217,3,2.465-27.756,3.75-0.75,0.322-3.966-4.93-1.285zm-10.824,33.543v43.835l5.359-1.83,2.893-39.112-8.252-2.893zm24.756-12.217c-1-2.001-2.072-4.037-3.215-6.109-1.072-2.071-1.607-4.393-1.607-6.965,0-0.715,0.035-1.251,0.107-1.608-0.143,0.071-0.536,0.178-1.179,0.322-0.572,0.142-1.215,0.321-1.929,0.535-0.643,0.143-1.25,0.286-1.822,0.429-0.572,0.071-0.929,0.107-1.072,0.107l-2.786,30.757,3.322,0.215,1.393-25.292,2.465,0.214-1.393,25.399c1.215,0,2.465-0.107,3.751-0.321,1.286-0.215,2.465-0.679,3.536-1.394-1.286-1.715-1.929-3.786-1.929-6.215,0-1.715,0.25-3.465,0.751-5.252,0.5-1.786,1.035-3.393,1.607-4.822zm13.61-13.289l-6.001-1.179c0.071,0.286,0.107,0.572,0.107,0.858v0.643c0,1.214-0.178,2.393-0.536,3.536-0.285,1.072-0.678,2.143-1.179,3.215-0.5,1-1.036,2.036-1.607,3.108-0.5,1-1,2.036-1.5,3.108-0.715,1.572-1.358,3.215-1.929,4.93-0.572,1.643-0.858,3.322-0.858,5.037,0,1,0.179,2.143,0.536,3.429,0.786,1.714,2.001,2.893,3.644,3.536,1.643,0.572,3.358,0.929,5.144,1.072-0.357-0.428-0.715-0.929-1.072-1.5-0.357-0.572-0.607-1.143-0.75-1.715-0.071-0.286-0.143-0.536-0.214-0.75v-0.75c0-0.643,0.071-1.251,0.214-1.822,0.214-0.572,0.464-1.107,0.75-1.607l-0.107-2.787,1.715-0.215-0.751-14.253h2.465l0.751,13.932,1.071-0.214h1.929l-1.822-19.612zm-5.251,33.651c-1.214-0.143-2.429-0.358-3.644-0.643-1.143-0.357-2.179-0.893-3.107-1.607-1.429,1-2.965,1.643-4.609,1.928-1.571,0.286-3.179,0.429-4.822,0.429l1.714,20.255,7.395,2.358h0.536v-0.43l0.429-9.216c-0.215-0.143-0.465-0.214-0.751-0.214h-0.75l2.144-9.86c0.142-0.643,0.393-1.107,0.75-1.392,0.428-0.287,0.821-0.536,1.179-0.751l3.536-0.857zm-40.295,32.79l0.214-3.85c0.072-1.29,0.108-2.54,0.108-3.76,0-1.42-0.072-2.85-0.215-4.28-0.071-1.432-0.286-2.789-0.643-4.075h-10.502c-0.357,1.358-0.607,2.751-0.75,4.175-0.072,1.36-0.108,2.76-0.108,4.18,0,1.43,0.036,2.86,0.108,4.29,0.071,1.43,0.178,2.82,0.321,4.18h11.467v-0.86zm39.545-76.729c-0.214,1.215-0.786,2.393-1.715,3.536-0.857,1.143-1.893,1.858-3.108,2.144-0.285,0.071-0.714,0.107-1.286,0.107-1.929,0-3.572-0.857-4.929-2.572-0.358-0.572-0.643-1.107-0.858-1.607-0.214-0.5-0.357-1.036-0.428-1.608h-1.394v-0.75c0-1.786,0.358-3.43,1.072-4.93,0.715-1.5,1.858-2.751,3.43-3.751,0.571-0.286,1.214-0.428,1.929-0.428,0.714-0.072,1.428-0.108,2.143-0.108,1.643,0.357,2.893,1,3.751,1.929,0.929,0.929,1.572,1.929,1.929,3.001,0.428,1,0.679,2,0.75,3.001,0.071,0.929,0.107,1.607,0.107,2.036h-1.393zm-29.685-12.432c-0.572-0.357-1.144-0.642-1.715-0.857-0.215-0.071-0.5-0.107-0.858-0.107-0.714,0-1.464,0.179-2.25,0.536-0.714,0.357-1.393,0.715-2.036,1.071-0.786,0.429-1.501,0.929-2.144,1.501v0.321c0.143,1.215,0.501,2.394,1.072,3.537,0.643,1.072,1.572,1.857,2.786,2.357,0.286,0.072,0.679,0.108,1.179,0.108,1.215,0,2.251-0.429,3.108-1.286,1.286-1.358,1.929-3.001,1.929-4.93,0-0.357-0.071-0.893-0.214-1.608l-0.857-0.643zm39.866,49.298c0-1.572-0.5-2.644-1.5-3.215l-2.572-0.965-3.001,1.286c-0.357,0.429-0.643,0.893-0.858,1.393-0.214,0.429-0.321,0.929-0.321,1.501,0,1.214,0.429,2.215,1.286,3,0.857,0.715,1.822,1.072,2.894,1.072,1.143,0,2.107-0.357,2.893-1.072,0.786-0.785,1.179-1.786,1.179-3zm-43.832-38.045l-4.394,1.5,4.501,8.788,4.609-8.788-4.716-1.5zm-8.252,38.902c0-0.286-0.035-0.608-0.107-0.964-0.071-0.358-0.178-0.608-0.321-0.751l-1.072-0.428c-0.357-0.143-0.714-0.25-1.072-0.322-0.357-0.071-0.714-0.107-1.071-0.107-0.358,0-0.715,0.036-1.072,0.107-0.357,0.072-0.714,0.179-1.072,0.322-0.357,0.143-0.75,0.285-1.179,0.428-0.142,0.715-0.214,1.287-0.214,1.715,0,1.072,0.322,2,0.965,2.786,0.714,0.786,1.571,1.18,2.572,1.18,1,0,1.857-0.394,2.572-1.18,0.714-0.786,1.071-1.714,1.071-2.786zm39.009-41.796c-1.143,0.858-2.322,1.644-3.536,2.358-1.143,0.644-2.322,1.144-3.537,1.5,0.215,0.715,0.5,1.323,0.858,1.823,0.357,0.428,0.75,0.821,1.179,1.179,0.5,0.356,1.107,0.535,1.821,0.535h0.215c1.286-0.143,2.215-0.857,2.786-2.143,0.429-0.714,0.643-1.608,0.643-2.679,0-0.429-0.036-0.858-0.107-1.286-0.072-0.5-0.179-0.929-0.322-1.287zm-4.286,73.092l-2.787-0.86,1.929,18.11,0.858,0.22v-17.47zm-37.08,10.93v12.22h2.036v-0.22l1.072-12h-3.108zm-2.251,0h-3.001l1.179,12.22h1.822v-12.22zm51.655,0.21h-3.322l0.964,10.08h2.465l-0.107-10.08zm2.358,0v10.08h2.465l0.857-10.08h-3.322zm-10.288-8.79l-1.715-0.64-0.214-1.39v17.15l0.535-0.22,1.394-12.54v-2.36zm-32.044-1.17l-1.071,1.71-1.179,0.64-0.429,6.22c0.215,0.07,0.465,0.14,0.75,0.21,0.215,0.07,0.501,0.15,0.858,0.22,0.357,0.14,0.75,0.28,1.179,0.43l-0.108-9.43zm-19.397-14.15l-0.643,11.15,1.179,2.35v-1.39c0-1.86,0.143-3.608,0.429-5.252,0.357-1.643,0.535-3.393,0.535-5.251l-0.107-1.607h-1.393zm59.478,19.93c0-0.57-0.036-1.14-0.107-1.71l-4.501-0.22-0.214,3.75h4.822v-1.82zm-41.795-19.93h-1.286c-0.072,0.357-0.107,0.678-0.107,0.964v0.75l0.964,10.186-0.107,1.6,1.179-2.14-0.643-11.36zm52.405,0.964h-1.608l0.965,12.006,0.107,0.1,0.107-0.1,0.965-2.79-0.536-9.216zm-18.969,0l-0.429,9.216,0.751,2.79c0.142,0,0.214,0.03,0.214,0.1h0.107l0.107-0.1,0.75-12.006h-1.5zm15.325,17.896c-0.786,0-1.572-0.03-2.358-0.11-0.786-0.07-1.571-0.17-2.357-0.32v3.32h4.929l-0.214-2.89zm-12.646,5.25h-0.536l-0.643,5.68,1.822,1.18-0.643-6.86zm-17.682-36.22l-1.715-0.322,1.5,3.965,0.643,0.215-0.428-3.858z" stroke-width="1.0000000pt" transform="translate(10, 4255.325534999999) "/> + <path id="advanced-f13-el.svgpath2789" d="M191.83,92.195c1.45,7.046-0.77,13.095-3.47,18.975,0.78,4.16-3.31,6.61-2.16,11.44-3.3,5.28,11.69,7.04,3.16,10.09-4.71-1.02-9.65-2.56-14.42-0.87-2.65,1.72-9.17,0.48-5.32-2.96,7.41-2.69-3.74-3.97-6.35-2.41-2.33,1.05-10.39,2.35-5.07-1.43,8.03-3.01,3.47-11.48,3.57-17.94,0.09-3.33-0.37-4.94-3.53-5.65-1.56-4.654-1.1-9.847-1.86-14.727-0.12-2.069-4.29-1.783-3.88-5.129-2.52,4.029-1.07,10.228-2.08,15.103-0.45,6.043-0.9,12.083-1.35,18.123-4.77,2.22,10.08,4.43,6.21,8.62-4.3,1.29-9.29-1.9-13.92-2.1-5.68-1.9-10.97,4.94-4.8,8.39,4.72,2.41,0.9,5.49-2.77,3.52-5.11-2.71-12.38,2.31-15.95-0.67,3.12-3.32,7.13-6.32,4.67-11.7-0.1-5.17-2.82-8.01-2.86-13.32-5.66-3.77-1.01-12.318-3.16-16.361-0.76-4.213,0.62-10.906,6.29-11.275,6.4,0.351-0.05,3.232-2.83,3.538-2.22,3.126-1.07,7.85,2.5,3.812,1.16,3.39,0.19,8.356,6.2,6.323,5.7,1.9,4.59-2.933,5.45-6.313,1.7,1.281,5.06,2.945,3.62-1.104,1.4-5.093-9.91-2.958-5.9-6.483,3.18-0.414,8.68,5.412,7.14-0.844,1.91-5.888-5.24,2.049-3.91-3.307,0.93-3.027-1.58-7.48-0.99-1.929-0.18,9.225-15.77,4.403-11.14-3.382-3.63,0.907,0.5,11.323-5.28,5.897-4.15-6.165,7.91-6.126,4.39-12.416-0.38-8.972-0.76-17.945-1.15-26.917,4.59-1.62,12.6-2.728,15.05-4.665-6.28-4.254-3.31-16.719,4.84-15.975,9.26,1.024,6.71,13.152,4.22,16.803,4.57,1.851,12.53,1.466,14.7,5.284-2.14,5.52,2.9,2.257,5.04,3.836-2.62,4.317,0,10.211,5.44,7.753,3.1-3.168-2.57-11.291,4.96-7.848,5.74-0.109,8.3,2.632,7.61,8.288,0.71,5.268,0.67,10.733,1.86,15.874,2.49,4.177,1.61,9.167-1.71,12.093,6.25,0.252,9.61,4.586,9.6,10.68-0.27,1.326,2.26,4.024-0.66,3.283zm-52.84-44.583c-2.94-3.17-3.36-12.428-8.26-10.76-5.47-0.266-8.96,3.397-7,8.736,0.3,7.355,0.6,14.71,0.9,22.065,4.54-4.521,0.82-13.392,2.04-19.628-1.32-2.96,1.5-9.122,2.54-3.675,0.53,7.442-1.48,16.415,1.04,22.883,3.93,3.678,11.18,2.004,8.74-4.442v-15.179zm50.16,36.223c-4.18-4.856-13.83-4.64-18.23-0.257-1.43,2.37-1.69,9.314,1.9,5.052-1.84-4.028,4.27-2.806,1.9,0.651,0.09,5.623-2.32,13.359-0.68,17.659,3.83-0.53,11.35,2.6,12.74-0.36-0.57-6.83-1.14-13.662-1.7-20.494,3.49-1.941,2.34,7.392,5.36,2.75-0.25-1.698-1-3.298-1.29-5.001zm-36.98-46.403c-6.9-4.138-9.3,7.484-10.82,12.1,0.75,6.08-1.51,14.342,1.15,19.032,3.83,0.961,9.7,5.016,8.45-1.712,0.7-7.806,1.39-15.613,2.08-23.419,5.92,0.02,5.62-5.997-0.86-6.001zm-10.82,33.543v43.835c8.41-0.34,5.06-10.09,6.39-15.714,0.62-8.409,1.24-16.818,1.86-25.228-2.75-0.964-5.5-1.928-8.25-2.893zm24.76-12.217c-3-4.194-4.8-10.902-5.45-14.571-7.54-0.148-5.43,8.129-6.34,13.081-0.57,6.319-1.14,12.639-1.72,18.958,5.97,1.41,2.73-7.09,3.91-10.474,0.27-4.868,0.54-9.735,0.81-14.603,4.95,0.286,0.99,7.945,1.85,11.384-0.26,4.742-0.52,9.486-0.78,14.229,4.85,0.985,8.54-2.605,5.4-6.966-0.29-3.817,1-7.519,2.32-11.038zm13.61-13.288c-3.33-0.63-7.18-2.523-6.16,2.469-1.52,7.778-8.38,14.123-7.32,22.445-0.23,4.808,12.23,9.786,7.46,3.213-0.38-4.226,1.26-7.206,2.32-10.033,0.53-3.743-2.57-11.163,0.97-12.327,3.1,3.551-1.16,12.714,3.18,13.975,3.1-3.959-0.76-11.394-0.16-16.634-0.1-1.036-0.2-2.072-0.29-3.108zm-5.25,33.65c-5.01-2.273-10.21-0.981-15.12-0.233-2.07,5.278,0.61,11.973,0.41,17.808-1.27,3.885,7.55,5.835,8.21,3.935,1.02-6.763-2-10.412,0.68-17.079,0.29-3.36,3.05-3.958,5.82-4.431zm-40.3,32.79c-0.64-5.13,3.41-16.981-4.47-15.965-3.8-0.2-8.08-0.902-7.18,4.295-0.76,5.13-1.74,15.1,6.42,12.53,0.99-0.58,5.89,1.13,5.23-0.86zm39.55-76.729c-0.82,7.829-11.63,6.661-13.3,0.002-1.94-5.605,4.82-12.889,10.38-9.091,2.5,1.071,6.53,8.202,2.92,9.089zm-29.69-12.432c-6.93-5.162-12.89,8.639-3.56,8.518,3.5-0.491,6.34-5.745,3.56-8.518zm39.87,49.298c-0.63-8.657-13.58-0.718-5.83,3.723,2.54,1.603,6.03-0.835,5.83-3.723zm-43.84-38.044c-7.52,0.34-1.27,6.553,0.11,10.287,1.22-4.57,8.67-9.623-0.11-10.287zm-8.25,38.901c-1.79-7.11-12.38,2.15-4.11,3.954,2.2,0.311,4.22-1.8,4.11-3.954zm39.01-41.796c-3.41,1.376-10.45,6.334-2.82,7.374,3.16-0.602,3.83-4.835,2.82-7.374zm-4.28,73.092c-5.59-2.03-0.76,7.79-1.55,10.8-0.23,2.49,1.49,9.81,1.56,3.63-0.08-4.79,0.03-9.62-0.01-14.43zm-37.08,10.93c0.86,3.73-1.84,11.02,1.54,12.28,1.03-3.5,1.97-9.78,0.79-12.28h-2.33zm-2.26,0c-6.07-0.48-0.88,8.65-1.82,12.22,4.08-0.51,0.7-8.98,1.82-12.22zm51.66,0.21c-5.78-1.41-2.61,8.61-1.38,10.28,3.23-0.85,0.6-7.72,1.38-10.28zm2.36,0c0.23,2.59-1.29,13.69,2.63,8.74-0.7-3.24,3.32-10.53-2.63-8.74zm-10.29-8.79c-4.06-3.52-0.97,6.32-1.93,8.8-0.35,3.24,0.32,9.1,0.91,2.75,0.26-3.85,1.14-7.67,1.02-11.55zm-32.04-1.17c-2.94,1.73-4.35,10.35,0.09,8.55-0.03-2.85-0.06-5.7-0.09-8.55zm-19.4-14.15c0.28,4.214-1.68,9.03,0.33,12.84-0.55-3.4,3.22-11.64-0.33-12.84zm59.48,19.93c-0.72-5.89-9.15,1.96-2.31,1.92,1.7-0.14,2.76,0.41,2.31-1.92zm-41.8-19.93c-3.4,2.635,0.61,9.31-0.53,13.5,2.43-3.96,0.15-9.115,0.53-13.5zm52.41,0.965c-3.32,0.84-0.31,10.885-0.21,11.425,1.49-3.668,0.07-7.626,0.21-11.425zm-18.97,0c0.12,3.072-1.4,11.445,0.83,11.065-0.73-3.08,2.47-10.575-0.83-11.065zm15.32,17.895c-6.13-2.76-5.59,5.51,0.06,2.63,0.62-0.81-0.41-1.75-0.06-2.63zm-12.64,5.25c-3.02,2.36,1.09,10.32,0.33,3.58-0.1-1.19-0.22-2.38-0.33-3.58zm-17.69-36.22c-3.89-1.78,1.69,7.528,0.19,1.646-0.04-0.24-0.17-1.337-0.19-1.646z" stroke-width="1.0000000pt" transform="translate(10, 4255.325534999999) "/> + <path id="advanced-f13-el.svgpath2795" d="M286.61,92.195c1.73,10.245-3.77,20.235-6.8,29.375,2.77,4.43,9.29,12.64-1.06,9.64-5.65-0.31-16.37,3.82-14.05-4.6-2.84-3.18-14.35,4.46-10.78-2.84,7.7-6.54,2.34-17.84-1.36-25.229-0.62-4.229-1.21-17.585-6.15-13.717-1.7,8.995-0.97,18.266-2.47,27.316-1.29,4.25,10.98,12.59,0.71,11.01-6.98-4.44-21.11-1.22-12.58,8.34-2.14,3.4-10.61,0.37-15.3,1.67-4.68-3.02,4.89-11.49-0.25-17.16-3.71-9.72-6.68-20.331-4.79-30.691,0.07-6.547,11.78-4.847,3.23-1.67-2.73,6.045,9.88,15.008,14.39,6.841-0.61-3.752,6.14-2.574,1.12-6.696-7.69-5.089,5.26-0.149,2.74-6.202-4.75,1.088-3.59-9.162-5.01-1.02-4.16,7.948-12.66-7.672-12.14-1.318-9.65,2.941,4.7-10.84,1.31-16.479,0.2-7.576-6.01-18.798,2.72-23.543,7.61,1.254,10.79-5.296,6.97-11.079-0.15-8.62,14.65-11.134,14.68-1.372-2.4,7.562,1.51,13.53,9.57,13.368,6.76,1.808,6.22,18.387,14.23,12.035-0.63-12.042,13.97-5.359,12.73,2.936-1.95,7.935,3.4,15.402,1.74,23.297-1.9,6.014,12.28,9.73,7.27,17.831-0.23-0.014-0.67-0.043-0.67-0.043zm-52.84-44.583c-0.08-7.15-11.88-16.201-15-6.213-1.18,8.035,0.93,16.178,0.59,24.281,4.01-0.052,1.66-12.919,1.63-17.956,2.7-10.251,4.49,8.131,2.3,12.268-3.02,10.592,14.84,10.949,10.98,0.205-0.62-4.161-0.84-8.389-0.5-12.585zm50.16,36.223c-4.33-8.369-23.71-1.358-16.94,4.729,5.78-3.043-0.9,10.326,1.54,13.896,2.22,10.4,17,5.33,12.85-4.483-2.26-4.403-1.87-13.59,3.45-9.025,0.27-1.771-0.4-3.465-0.9-5.117zm-36.98-46.403c-8.85-1.837-10.79,9.521-10.69,16.008-2.87,5.999,1.15,21.939,9.02,14.339,1.94-7.849,1.3-16.277,2.53-24.346,5.97,1.428,4.08-7.941-0.86-6.001zm-10.82,33.543v43.835c8.55-2.12,5.78-12.67,6.36-19.121-0.99-7.749,6.6-20.034-3.24-23.893-0.51-0.148-2.59-0.695-3.12-0.821zm24.75-12.217c-2.35-3.902-6.18-19.179-10.9-9.338-1.07,7.984-1.56,16.114-2.1,24.152,5.93,1.068,2.39-12.048,3.5-16.872,2.54-9.635,4.53,4.48,2.29,7.949-3.22,5.041,2.82,17.762,5.64,7.002,1.04-4.365-2.08-9.196,1.57-12.893zm13.62-13.288c-9.52-2.066-7.18,11.28-11.89,15.95-6.03,4.717,2.29,20.544,6.48,11.12,1.24-6.261,0.25-14.01,2.9-19.232,1.35,2.737,2.04,14.588,3.93,5.969,0.16-4.662-1.94-9.132-1.42-13.807zm-5.26,33.65c-6.44-3.603-17.88-1.256-15.83,8.097-2.75,6.399,6.5,20.193,9.67,8.963-0.79-6.07-2.56-16.071,6.16-17.06zm-40.29,32.79c2.31-6.55-0.28-21.299-9.82-14.876-6.99,6.576-0.12,21.896,9.82,14.876zm39.54-76.729c-0.72,8.483-14.8,5.465-13.97-2.306-0.32-9.702,15.26-9.829,15.19-0.275-0.13,0.44-0.94,2.161-1.22,2.581zm-29.68-12.432c-8.51-7.329-9.63,15.326-0.45,6.694,1.61-1.76,2.31-4.84,0.45-6.694zm39.86,49.298c-1.74-10.586-13.82,6.942-2.44,3.861,1.46-0.666,2.56-2.216,2.44-3.861zm-43.83-38.044c-8.89,0.854,3.1,14.814,3.79,4.093,1.18-2.261-1.45-5.039-3.79-4.093zm-8.25,38.901c-3.02-8.504-10.1,8.305-1.34,3.041,0.89-0.731,1.36-1.901,1.34-3.041zm39.01-41.796c-8.66-1.525-1.77,13.237,0.41,3.083-0.01-0.521-0.29-2.576-0.41-3.083zm-4.29,73.092c-6.9,1.8,1.38,20.57,0.03,8.49-0.02-2.83-0.07-5.66-0.03-8.49zm-37.08,10.93c-1.71,4.45,1.43,14.82,3,5.14,0.48-2.18-0.16-5.24-3-5.14zm-2.25,0c-7.73-0.05,0.74,16.72,0.06,5.53-0.26-1.82-0.57-3.71-0.06-5.53zm51.66,0.21c-8.43-1.44,1.05,15.24,0.04,3.96-0.16-1.31-0.29-2.65-0.04-3.96zm2.36,0c-3.26,4.67,3.5,12.3,3.26,3.45,0.42-1.96-0.74-5.13-3.26-3.45zm-10.29-8.79c-5.47,1.62-0.51,18.15-0.57,7.6,0.31-2.52,0.57-5.05,0.57-7.6zm-32.05-1.17c-6.25,0.28,0.78,12.71,0.04,3.51-0.02-1.17-0.01-2.34-0.04-3.51zm-19.39-14.15c-1.3,4.676,0.18,15.02,1.52,4.882,0.31-1.737-0.03-3.748-1.52-4.882zm59.48,19.93c-3.1-6.35-5.41,6.75-0.16,1.29,0.05-0.43,0.16-1.29,0.16-1.29zm-41.8-19.93c-4.53,4.083,1.96,15.72,0.29,5.078-0.21-1.683-0.42-3.38-0.29-5.078zm52.4,0.965c-5.34,2.162,2.08,13.995,0.25,4.156-0.15-1.38-0.28-2.767-0.25-4.156zm-18.96,0c-1.32,2.826,0.22,13.625,1.42,5.055,0.36-1.726,0.28-4.036-1.42-5.055zm15.32,17.895zm-12.64,5.25zm-17.69-36.22z" stroke-width="1.0000000pt" transform="translate(10, 4255.325534999999) "/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="4414.338475" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="4414.338475" x="10">ΔημιουΟΞ³Ξ―Ξ± ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…</tspan> + </text> + <rect id="d0e600" display="none" height="1000px" width="288" y="4419.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e600"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape μποΟΞµΞ― Ξ½Ξ± δημιουΟγήσει μεγάλα ΞΊΞ±ΞΉ ΟƒΟνθετα ΞΊΞµΞ―ΞΌΞµΞ½Ξ±. Ξμως, ΞµΞ―Ξ½Ξ±ΞΉ επίσης Ξ²ΞΏΞ»ΞΉΞΊΟ Ξ³ΞΉΞ± δημιουΟΞ³Ξ―Ξ± ΞΌΞΉΞΊΟΟΞ½ αντικειμΞνων ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… Οπως κεφαλίδες, λάβαΟΞ±, λογΟτυπα, ετικΞτες διαγΟαμμάτων ΞΊΞ±ΞΉ λεζάντες ΞΊΞ». Αυτή Ξ· ΞµΞ½Οτητα ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± Ο€ΞΏΞ»Ο Ξ²Ξ±ΟƒΞΉΞΊΞ® εισαγωγή στις δυνατΟτητες ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… του Inkscape.</flowDiv> + </flowRoot> + <rect id="d0e603" display="none" height="1000px" width="288" y="4480.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e603"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— δημιουΟΞ³Ξ―Ξ± ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ… ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ΞµΞ―Ξ½Ξ±ΞΉ Ο„Οσο απλή Οπως Ξ· εναλλαγή στο ΞµΟγαλείο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… (<flowSpan font-weight="bold">F8</flowSpan>), πατήστε κάπου στο ΞΞ³Ξ³Οαφο ΞΊΞ±ΞΉ τυπΟστε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ σας. Για Ξ½Ξ± αλλάξετε ΞΏΞΉΞΊΞΏΞ³ΞΞ½ΞµΞΉΞ± Ξ³ΟαμματοσειΟάς, ΞΌΞΏΟφοποίηση, ΞΌΞΞ³ΞµΞΈΞΏΟ‚ ΞΊΞ±ΞΉ ΞµΟ…ΞΈΟ…Ξ³Οάμμιση, ανοίξτε το διάλογο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ΞΊΞ±ΞΉ Ξ³ΟαμματοσειΟάς (<flowSpan font-weight="bold">Shift+Ctrl+T</flowSpan>). ΑυτΟΟ‚ ΞΏ διάλογος Ξχει επίσης ΞΌΞΉΞ± ΞΊΞ±ΟΟ„Ξλα ΞµΞΉΟƒΟδου ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…, Οπου μποΟείτε Ξ½Ξ± επεξεΟγαστήτε το επιλεγμΞΞ½ΞΏ αντικείμενο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… - σε ΞΌΞµΟΞΉΞΊΞΟ‚ πεΟιπτΟσεις ίσως Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ πιο Ξ²ΞΏΞ»ΞΉΞΊΟ Ο€Ξ±ΟΞ¬ Ξ½Ξ± το επεξεΟγαστήτε στον ΞΊΞ±ΞΌΞ²Ξ¬ (ειδικά, αυτή Ξ· ΞΊΞ±ΟΟ„Ξλα υποστηΟΞ―Ξ¶ΞµΞΉ τον ΞΏΟΞΈΞΏΞ³ΟΞ±Ο†ΞΉΞΊΟ Ξλεγχο ΞΊΞ±ΞΈΟΟ‚ πληκτΟολογείτε).</flowDiv> + </flowRoot> + <rect id="d0e612" display="none" height="1000px" width="288" y="4594" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e612"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξπως άλλα ΞµΟγαλεία, το ΞµΟγαλείο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… μποΟΞµΞ― Ξ½Ξ± επιλΞΞΎΞµΞΉ αντικείμενα του Ο„Οπου του - αντικείμενα ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… - Ξτσι μποΟείτε Ξ½Ξ± πατήσετε Ξ³ΞΉΞ± επιλογή ΞΊΞ±ΞΉ τοποθΞτηση του Ξ΄ΟΞΏΞΌΞΞ± σε οποιοδήποτε υπάΟχον αντικείμενο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… (Οπως αυτή Ξ· παΟάγΟαφος).</flowDiv> + </flowRoot> + <rect id="d0e615" display="none" height="1000px" width="288" y="4644.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e615"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± Ξ±Ο€Ο Ο„ΞΉΟ‚ πιο συνηθισμΞΞ½ΞµΟ‚ λειτουΟΞ³Ξ―ΞµΟ‚ στο ΟƒΟ‡ΞµΞ΄ΞΉΞ±ΟƒΞΌΟ ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ΞµΞ―Ξ½Ξ±ΞΉ Ξ· ΟΟθμιση διάκενου ΞΌΞµΟ„Ξ±ΞΎΟ Ξ³Οαμμάτων ΞΊΞ±ΞΉ Ξ³ΟΞ±ΞΌΞΌΟΞ½. Ξπως πάντοτε, το Inkscape παΟΞχει συντομεΟσεις πληκτΟολογίου Ξ³ΞΉΞ± Ξ±Ο…Ο„Ο. Ξταν επεξεΟΞ³Ξ±Ξ¶Οσαστε ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ, τα πλήκτΟΞ± <flowSpan font-weight="bold">Alt+<</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Alt+></flowSpan> αλλάζουν το <flowSpan font-style="italic">διάκενο Ξ³Οαμμάτων</flowSpan> στην Ο„ΟΞχουσα Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ… ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…, Ξτσι Οστε το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ ΞΌΞ®ΞΊΞΏΟ‚ της Ξ³Οαμμής Ξ½Ξ± αλλάζει κατά ΞΞ½Ξ± εικονοστοιχείο στην Ο„ΟΞχουσα εστίαση (συγκΟίνετε ΞΌΞµ το ΞµΟγαλείο επιλογΞΞ±, Οπου τα ίδια πλήκτΟΞ± κάνουν κλιμάκωση αντικειμΞΞ½ΞΏΟ… του ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ εικονοστοιχείου). Ως ΞΊΞ±Ξ½ΟΞ½Ξ±Ο‚, εάν το ΞΌΞΞ³ΞµΞΈΞΏΟ‚ της Ξ³ΟαμματοσειΟάς στο αντικείμενο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞµΞ³Ξ±Ξ»ΟτεΟΞΏ Ξ±Ο€Ο Ο„ΞΏ Ο€ΟοεπιλεγμΞΞ½ΞΏ, ΞµΞ―Ξ½Ξ±ΞΉ πιθανή Ξ· ωφΞλεια Ξ±Ο€Ο Ο„Ξ· συμπίεση των Ξ³Οαμμάτων πιο κοντά Ξ±Ο€Ο Ο„ΞΏ Ο€ΟοεπιλεγμΞΞ½ΞΏ. Ξ™Ξ΄ΞΏΟ ΞΞ½Ξ± παΟάδειγμα:</flowDiv> + </flowRoot> + <text id="advanced-f14-el.svgtext1609" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 4797.901085999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2361641" x="139.43481" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f14-el.svgtspan1610" y="4.2361641" x="139.43481" role="line">Ξ‘ΟχικΟ</tspan></text> + <text id="advanced-f14-el.svgtext1612" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 4797.901085999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="53.843742" x="116.16958" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f14-el.svgtspan1613" y="53.843742" x="116.16958" role="line">Ξείωση διάκενου Ξ³Οαμμάτων</tspan></text> + <text id="advanced-f14-el.svgtext2315" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="translate(10, 4797.901085999999) " font-style="normal" font-stretch="normal" font-size="33.599998" font-variant="normal" y="33.29771" x="60.780251" font-family="Bitstream Vera Serif" fill="#000000"><tspan id="advanced-f14-el.svgtspan1604">Ξμπνευση</tspan></text> + <text id="advanced-f14-el.svgtext1606" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="translate(10, 4797.901085999999) " font-style="normal" font-stretch="normal" font-size="33.599998" font-variant="normal" y="82.904648" x="67.866859" font-family="Bitstream Vera Serif" fill="#000000"><tspan id="advanced-f14-el.svgtspan1607" style="letter-spacing:-1.2478520;">Ξμπνευση</tspan></text> + <rect id="d0e637" display="none" height="1000px" width="288" y="4900" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e637"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— πιο σφικτή παΟαλλαγή δείχνει λίγο ΞΊΞ±Ξ»ΟτεΟΞ± ως κεφαλίδα, αλλά δεν ΞµΞ―Ξ½Ξ±ΞΉ Ξ±ΞΊΟΞΌΞ± Ο„Ξλεια: ΞΏΞΉ αποστάσεις ΞΌΞµΟ„Ξ±ΞΎΟ Ο„Ο‰Ξ½ Ξ³Οαμμάτων δεν ΞµΞ―Ξ½Ξ±ΞΉ ΞΏΞΌΞΏΞΉΟΞΌΞΏΟφες, Ξ³ΞΉΞ± παΟάδειγμα "a" ΞΊΞ±ΞΉ "t" ΞµΞ―Ξ½Ξ±ΞΉ υπεΟβολικά ΞΌΞ±ΞΊΟΞΉΞ¬, ΞµΞ½Ο "t" ΞΊΞ±ΞΉ "i" ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο ΞΊΞΏΞ½Ο„Ξ¬. Ξ Ξ±ΟΞΉΞΈΞΌΟΟ‚ Ο„Ξτοιων ΞΊΞ±ΞΊΟΞ½ πυκνΟσεων (ειδικά ΞΏΟΞ±Ο„ΟΞ½ σε μεγάλα ΞΌΞµΞ³ΞΞΈΞ· Ξ³ΟαμματοσειΟΟΞ½) ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞµΞ³Ξ±Ξ»ΟτεΟΞΏΟ‚ σε χαμηλής ποιΟτητας Ξ³ΟαμματοσειΟΞΟ‚ παΟΞ¬ σε Ο…Οηλής ποιΟτητας. Ξμως, σε κάθε αλφαΟΞΉΞΈΞΌΞ·Ο„ΞΉΞΊΟ ΞΊΞ±ΞΉ σε κάθε Ξ³ΟαμματοσειΟΞ¬ ΞΈΞ± Ξ²Οείτε Ο€ΟοφανΟΟ‚ Ξ¶ΞµΟΞ³Ξ· Ξ³Οαμμάτων που επωφελοΟνται Ξ±Ο€Ο Ουθμίσεις Ο€Οκνωσης.</flowDiv> + </flowRoot> + <rect id="d0e640" display="none" height="1000px" width="288" y="5003.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e640"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape κάνει Ξ±Ο…Ο„ΞΟ‚ τις Ουθμίσεις Ο€Οαγματικά ΞµΟκολες. Απλά μετακινήστε το Ξ΄ΟΞΏΞΌΞΞ± επεξεΟγασίας ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ΞΌΞµΟ„Ξ±ΞΎΟ Ο„Ο‰Ξ½ Ο€ΟοβληματικΟΞ½ χαΟακτήΟων ΞΊΞ±ΞΉ Ο‡Οησιμοποιήστε <flowSpan font-weight="bold">Alt+Ξ²Ξλη</flowSpan> Ξ³ΞΉΞ± μετακίνηση των Ξ³Οαμμάτων δεξιά Ξ±Ο€Ο Ο„ΞΏ Ξ΄ΟΞΏΞΌΞΞ±. Ξ•Ξ΄Ο ΞµΞ―Ξ½Ξ±ΞΉ Ξ· ίδια επικεφαλίδα ΞΎΞ±Ξ½Ξ¬, αυτή τη φοΟΞ¬ ΞΌΞµ χειΟοκίνητες Ουθμίσεις Ξ³ΞΉΞ± οπτικά ΞΏΞΌΞΏΞΉΟΞΌΞΏΟφη τοποθΞτηση Ξ³Οαμμάτων:</flowDiv> + </flowRoot> + <text id="advanced-f15-el.svgtext1649" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="110.00000%" transform="translate(10, 5082.495264999999) " line-height="110.00000%" xml:space="preserve" font-size="5.5761971" font-style="normal" y="4.2368875" x="66.563278" font-family="Bitstream Vera Serif" sodipodi:insensitive="true" fill="#000000"><tspan id="advanced-f15-el.svgtspan1651" y="4.2368875" x="66.563278" role="line">Ξείωση διάκενου Ξ³Οαμμάτων, ΞΌΞµΟΞΉΞΊΞ¬ Ξ¶ΞµΟ…Ξ³Ξ¬ΟΞΉΞ± Ξ³Οαμμάτων πυκνΟΞΈΞ·ΞΊΞ±Ξ½ χειΟοκίνητα</tspan></text> + <text id="advanced-f15-el.svgtext2406" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="translate(10, 5082.495264999999) " font-style="normal" font-stretch="normal" font-size="33.599998" font-variant="normal" y="34.802681" x="67.866859" font-family="Bitstream Vera Serif" fill="#000000"><tspan id="advanced-f15-el.svgtspan1647" style="letter-spacing:-1.2478520;" dx="0 0 -0.1418031 -0.42540932 -0.42540932 0.42540932 0.42540932 -0.87514824 1.1344248 -0.5672124 -0.5672124">Ξμπνευση</tspan></text> + <rect id="d0e656" display="none" height="1000px" width="288" y="5136.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e656"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΞΟΞ± Ξ±Ο€Ο Ο„Ξ· μετακίνηση Ξ³Οαμμάτων ΞΏΟΞΉΞ¶Οντια ΞΌΞµ <flowSpan font-weight="bold">Alt+Ξ±ΟιστεΟΟ Ξ²Ξλος</flowSpan> Ξ® <flowSpan font-weight="bold">Alt+δεξί Ξ²Ξλος</flowSpan>, μποΟείτε επίσης Ξ½Ξ± τα μετακινήσετε κάθετα Ο‡ΟησιμοποιΟντας <flowSpan font-weight="bold">Alt+επάνω Ξ²Ξλος</flowSpan> Ξ® <flowSpan font-weight="bold">Alt+κάτω Ξ²Ξλος</flowSpan>:</flowDiv> + </flowRoot> + <text id="advanced-f16-el.svgtext1731" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="translate(10, 5184.0051939999985) " font-style="normal" font-stretch="normal" font-size="33.599998" font-variant="normal" y="32.078743" x="67.866859" font-family="Bitstream Vera Serif" fill="#000000"><tspan id="advanced-f16-el.svgtspan1732" style="letter-spacing:-1.2478520;" dx="0 -3.4339702 -1.746122 -1.4281086 -2.0297282 -1.981069 -3.9864676 -3.8832457 -1.2720536 -2.1715312 -1.5699117" dy="0 0.0056477566 6.8183579 -6.6178179 0 -6.4172778 6.0161972 -5.8156576 5.8156576 -3.4091773 2.8075578">Ξμπνευση</tspan></text> + <rect id="d0e681" display="none" height="1000px" width="288" y="5229.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e681"/> + </flowRegion> + <flowDiv xml:space="preserve">Φυσικά ΞΈΞ± μποΟΞΏΟσατε απλά Ξ½Ξ± μετατΟΞΟετε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ σας σε μονοπάτι (<flowSpan font-weight="bold">Shift+Ctrl+C</flowSpan>) ΞΊΞ±ΞΉ Ξ½Ξ± μετακινήσετε τα Ξ³Οάμματα ως ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ¬ αντικείμενα μονοπατιοΟ. Ξμως, ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο Ο€ΞΉΞΏ Ξ²ΞΏΞ»ΞΉΞΊΟ Ξ½Ξ± ΞΊΟατήσετε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ως ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ - παΟΞ±ΞΌΞΞ½ΞµΞΉ επεξεΟγάσιμο, μποΟείτε Ξ½Ξ± δοκιμάσετε διαφοΟετικΞΟ‚ Ξ³ΟαμματοσειΟΞΟ‚ χωΟΞ―Ο‚ αφαίΟεση πυκνΟσεων ΞΊΞ±ΞΉ διακΞνων ΞΊΞ±ΞΉ παίΟΞ½ΞµΞΉ Ο€ΞΏΞ»Ο Ξ»ΞΉΞ³ΟτεΟΞΏ Ο‡ΟΟΞΏ στο αποθηκευμΞΞ½ΞΏ Ξ±Οχείο. Το ΞΌΟΞ½ΞΏ ΞΌΞµΞΉΞΏΞ½Ξκτημα της Ο€ΟΞΏΟƒΞγγισης "ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… ως ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…" ΞµΞ―Ξ½Ξ±ΞΉ Οτι Ο‡Οειάζεται Ξ½Ξ± Ξχετε την Ξ±Οχική Ξ³ΟαμματοσειΟΞ¬ εγκαταστημΞΞ½Ξ· σε οποιοδήποτε ΟƒΟστημα ΞΈΞ± ΞΈΞλατε Ξ½Ξ± ανοίξετε Ξ±Ο…Ο„Ο Ο„ΞΏ ΞΞ³Ξ³Οαφο SVG.</flowDiv> + </flowRoot> + <rect id="d0e687" display="none" height="1000px" width="288" y="5343.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e687"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ Ξ±ΟΟΞΌΞΏΞΉΞ± ΞΌΞµ το διάκενο Ξ³Οαμμάτων, μποΟείτε επίσης Ξ½Ξ± Ουθμίσετε <flowSpan font-style="italic">διάκενο Ξ³ΟΞ±ΞΌΞΌΟΞ½</flowSpan> σε αντικείμενα ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… πολλαπλΟΞ½ Ξ³ΟΞ±ΞΌΞΌΟΞ½. Δοκιμάστε τα πλήκτΟΞ± <flowSpan font-weight="bold">Ctrl+Alt+<</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Ctrl+Alt+></flowSpan> σε οποιαδήποτε παΟάγΟαφο σε Ξ±Ο…Ο„Ο Ο„ΞΏ μάθημα Ξ³ΞΉΞ± Ξ½Ξ± τα τοποθετήσετε ΞΌΞσα Ξ® ΞΞΎΟ‰, Ξτσι Οστε το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ ΟΟΞΏΟ‚ του αντικειμΞΞ½ΞΏΟ… ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… Ξ½Ξ± αλλάζει κατά 1 εικονοστοιχείο στην Ο„ΟΞχουσα εστίαση. Ξπως στο επιλογΞΞ±, πατΟντας <flowSpan font-weight="bold">Shift</flowSpan> ΞΌΞµ οποιαδήποτε συντΟμευση διακΞΞ½ΞΏΟ… Ξ® Ο€Οκνωσης παΟάγεται 10 φοΟΞΟ‚ ΞΌΞµΞ³Ξ±Ξ»ΟτεΟΞΏ αποτΞλεσμα Ξ±Ο€Ο Οτι χωΟΞ―Ο‚ Shift.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="5449.2188959999985" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="5449.2188959999985" x="10">ΕπεξεΟγαστής XML</tspan> + </text> + <rect id="d0e708" display="none" height="1000px" width="288" y="5454.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e708"/> + </flowRegion> + <flowDiv xml:space="preserve">Το πιο Ξ΄Ο…Ξ½Ξ±Ο„Ο ΞµΟγαλείο του Inkscape ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ επεξεΟγαστής XML (<flowSpan font-weight="bold">Shift+Ctrl+X</flowSpan>). Εμφανίζει το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ Ξ΄ΞΞ½Ξ΄ΟΞΏ XML του ΞµΞ³Ξ³Οάφου, αντανακλΟντας πάντοτε την Ο„ΟΞχουσα κατάσταση του. ΞποΟείτε Ξ½Ξ± επεξεΟγαστείτε το σχΞδιο σας ΞΊΞ±ΞΉ Ξ½Ξ± παΟακολουθήσετε τις αντίστοιχες αλλαγΞΟ‚ στο Ξ΄ΞΞ½Ξ΄ΟΞΏ XML. ΕπιπλΞΞΏΞ½, μποΟείτε Ξ½Ξ± επεξεΟγαστείτε οποιοδήποτε ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ, στοιχείο Ξ® Ξ³Ξ½Ο‰Οίσματα ΞΊΟμβων στον επεξεΟγαστή XML ΞΊΞ±ΞΉ Ξ½Ξ± δείτε το αποτΞλεσμα στον ΞΊΞ±ΞΌΞ²Ξ¬ σας. Ξ‘Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ το Ξ¬Οιστο Ο†Ξ±Ξ½Ο„Ξ±ΟƒΟ„ΞΉΞΊΟ ΞµΟγαλείο Ξ³ΞΉΞ± διαδΟαστική μάθηση του SVG ΞΊΞ±ΞΉ σας επιτΟΞπει Ξ½Ξ± κάνετε ΞΊΟλπα που ΞΈΞ± ήταν Ξ±Ξ΄Ονατα ΞΌΞµ ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ¬ ΞµΟγαλεία επεξεΟγασίας.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="5581.069255999999" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="5581.069255999999" x="10">ΣυμπΞΟασμα</tspan> + </text> + <rect id="d0e720" display="none" height="1000px" width="288" y="5586.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e720"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα δείχνει ΞΌΟΞ½ΞΏ ΞΞ½Ξ± ΞΌΞΉΞΊΟΟ ΞΌΞΟΞΏΟ‚ των δυνατοτήτων του Inkscape. Ελπίζουμε Ξ½Ξ± το απολαΟσετε. ΞΞ·Ξ½ φοβΟσαστε Ξ½Ξ± πειΟαματιστείτε ΞΊΞ±ΞΉ Ξ½Ξ± ΞΌΞΏΞΉΟαστείτε τις δημιουΟΞ³Ξ―ΞµΟ‚ σας. Ξ Ξ±ΟΞ±ΞΊΞ±Ξ»Ο ΞµΟ€ΞΉΟƒΞΊΞµΟ†Ο„ΞµΞ―Ο„Ξµ <flowSpan font-weight="bold" font-family="Sans">www.inkscape.org</flowSpan></flowDiv> + </flowRoot> + <g transform="translate(0, 5636.3142579999985)"> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/> + <filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset64" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/> + <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/> + <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/> + <g id="g1515" filter="url(#filter56)" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,53.985559)"> + <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" fill-rule="evenodd" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + </g> + <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" fill="#000"/> + </g> + </g> +</svg> diff --git a/share/tutorials/tutorial-basic.el.svg b/share/tutorials/tutorial-basic.el.svg new file mode 100644 index 000000000..03e53be07 --- /dev/null +++ b/share/tutorials/tutorial-basic.el.svg @@ -0,0 +1,697 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. --> +<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient841"> + <stop id="stop842" stop-color="#0082ab" offset="0"/> + <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/> + <filter id="filter48" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset56" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/> + <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/> + <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/> + <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/> + <g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-3.296641)"> + <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" fill="#000"/> + </g> + <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff"> + <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::ΤΑ ΒΑΣΙΞΞ†</tspan> + </text> +<!--Author: bulia byak, buliabyak@users.sf.net--> + <rect id="d0e15" display="none" height="1000px" width="264" y="36" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e15"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα δείχνει τα βασικά της Ο‡Οήσης του Inkscape. Ξ‘Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ ΞΞ½Ξ± ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΟ ΞΞ³Ξ³Οαφο Inkscape που μποΟείτε Ξ½Ξ± δείτε, Ξ½Ξ± επεξεΟγασθείτε, Ξ½Ξ± αντιγΟΞ¬Οετε Ξ® Ξ½Ξ± αποθηκεΟσετε.</flowDiv> + </flowRoot> + <rect id="d0e18" display="none" height="1000px" width="264" y="70.87" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e18"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Ξ²Ξ±ΟƒΞΉΞΊΟ ΞΌΞ¬ΞΈΞ·ΞΌΞ± ΞΊΞ±Ξ»Οπτει πεΟιήγηση ΞΊΞ±ΞΌΞ²Ξ¬, διαχείΟιση ΞµΞ³Ξ³Οάφων, βασικά ΞµΟγαλεία σχημάτων, τεχνικΞΟ‚ επιλογής, μετασχηματισμΟΟ‚ αντικειμΞνων ΞΌΞµ επιλογΞΞ±, ομαδοποίηση, ΞΏΟισμΟΟ‚ γεμίσματος ΞΊΞ±ΞΉ πινελιάς, ΞµΟ…ΞΈΟ…Ξ³Οάμμιση ΞΊΞ±ΞΉ διάταξη-z. Για πιο Ο€ΟοχωΟΞ·ΞΌΞΞ½Ξ± ΞΈΞματα, κοιτάξτε τα άλλα μαθήματα στο ΞΌΞµΞ½ΞΏΟ Ξ²ΞΏΞ®ΞΈΞµΞΉΞ±Ο‚.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="146.14062" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="146.14062" x="10">Ξετακίνηση στον ΞΊΞ±ΞΌΞ²Ξ¬</tspan> + </text> + <rect id="d0e27" display="none" height="1000px" width="288" y="151.34" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e27"/> + </flowRegion> + <flowDiv xml:space="preserve">ΥπάΟχουν πολλοί Ο„ΟΟποι Ξ³ΞΉΞ± μετακίνηση (ΞΊΟλιση) του ΞΊΞ±ΞΌΞ²Ξ¬ του ΞµΞ³Ξ³Οάφου. Δοκιμάστε τα πλήκτΟΞ± <flowSpan font-weight="bold">Ctrl+Ξ²Ξλος</flowSpan> Ξ³ΞΉΞ± ΞΊΟλιση ΞΌΞµ το πληκτΟΞΏΞ»ΟΞ³ΞΉΞΏ. (Δοκιμάστε το Ο„ΟΟΞ± Ξ½Ξ± κυλίσετε Ξ±Ο…Ο„Ο Ο„ΞΏ ΞΞ³Ξ³Οαφο Ο€ΟΞΏΟ‚ τα κάτω). ΞποΟείτε επίσης Ξ½Ξ± ΟƒΟΟετε τον ΞΊΞ±ΞΌΞ²Ξ¬ ΞΌΞµ το μεσαίο πλήκτΟΞΏ του ποντικιοΟ. Ξ‰, μποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε τις Ξ³ΟΞ±ΞΌΞΌΞΟ‚ ΞΊΟλισης (πατήστε <flowSpan font-weight="bold">Ctrl+B</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± εμφανίσετε Ξ® Ξ½Ξ± τις αποκΟΟΟετε). Ξ <flowSpan font-weight="bold">Ο„ΟΞΏΟ‡ΟΟ‚</flowSpan> στο ποντίκι σας επίσης δουλεΟΞµΞΉ Ξ³ΞΉΞ± κατακΟΟυφη ΞΊΟλιση. Πατήστε <flowSpan font-weight="bold">Shift</flowSpan> ΞΌΞµ τον Ο„ΟΞΏΟ‡Ο Ξ½Ξ± Ξ³ΞΉΞ± ΞΏΟΞΉΞ¶Οντια ΞΊΟλιση.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="256.875251" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="256.875251" x="10">ΞΞµΞ³Ξθυνση ΞΊΞ±ΞΉ σμίκΟυνση</tspan> + </text> + <rect id="d0e48" display="none" height="1000px" width="288" y="262.08" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e48"/> + </flowRegion> + <flowDiv xml:space="preserve">Ππιο ΞµΟκολος Ο„ΟΟπος εστίασης ΞµΞ―Ξ½Ξ±ΞΉ πιΞζοντας τα πλήκτΟΞ± <flowSpan font-weight="bold">-</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">+</flowSpan> (Ξ® <flowSpan font-weight="bold">=</flowSpan>). ΞποΟείτε επίσης Ξ½Ξ± Ο‡Οησιμοποιήσετε <flowSpan font-weight="bold">Ctrl+μεσαίο κλικ</flowSpan> Ξ® <flowSpan font-weight="bold">Ctrl+δεξί κλικ</flowSpan> Ξ³ΞΉΞ± ΞΌΞµΞ³Ξθυνση, <flowSpan font-weight="bold">Shift+μεσαίο κλικ</flowSpan> or <flowSpan font-weight="bold">Shift+δεξί κλικ</flowSpan> Ξ³ΞΉΞ± σμίκΟυνση, Ξ® πεΟιστΟοφή του Ο„ΟΞΏΟ‡ΞΏΟ Ο€ΞΏΞ½Ο„ΞΉΞΊΞΉΞΏΟ ΞΌΞµ <flowSpan font-weight="bold">Ctrl</flowSpan>. Ξ‰, μποΟείτε Ξ½Ξ± πατήσετε στο πεδίο ΞµΞΉΟƒΟδου εστίασης (στην κάτω δεξιά γωνία του παΟΞ±ΞΈΟΟΞΏΟ… ΞµΞ³Ξ³Οάφου), Ξ½Ξ± πληκτΟολογήσετε ΞΌΞΉΞ± τιμή εστίασης σε % ΞΊΞ±ΞΉ Ξ½Ξ± πατήσετε Enter. ΥπάΟχει επίσης το ΞµΟγαλείο εστίασης (στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων στα Ξ±ΟιστεΟΞ¬) που σας επιτΟΞπει Ξ½Ξ± εστιάσετε σε ΞΌΞΉΞ± πεΟιοχή ΟƒΟΟοντας Ξ³ΟΟΟ‰ της.</flowDiv> + </flowRoot> + <rect id="d0e75" display="none" height="1000px" width="288" y="365.43" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e75"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape επίσης ΞΊΟατά ιστοΟΞΉΞΊΟ Ο„Ο‰Ξ½ σταθμΟΞ½ εστίασης που Ο‡Οησιμοποιήσατε στη ΟƒΟνοδο αυτής της ΞµΟγασίας. Πατήστε το πλήκτΟΞΏ <flowSpan font-weight="bold">`</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± επιστΟΞΟετε στην Ο€ΟΞΏΞ·Ξ³ΞΏΟΞΌΞµΞ½Ξ· εστίαση, Ξ® <flowSpan font-weight="bold">Shift+`</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± Ο€ΟοχωΟήσετε.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="428.34566" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="428.34566" x="10">Ξ•Ογαλεία Inkscape</tspan> + </text> + <rect id="d0e90" display="none" height="1000px" width="288" y="433.55" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e90"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— κάθετη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων στα Ξ±ΟιστεΟΞ¬ εμφανίζει τα σχεδιαστικά ΞΊΞ±ΞΉ επεξεΟγαστικά ΞµΟγαλεία του Inkscape. Στο πάνω ΞΌΞΟΞΏΟ‚ του παΟΞ±ΞΈΟΟΞΏΟ…, κάτω Ξ±Ο€Ο Ο„ΞΏ ΞΌΞµΞ½ΞΏΟ, υπάΟχει Ξ· <flowSpan font-style="italic">Ξ³ΟΞ±ΞΌΞΌΞ® εντολΟΞ½</flowSpan> ΞΌΞµ κουμπιά Ξ³ΞµΞ½ΞΉΞΊΟΞ½ εντολΟΞ½ ΞΊΞ±ΞΉ Ξ· <flowSpan font-style="italic">Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΞ»Ξγχων ΞµΟγαλείου</flowSpan> ΞΌΞµ ΞµΞ»Ξγχους που ΞµΞ―Ξ½Ξ±ΞΉ ειδικοί Ξ³ΞΉΞ± κάθε ΞµΟγαλείο. Ξ— <flowSpan font-style="italic">Ξ³ΟΞ±ΞΌΞΌΞ® κατάστασης</flowSpan> στον πυθμΞΞ½Ξ± του παΟΞ±ΞΈΟΟΞΏΟ… εμφανίζει Ο‡Οήσιμες υποδείξεις ΞΊΞ±ΞΉ ΞΌΞ·Ξ½Οματα ΞΊΞ±ΞΈΟΟ‚ ΞµΟγάζεσθε.</flowDiv> + </flowRoot> + <rect id="d0e102" display="none" height="1000px" width="288" y="515.46" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e102"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠολλΞΟ‚ λειτουΟΞ³Ξ―ΞµΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ διαθΞσιμες ΞΌΞσω συντομεΟσεων πληκτΟολογίου. Ανοίξτε Βοήθεια > ΑναφοΟΞ¬ πλήκτΟων ΞΊΞ±ΞΉ Ο€ΞΏΞ½Ο„ΞΉΞΊΞΉΞΏΟ Ξ³ΞΉΞ± Ξ½Ξ± δείτε την πλήΟΞ· αναφοΟΞ¬.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="567.606949" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="567.606949" x="10">ΔημιουΟΞ³Ξ―Ξ± ΞΊΞ±ΞΉ διαχείΟιση ΞµΞ³Ξ³Οάφων</tspan> + </text> + <rect id="d0e111" display="none" height="1000px" width="288" y="572.81" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e111"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± δημιουΟγήσετε ΞΞ½Ξ± Ξ½ΞΞΏ άδειο ΞΞ³Ξ³Οαφο, Ο‡Οησιμοποιήστε <flowSpan font-family="Sans">File > ΞΞΞΏ</flowSpan> Ξ® πατήστε <flowSpan font-weight="bold">Ctrl+N</flowSpan>. Για Ξ½Ξ± ανοίξετε ΞΞ½Ξ± υπάΟχον ΞΞ³Ξ³Οαφο SVG, Ο‡Οησιμοποιήστε <flowSpan font-family="Sans">Ξ‘Οχείο > Άνοιγμα</flowSpan> (<flowSpan font-weight="bold">Ctrl+O</flowSpan>). Για Ξ½Ξ± αποθηκεΟσετε, Ο‡Οησιμοποιήστε <flowSpan font-family="Sans">Ξ‘Οχείο > Αποθήκευση</flowSpan> (<flowSpan font-weight="bold">Ctrl+S</flowSpan>) Ξ® <flowSpan font-family="Sans">Αποθήκευση ως</flowSpan> (<flowSpan font-weight="bold">Shift+Ctrl+S</flowSpan>) Ξ³ΞΉΞ± Ξ½Ξ± αποθηκεΟσετε ΞΌΞµ Ξ½ΞΞΏ ΟΞ½ΞΏΞΌΞ±. (Το Inkscape ίσως Ξ±ΞΊΟΞΌΞ± Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ ασταθΞΟ‚, Ξτσι Ξ½Ξ± ΞΈΟ…ΞΌΟσαστε Ξ½Ξ± αποθηκεΟετε συχνά!)</flowDiv> + </flowRoot> + <rect id="d0e138" display="none" height="1000px" width="288" y="654.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e138"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape Ο‡Οησιμοποιεί τη ΞΌΞΏΟφή SVG (Scalable Vector Graphics) Ξ³ΞΉΞ± τα Ξ±Οχεία του. SVG ΞµΞ―Ξ½Ξ±ΞΉ ΞΞ½Ξ± Ξ±Ξ½ΞΏΞΉΞΊΟ„Ο Ο€ΟΟτυπο πλατιά υποστηΟΞΉΞ¶ΟΞΌΞµΞ½ΞΏ Ξ±Ο€Ο Ξ»ΞΏΞ³ΞΉΟƒΞΌΞΉΞΊΟ Ξ³ΟαφικΟΞ½. Τα Ξ±Οχεία SVG βασίζονται σε XML ΞΊΞ±ΞΉ μποΟΞΏΟΞ½ Ξ½Ξ± επεξεΟγαστοΟΞ½ ΞΌΞµ οποιοδήποτε επεξεΟγαστή ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… Ξ® XML (Ο€ΞΟΞ± Ξ±Ο€Ο Ο„ΞΏ Inkscape). ΕκτΟΟ‚ Ξ±Ο€Ο SVG, το Inkscape μποΟΞµΞ― Ξ½Ξ± εισάγει ΞΊΞ±ΞΉ Ξ½Ξ± εξάγει πολλΞΟ‚ άλλες ΞΌΞΏΟΟ†ΞΟ‚ (EPS, PNG).</flowDiv> + </flowRoot> + <rect id="d0e141" display="none" height="1000px" width="288" y="726.17" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e141"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape Ξ±Ξ½ΞΏΞ―Ξ³ΞµΞΉ ΞΞ½Ξ± ξεχωΟΞΉΟƒΟ„Ο Ο€Ξ±ΟάθυΟΞΏ ΞµΞ³Ξ³Οάφου Ξ³ΞΉΞ± κάθε ΞΞ³Ξ³Οαφο. ΞποΟείτε Ξ½Ξ± πεΟιηγηθείτε ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚ Ο‡ΟησιμοποιΟντας το διαχειΟιστή παΟΞ±ΞΈΟΟΞΏΟ… σας (Ο€.Ο‡. ΞΌΞµ <flowSpan font-weight="bold">Alt+Tab</flowSpan>) Ξ® μποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε τη συντΟμευση του Inkscape, <flowSpan font-weight="bold">Ctrl+Tab</flowSpan>, που κάνει ΞΊΟκλο ΞΌΞµΟ„Ξ±ΞΎΟ Ολων των Ξ±Ξ½ΞΏΞΉΞΊΟ„ΟΞ½ παΟΞ±ΞΈΟΟων ΞµΞ³Ξ³Οάφου. (ΔημιουΟγήστε ΞΞ½Ξ± Ξ½ΞΞΏ ΞΞ³Ξ³Οαφο Ο„ΟΟΞ± ΞΊΞ±ΞΉ εναλλάξτε ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ… ΞΊΞ±ΞΉ Ξ±Ο…Ο„ΞΏΟ Ο„ΞΏΟ… ΞµΞ³Ξ³Οάφου Ξ³ΞΉΞ± εξάσκηση.) Σημείωση: Το Inkscape αντιμετωπίζει αυτά τα παΟάθυΟΞ± ως ΞΊΞ±ΟΟ„Ξλες σε πεΟιηγητή ιστοΟ, Ξ±Ο…Ο„Ο ΟƒΞ·ΞΌΞ±Ξ―Ξ½ΞµΞΉ Οτι Ξ· συντΟμευση <flowSpan font-weight="bold">Ctrl+Tab</flowSpan> δουλεΟΞµΞΉ ΞΌΟΞ½ΞΏ ΞΌΞµ ΞΞ³Ξ³Οαφα που Ο„ΟΞχουν την ίδια διεΟγασία. Αν ανοίξετε πολλαπλά Ξ±Οχεία Ξ±Ο€Ο ΞΞ½Ξ± Ξ±Οχείο πεΟιηγητή Ξ® εκκινήσετε πεΟισσΟτεΟΞµΟ‚ Ξ±Ο€Ο ΞΌΞ―Ξ± διεΟγασίες σε ΞΌΞΉΞ± ΞµΞΉΞΊΟΞ½Ξ± στο Inkscape δεν ΞΈΞ± δουλΞΟΞµΞΉ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="874.133861" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="874.133861" x="10">ΔημιουΟΞ³Ξ―Ξ± σχημάτων</tspan> + </text> + <rect id="d0e159" display="none" height="1000px" width="288" y="879.33" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e159"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΟΞ± Ξ³ΞΉΞ± ΞΌΞµΟΞΉΞΊΞ¬ ΟΞΌΞΏΟφα σχήματα! Ξλικ στο ΞµΟγαλείο ΞΏΟθογωνίου στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων (Ξ® πιΞστε <flowSpan font-weight="bold">F4</flowSpan>) ΞΊΞ±ΞΉ κλικ ΞΊΞ±ΞΉ ΟƒΟΟσιμο, είτε σε ΞΞ½Ξ± Ξ½ΞΞΏ ΞΊΞµΞ½Ο ΞΞ³Ξ³Οαφο Ξ® Ξ±ΞΊΟΞΉΞ²ΟΟ‚ ΞµΞ΄Ο:</flowDiv> + </flowRoot> + <rect id="basic-f01-el.svgrect824" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="21.106" width="19.394" stroke="#000" y="11.835" x="8.2426" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect825" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="15.972" width="23.387" stroke="#000" y="7.2717" x="37.905" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect826" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="48.486" width="71.303" stroke="#000" y="0.99707" x="69.848" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect827" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="22.247" width="55.331" stroke="#000" y="2.7083" x="108.64" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect828" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="25.099" width="39.93" stroke="#000" y="15.828" x="122.33" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect829" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="24.528" width="35.366" stroke="#000" y="23.814" x="152.56" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect830" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="28.521" width="31.944" stroke="#000" y="4.4196" x="176.52" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <rect id="basic-f01-el.svgrect742" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="3.5282" width="8.8205" stroke="#000" y="41.053" x="213.39" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#00F"/> + <rect id="basic-f01-el.svgrect743" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="4.1162" width="7.0564" stroke="#000" y="28.116" x="232.79" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#00F"/> + <rect id="basic-f01-el.svgrect744" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="1.7641" width="4.1162" stroke="#000" y="20.472" x="247.49" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#00F"/> + <rect id="basic-f01-el.svgrect745" fill-rule="evenodd" transform="translate(10, 926.7042180000001) " height="1.1761" width="2.9402" stroke="#000" y="17.532" x="259.25" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#00F"/> + <rect id="d0e175" display="none" height="1000px" width="288" y="988.44" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e175"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξπως μποΟείτε Ξ½Ξ± δείτε, τα Ο€ΟοεπιλεγμΞΞ½Ξ± ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ± γίνονται μπλε, ΞΌΞµ ΞΌΞΉΞ± ΞΌΞ±ΟΟΞ· <flowSpan font-style="italic">πινελιά</flowSpan> (πεΟΞ―Ξ³ΟΞ±ΞΌΞΌΞ±) ΞΊΞ±ΞΉ πλήΟως αδιαφανή. ΞΞ± δοΟΞΌΞµ Ο€ΟΟ‚ αλλάζουμε Ξ±Ο…Ο„Ο Ο€Ξ±Οακάτω. ΞΞµ άλλα ΞµΟγαλεία, μποΟείτε επίσης Ξ½Ξ± δημιουΟγήσετε ελλείΟΞµΞΉΟ‚, αστΞΟΞΉΞ± ΞΊΞ±ΞΉ σπείΟΞµΟ‚ (ελικοειδή):</flowDiv> + </flowRoot> + <path id="basic-f02-el.svgpath750" sodipodi:rx="9.7025042" sodipodi:ry="3.8221989" sodipodi:type="arc" d="M27.637,659.92a9.7025,3.8222,0,1,1,-19.405,0,9.7025,3.8222,0,1,1,19.405,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="659.92175" sodipodi:cx="17.934933" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath751" sodipodi:rx="5.2922754" sodipodi:ry="14.406750" sodipodi:type="arc" d="M31.166,681.68a5.2923,14.407,0,1,1,-10.585,0,5.2923,14.407,0,1,1,10.585,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="681.67889" sodipodi:cx="25.873346" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath752" sodipodi:rx="9.9965200" sodipodi:ry="9.1144743" sodipodi:type="arc" d="M51.159,663.45a9.9965,9.1145,0,1,1,-19.993,0,9.9965,9.1145,0,1,1,19.993,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="663.44995" sodipodi:cx="41.162140" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath753" sodipodi:rx="15.288795" sodipodi:ry="6.1743212" sodipodi:type="arc" d="M69.388,694.62a15.289,6.1743,0,1,1,-30.578,0,15.289,6.1743,0,1,1,30.578,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="694.61554" sodipodi:cx="54.098812" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath754" sodipodi:rx="16.464857" sodipodi:ry="15.582810" sodipodi:type="arc" d="M73.504,671.09a16.465,15.583,0,1,1,-32.93,0,16.465,15.583,0,1,1,32.93,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="671.09436" sodipodi:cx="57.038967" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath755" sodipodi:rx="9.9965200" sodipodi:ry="4.4102292" sodipodi:type="arc" d="M90.557,672.86a9.9965,4.4102,0,1,1,-19.993,0,9.9965,4.4102,0,1,1,19.993,0z" fill-rule="evenodd" fill-opacity="0.75000000" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:cy="672.85840" sodipodi:cx="80.560188" stroke-width="1.0000000pt" fill="#F00"/> + <path id="basic-f02-el.svgpath762" sodipodi:revolution="3.0000000" sodipodi:type="spiral" d="M178.76,683.15c0.68,0.38-0.18,1.1-0.64,1.13-1.23,0.06-1.83-1.37-1.61-2.41,0.38-1.84,2.49-2.63,4.16-2.1,2.45,0.77,3.45,3.63,2.6,5.93-1.14,3.05-4.78,4.27-7.69,3.08-3.67-1.49-5.11-5.92-3.58-9.45,1.85-4.28,7.07-5.94,11.22-4.07,4.89,2.2,6.77,8.22,4.56,12.99-2.56,5.49-9.37,7.6-14.75,5.04-6.11-2.9-8.44-10.52-5.54-16.51,3.26-6.73,11.67-9.28,18.28-6.03,7.34,3.61,10.11,12.82,6.52,20.04" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:argument="-18.335104" sodipodi:cy="683.14899" sodipodi:cx="178.76129" sodipodi:t0="0.0000000" sodipodi:radius="15.535585" stroke-width="1.0000000pt" sodipodi:expansion="1.0000000" fill="none"/> + <path id="basic-f02-el.svgpath763" sodipodi:revolution="3.0000000" sodipodi:type="spiral" d="M205.81,671.39c-0.68-0.5,0.34-1.16,0.83-1.13,1.34,0.09,1.79,1.72,1.42,2.79-0.65,1.93-3.03,2.5-4.75,1.72-2.53-1.15-3.23-4.36-2.01-6.71,1.63-3.14,5.7-3.97,8.68-2.31,3.74,2.09,4.7,7.04,2.59,10.64-2.55,4.35-8.38,5.44-12.59,2.89-4.96-3.02-6.19-9.73-3.19-14.56,3.48-5.57,11.08-6.93,16.52-3.48,6.18,3.93,7.68,12.42,3.77,18.48-4.38,6.8-13.76,8.43-20.43,4.07-7.41-4.84-9.18-15.11-4.36-22.4" transform="translate(10, 1046.43091) translate(2.775740,-646.0745)" stroke="#000" sodipodi:argument="-21.354641" sodipodi:cy="671.38837" sodipodi:cx="205.81070" sodipodi:t0="0.0000000" sodipodi:radius="16.818087" stroke-width="1.0000000pt" sodipodi:expansion="1.0000000" fill="none"/> + <path id="basic-f02-el.svgpath764" sodipodi:revolution="3.0000000" sodipodi:type="spiral" d="M245.21,663.16c-1.74,0.26-1.22-2.22-0.44-2.9,2.1-1.83,5.17-0.12,6.22,2.01,1.89,3.82-0.76,8.17-4.46,9.56-5.42,2.04-11.2-1.65-12.89-6.91-2.24-7.02,2.53-14.27,9.36-16.22,8.6-2.45,17.35,3.4,19.56,11.81,2.67,10.18-4.29,20.42-14.26,22.88-11.76,2.91-23.51-5.15-26.22-16.71-3.13-13.33,6.03-26.58,19.16-29.54,14.91-3.37,29.67,6.91,32.88,21.61,3.6,16.49-7.79,32.75-24.06,36.21-18.07,3.83-35.85-8.66-39.55-26.51" transform="translate(10, 1046.43091) translate(2.775740,-631.9013)" stroke="#000" sodipodi:argument="-15.859339" sodipodi:cy="663.15594" sodipodi:cx="245.20876" sodipodi:t0="0.0000000" sodipodi:radius="35.095131" stroke-width="1.0000000pt" sodipodi:expansion="1.0000000" fill="none"/> + <path id="basic-f02-el.svgpath776" sodipodi:revolution="3.0000000" sodipodi:type="spiral" d="M216.98,669.62c0.59,0.33-0.14,0.96-0.54,0.98-1.06,0.07-1.59-1.16-1.42-2.05,0.32-1.6,2.13-2.3,3.58-1.87,2.12,0.65,3.02,3.11,2.3,5.1-0.95,2.65-4.08,3.74-6.61,2.74-3.18-1.25-4.47-5.06-3.19-8.13,1.56-3.71,6.05-5.2,9.66-3.63,4.24,1.86,5.93,7.04,4.06,11.18-2.15,4.77-8.02,6.66-12.69,4.5-5.31-2.44-7.39-9-4.95-14.21,2.75-5.84,9.99-8.13,15.73-5.39,6.38,3.04,8.86,10.98,5.83,17.25" transform="translate(10, 1046.43091) translate(2.775740,-653.1611)" stroke="#000" sodipodi:argument="-18.346712" sodipodi:cy="669.62427" sodipodi:cx="216.98329" sodipodi:t0="0.0000000" sodipodi:radius="13.422048" stroke-width="1.0000000pt" sodipodi:expansion="1.0000000" fill="none"/> + <path id="basic-f02-el.svgpath1306" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="22.511335" sodipodi:r2="11.255667" sodipodi:arg1="0.72927738" sodipodi:arg2="1.3575959" sodipodi:type="star" d="M103.57,87.362l-14.403-3.999-11.46,9.599-0.648-14.935-12.67-7.934,14.004-5.231,3.63-14.501,9.302,11.701,14.915-1.029-8.256,12.464,5.586,13.865z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="72.362183" sodipodi:cx="86.785713"/> + <path id="basic-f02-el.svgpath1308" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="18.533615" sodipodi:r2="9.2668076" sodipodi:arg1="1.1330050" sodipodi:arg2="1.7613236" sodipodi:type="star" d="M109.29,85.934l-9.616-7.687-11.782,3.561,4.34-11.517-7.026-10.105,12.294,0.569,7.44-9.805,3.26,11.868,11.62,4.044-10.28,6.767-0.25,12.305z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="69.147896" sodipodi:cx="101.42857"/> + <path id="basic-f02-el.svgpath1310" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="15.653291" sodipodi:r2="7.8266454" sodipodi:arg1="0.60698766" sodipodi:arg2="1.2353062" sodipodi:type="star" d="M127.14,79.862l-10.28-1.538-7.09,7.597-1.72-10.253-9.414-4.401,9.224-4.798,1.27-10.316,7.41,7.287,10.21-1.975-4.64,9.302,5.03,9.095z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="70.933609" sodipodi:cx="114.28571"/> + <path id="basic-f02-el.svgpath1312" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="16.043627" sodipodi:r2="8.0218134" sodipodi:arg1="0.29358899" sodipodi:arg2="0.92190752" sodipodi:type="star" d="M144.64,71.291l-10.51,1.748-4.51,9.649-4.91-9.455-10.58-1.315,7.48-7.592-2.02-10.461,9.53,4.763,9.33-5.151-1.59,10.536,7.78,7.278z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="66.647896" sodipodi:cx="129.28571"/> + <path id="basic-f02-el.svgpath1314" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="7.9859571" sodipodi:r2="3.9929783" sodipodi:arg1="0.46364761" sodipodi:arg2="1.0919661" sodipodi:type="star" d="M162.5,66.648l-5.3-0.028-3.03,4.353-1.61-5.052-5.08-1.535,4.31-3.095-0.11-5.302,4.27,3.139,5.01-1.741-1.66,5.035,3.2,4.226z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="63.076466" sodipodi:cx="155.35715"/> + <path id="basic-f02-el.svgpath1316" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75000000" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="#FF0" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:none;marker-mid:none;" fill-rule="evenodd" transform="translate(10, 1046.43091) translate(16.42857,-45.00000)" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000" sodipodi:r1="5.8138647" sodipodi:r2="2.9069321" sodipodi:arg1="0.74194727" sodipodi:arg2="1.3702658" sodipodi:type="star" d="M180,69.505l-3.71-1.08-2.99,2.441-0.12-3.859-3.24-2.09,3.63-1.305,0.99-3.733,2.36,3.052,3.85-0.216-2.17,3.191,1.4,3.599z" stroke-dashoffset="0.0000000" inkscape:randomized="0.0000000" sodipodi:cy="65.576469" sodipodi:cx="175.71429"/> + <rect id="d0e191" display="none" height="1000px" width="288" y="1118.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e191"/> + </flowRegion> + <flowDiv xml:space="preserve">Αυτά τα ΞµΟγαλεία ΞµΞ―Ξ½Ξ±ΞΉ συλλογικά γνωστά ως <flowSpan font-style="italic">ΞµΟγαλεία σχήματος</flowSpan>. Ξάθε σχήμα που δημιουΟγείτε εμφανίζει ΞΌΞ―Ξ± Ξ® πεΟισσΟτεΟΞµΟ‚ <flowSpan font-style="italic">λαβΞΟ‚</flowSpan> σε σχήμα διαμαντιοΟ. Δοκιμάστε Ξ½Ξ± τις ΟƒΟΟετε Ξ³ΞΉΞ± Ξ½Ξ± δείτε την ανταπΟΞΊΟιση των σχημάτων. Το φατνίο ΞµΞ»Ξγχων Ξ³ΞΉΞ± το ΞµΟγαλείο σχήματος ΞµΞ―Ξ½Ξ±ΞΉ ΞΞ½Ξ±Ο‚ άλλος Ο„ΟΟπος Ξ³ΞΉΞ± ΟΟθμιση του σχήματος. Αυτοί ΞΏΞΉ Ξλεγχοι επηΟεάζουν τα Ο„ΟΞχοντα επιλεγμΞΞ½Ξ± σχήματα (δηλαδή αυτά που εμφανίζουν τις λαβΞΟ‚) <flowSpan font-style="italic">ΞΊΞ±ΞΉ</flowSpan> ΞΏΟίστε το Ο€ΟοεπιλεγμΞΞ½ΞΏ που ΞΈΞ± εφαΟμοστεί στα νεοδημιουΟΞ³ΞΏΟΞΌΞµΞ½Ξ± σχήματα.</flowDiv> + </flowRoot> + <rect id="d0e203" display="none" height="1000px" width="288" y="1211.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e203"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± <flowSpan font-style="italic">Ξ±Ξ½Ξ±ΞΉΟΞσετε</flowSpan> την τελευταία σας Ο€Οάξη, πατήστε <flowSpan font-weight="bold">Ctrl+Z</flowSpan>. (Ξ‰, εάν αλλάξετε Ξ³Ξ½ΟΞΌΞ· ΞΎΞ±Ξ½Ξ¬, μποΟείτε Ξ½Ξ± <flowSpan font-style="italic">επανεκτελΞσετε</flowSpan> την ΞµΞ½ΞΟΞ³ΞµΞΉΞ± της Ξ±ΞΊΟΟωσης ΞΌΞµ <flowSpan font-weight="bold">Shift+Ctrl+Z</flowSpan>.)</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1263.722969" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1263.722969" x="10">Ξετακίνηση, κλιμάκωση, πεΟιστΟοφή</tspan> + </text> + <rect id="d0e224" display="none" height="1000px" width="288" y="1268.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e224"/> + </flowRegion> + <flowDiv xml:space="preserve">Το πιο συχνά Ο‡ΟησιμοποιοΟΞΌΞµΞ½ΞΏ ΞµΟγαλείο του Inkscape ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ <flowSpan font-style="italic">ΕπιλογΞΞ±Ο‚</flowSpan>. Ξλικ στο πιο πάνω κουμπί (ΞΌΞµ το Ξ²Ξλος) στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων, Ξ® πατήστε <flowSpan font-weight="bold">F1</flowSpan> Ξ® <flowSpan font-weight="bold">διάστημα</flowSpan>. Ξ¤ΟΟΞ± μποΟείτε Ξ½Ξ± επιλΞξετε κάθε αντικείμενο στον ΞΊΞ±ΞΌΞ²Ξ¬. Πατήστε στο πιο κάτω ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ.</flowDiv> + </flowRoot> + <rect id="basic-f03-el.svgrect804" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1326.9333259999999) " height="38.81" width="40.574" stroke="#000" y="-0.4714" x="25.427" stroke-width="1pt" fill="#00F"/> + <rect id="d0e246" display="none" height="1000px" width="288" y="1379" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e246"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ± δείτε ΞΏΞΊΟ„Ο Ξ»Ξ±Ξ²ΞΟ‚ σε σχήμα Ξ²Ξλους Ξ½Ξ± εμφανίζονται Ξ³ΟΟΟ‰ Ξ±Ο€Ο Ο„ΞΏ αντικείμενο. Ξ¤ΟΟΞ± μποΟείτε:</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 1413.695843)"/> + <rect id="d0e253" display="none" height="1000px" width="258" y="1407.7" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e253"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ½Ξ± <flowSpan font-style="italic">μετακινήσετε</flowSpan> το αντικείμενο ΟƒΟΟοντας το. (Πατήστε <flowSpan font-weight="bold">Ctrl</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± πεΟΞΉΞΏΟίσετε την κίνηση ΞΏΟΞΉΞ¶Οντια Ξ® κάθετα.)</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 1442.406488)"/> + <rect id="d0e265" display="none" height="1000px" width="258" y="1436.4" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e265"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ½Ξ± <flowSpan font-style="italic">κλιμακΟσετε</flowSpan> το αντικείμενο ΟƒΟΟοντας κάθε λαβή. (Πατήστε <flowSpan font-weight="bold">Ctrl</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± διατηΟήσετε την Ξ±Οχική αναλογία ΟΟΞΏΟ…Ο‚/πλάτους.) </flowDiv> + </flowRoot> + <rect id="d0e275" display="none" height="1000px" width="288" y="1475.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e275"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ¤ΟΟΞ± πατήστε στο ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ ΞΎΞ±Ξ½Ξ¬. ΞΞΉ λαβΞΟ‚ αλλάζουν. Ξ¤ΟΟΞ± μποΟείτε:</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 1510.4751070000002)"/> + <rect id="d0e282" display="none" height="1000px" width="258" y="1504.5" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e282"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ½Ξ± <flowSpan font-style="italic">πεΟιστΟΞΟετε</flowSpan> το αντικείμενο ΟƒΟΟοντας τις γωνιακΞΟ‚ λαβΞΟ‚. (Πατήστε <flowSpan font-weight="bold">Ctrl</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± πεΟΞΉΞΏΟίσετε την πεΟιστΟοφή σε βήματα 15 ΞΌΞΏΞΉΟΟΞ½. Ξ£ΟΟτε το σημάδι του σταυΟΞΏΟ Ξ³ΞΉΞ± Ξ½Ξ± τοποθετήσετε το ΞΊΞΞ½Ο„ΟΞΏ της πεΟιστΟοφής.)</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 1560.481226)"/> + <rect id="d0e294" display="none" height="1000px" width="258" y="1554.5" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e294"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ½Ξ± <flowSpan font-style="italic">στΟΞµΞ²Ξ»Οσετε</flowSpan> το αντικείμενο ΟƒΟΟοντας ΞΌΞ· γωνιακΞΟ‚ λαβΞΟ‚. (Πατήστε <flowSpan font-weight="bold">Ctrl</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± πεΟΞΉΞΏΟίσετε τη στΟΞβλωση σε βήματα 15 ΞΌΞΏΞΉΟΟΞ½.)</flowDiv> + </flowRoot> + <rect id="d0e304" display="none" height="1000px" width="288" y="1593.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e304"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ•Ξ½Ο ΞµΞ―ΟƒΞ±ΟƒΟ„Ξµ στον επιλογΞΞ±, μποΟείτε επίσης Ξ½Ξ± Ο‡Οησιμοποιήσετε τα Ξ±Οιθμητικά πεδία ΞµΞΉΟƒΟδου στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΞ»Ξγχων (πάνω Ξ±Ο€Ο Ο„ΞΏΞ½ ΞΊΞ±ΞΌΞ²Ξ¬) Ξ³ΞΉΞ± Ξ½Ξ± ΞΏΟίσετε Ξ±ΞΊΟΞΉΞ²ΞµΞ―Ο‚ τιμΞΟ‚ Ξ³ΞΉΞ± συντεταγμΞΞ½ΞµΟ‚ (X ΞΊΞ±ΞΉ Y) ΞΊΞ±ΞΉ ΞΌΞµΞ³ΞΞΈΞ· (πλάτος ΞΊΞ±ΞΉ ΟΟΞΏΟ‚) της επιλογής.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1656.6340850000001" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1656.6340850000001" x="10">ΞετασχηματισμΟΟ‚ ΞΌΞµ πλήκτΟΞ±</tspan> + </text> + <rect id="d0e313" display="none" height="1000px" width="288" y="1661.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e313"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ± Ξ±Ο€Ο Ο„Ξ± χαΟακτηΟιστικά του Inkscape που το ξεχωΟΞ―Ξ¶ΞΏΟ…Ξ½ Ξ±Ο€Ο Ο„ΞΏΟ…Ο‚ άλλους επεξεΟγαστΞΟ‚ διανυσμάτων ΞµΞ―Ξ½Ξ±ΞΉ Ξ· Ξμφαση του στην Ο€ΟοσβασιμΟτητα του πληκτΟολογίου. Δεν υπάΟχει Ο€Οακτικά ΞΊΞ±ΞΌΞ―Ξ± εντολή Ξ® ΞµΞ½ΞΟΞ³ΞµΞΉΞ± που ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Ξ΄Ονατο Ξ½Ξ± Ξ³Ξ―Ξ½ΞµΞΉ Ξ±Ο€Ο Ο„ΞΏ πληκτΟΞΏΞ»ΟΞ³ΞΉΞΏ ΞΊΞ±ΞΉ ΞΏ μετασχηματισμΟΟ‚ αντικειμΞνων δεν ΞµΞ―Ξ½Ξ±ΞΉ ΞµΞΎΞ±Ξ―Οεση.</flowDiv> + </flowRoot> + <rect id="d0e316" display="none" height="1000px" width="288" y="1722.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e316"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε το πληκτΟΞΏΞ»ΟΞ³ΞΉΞΏ Ξ³ΞΉΞ± Ξ½Ξ± μετακινήσετε (πλήκτΟΞ± <flowSpan font-weight="bold">Ξ²ΞµΞ»ΟΞ½</flowSpan>), Ξ½Ξ± κλιμακΟσετε (πλήκτΟΞ± <flowSpan font-weight="bold"><</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">></flowSpan>) ΞΊΞ±ΞΉ Ξ½Ξ± πεΟιστΟΞΟετε (πλήκτΟΞ± <flowSpan font-weight="bold">[</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">]</flowSpan>) αντικείμενα. ΞΞΉ Ο€ΟοεπιλεγμΞΞ½ΞµΟ‚ μετακινήσεις ΞΊΞ±ΞΉ κλιμακΟσεις ΞµΞ―Ξ½Ξ±ΞΉ κατά 2 εικονοστοιχεία, ΞΌΞµ το <flowSpan font-weight="bold">Shift</flowSpan>, μετακινείτε κατά το δεκαπλάσιο του. <flowSpan font-weight="bold">Ctrl+></flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Ctrl+<</flowSpan> αυξάνουν Ξ® ΞΌΞµΞΉΟΞ½ΞΏΟ…Ξ½ στο 200% Ξ® 50% του Ξ±ΟχικοΟ, αντίστοιχα. ΞΞΉ Ο€ΟοεπιλεγμΞΞ½ΞµΟ‚ πεΟιστΟΞΏΟ†ΞΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ κατά 15 ΞΌΞΏΞ―ΟΞµΟ‚. ΞΞµ <flowSpan font-weight="bold">Ctrl</flowSpan> πεΟιστΟΞφετε κατά 90 ΞΌΞΏΞ―ΟΞµΟ‚.</flowDiv> + </flowRoot> + <rect id="d0e346" display="none" height="1000px" width="288" y="1815.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e346"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξμως, ίσως το πιο Ο‡Οήσιμο ΞµΞ―Ξ½Ξ±ΞΉ <flowSpan font-style="italic">μετασχηματισμοί ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ εικονοστοιχείου</flowSpan>, καλοΟΞΌΞµΞ½ΞµΟ‚ ΞΌΞµ τη Ο‡Οήση <flowSpan font-weight="bold">Alt</flowSpan> ΞΌΞµ τα πλήκτΟΞ± μετασχηματισμοΟ. Ξ .Ο‡., <flowSpan font-weight="bold">Alt+Ξ²Ξλη</flowSpan> ΞΈΞ± μετακινήσουν την επιλογή κατά 1 εικονοστοιχείο <flowSpan font-style="italic">στην Ο„ΟΞχουσα εστίαση</flowSpan> (δηλαδή κατά 1 <flowSpan font-style="italic">εικονοστοιχείο ΞΏΞΈΟΞ½Ξ·Ο‚</flowSpan>, που δεν Ο€ΟΞπει Ξ½Ξ± συγχΞεται ΞΌΞµ τη μονάδα px (εικονοστοιχείο) που ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± μονάδα μήκους SVG Ξ±Ξ½ΞµΞΎΞ¬Οτητη Ξ±Ο€Ο Ο„Ξ·Ξ½ εστίαση). Ξ‘Ο…Ο„Ο ΟƒΞ·ΞΌΞ±Ξ―Ξ½ΞµΞΉ Οτι εάν ΞΌΞµΞ³ΞµΞΈΟνετε, ΞΞ½Ξ± <flowSpan font-weight="bold">Alt+Ξ²Ξλος</flowSpan> ΞΈΞ± καταλήξει σε ΞΌΞΉΞ± <flowSpan font-style="italic">ΞΌΞΉΞΊΟΟτεΟΞ·</flowSpan> Ξ±Ο€Ολυτη κίνηση που ΞΈΞ± φαίνεται Ξ±ΞΊΟΞΌΞ± ως Οθηση ΞµΞ½ΟΟ‚ εικονοστοιχείου στην ΞΏΞΈΟΞ½Ξ· σας. Είναι Ξτσι δυνατΟΞ½ Ξ½Ξ± τοποθετήσετε αντικείμενα ΞΌΞµ ελεΟΞΈΞµΟΞ· Ξ±ΞΊΟΞ―Ξ²ΞµΞΉΞ± απλά ΞΌΞµ ΞΌΞµΞ³Ξθυνση Ξ® σμίκΟυνση Οπως Ο‡Οειάζεται.</flowDiv> + </flowRoot> + <rect id="d0e370" display="none" height="1000px" width="288" y="1939.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e370"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ Ξ±ΟΟΞΌΞΏΞΉΞ±, <flowSpan font-weight="bold">Alt+></flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Alt+<</flowSpan> κλιμακΟΞ½ΞΏΟ…Ξ½ την επιλογή Ξτσι Οστε ΞΏΞΉ ΞΏΟΞ±Ο„ΞΟ‚ αλλαγΞΟ‚ ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ της κατά ΞΞ½Ξ± εικονοστοιχείο ΞΏΞΈΟΞ½Ξ·Ο‚ ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Alt+[</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Alt+]</flowSpan> Ξ½Ξ± την πεΟιστΟΞφουν Ξτσι Οστε το πιο απομακΟυσμΞΞ½ΞΏ Ξ±Ο€Ο Ο„ΞΏ ΞΊΞΞ½Ο„ΟΞΏ σημείο Ξ½Ξ± μετακινείται κατά ΞΞ½Ξ± εικονοστοιχείο ΞΏΞΈΟΞ½Ξ·Ο‚.</flowDiv> + </flowRoot> + <rect id="d0e385" display="none" height="1000px" width="288" y="2000.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e385"/> + </flowRegion> + <flowDiv xml:space="preserve">Σημείωση: ΞΞΉ Ο‡Οήστες Linux μποΟΞµΞ― Ξ½Ξ± ΞΌΞ·Ξ½ πάΟΞΏΟ…Ξ½ τα Ξ±Ξ½Ξ±ΞΌΞµΞ½ΟΞΌΞµΞ½Ξ± αποτελΞσματα ΞΌΞµ <flowSpan font-weight="bold">Alt+Ξ²Ξλος</flowSpan> ΞΊΞ±ΞΉ ΞΌΞµΟΞΉΞΊΞΏΟΟ‚ άλλους συνδυασμοΟΟ‚ πλήκτΟων, εάν ΞΏ διαχειΟιστής παΟΞ±ΞΈΟΟΞΏΟ… συλλάβει αυτά τα συμβάντα πλήκτΟων Ο€ΟΞΉΞ½ φτάσουν στην εφαΟΞΌΞΏΞ³Ξ® inkscape. ΞΞΉΞ¬ Ξ»Οση ΞΈΞ± ήταν Ξ· αλλαγή της διαμΟΟφωσης του διαχειΟιστή παΟΞ±ΞΈΟΟΞΏΟ… ανάλογα.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2084.6059410000003" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2084.6059410000003" x="10">ΠολλαπλΞΟ‚ επιλογΞΟ‚</tspan> + </text> + <rect id="d0e397" display="none" height="1000px" width="288" y="2089.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e397"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞποΟείτε Ξ½Ξ± επιλΞξετε οποιοδήποτε Ξ±ΟΞΉΞΈΞΌΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞΉΞΌΞνων ταυτΟΟ‡ΟΞΏΞ½Ξ± ΞΌΞµ <flowSpan font-weight="bold">Shift+κλικ</flowSpan>. Ξ‰, μποΟείτε Ξ½Ξ± <flowSpan font-weight="bold">ΟƒΟΟετε</flowSpan> Ξ³ΟΟΟ‰ Ξ±Ο€Ο Ο„Ξ± αντικείμενα που Ο‡Οειάζεσθε Ξ½Ξ± επιλΞξετε. Ξ‘Ο…Ο„Ο Ξ»Ξγεται <flowSpan font-style="italic">επιλογή λάστιχο</flowSpan>. (ΠεπιλογΞΞ±Ο‚ δημιουΟΞ³ΞµΞ― ΞΞ½Ξ± λάστιχο Οταν ΟƒΟΟετε Ξ±Ο€Ο ΞΞ½Ξ±Ξ½ ΞΊΞµΞ½Ο Ο‡ΟΟΞΏ. Ξμως, εάν πατήσετε <flowSpan font-weight="bold">Shift</flowSpan> Ο€ΟΞΉΞ½ την ΞΞ½Ξ±ΟΞΎΞ· του συΟσίματος, το Inkscape ΞΈΞ± δημιουΟΞ³ΞµΞ― πάντοτε το λάστιχο.) Εξασκηθείτε επιλΞγοντας ΞΊΞ±ΞΉ τα Ο„ΟΞ―Ξ± παΟακάτω σχήματα:</flowDiv> + </flowRoot> + <rect id="basic-f04-el.svgrect878" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2179.861147) " height="26.656" width="25.253" stroke="#000" y="5.9827" x="58.428" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.80106pt" fill="#00F"/> + <path id="basic-f04-el.svgpath879" d="m134.86,1251.7c0,9.8339-9.8015,17.806-21.892,17.806-12.091,0-21.892-7.9719-21.892-17.806,0-9.8338,9.8015-17.806,21.892-17.806,12.091,0,21.892,7.9719,21.892,17.806z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2179.861147) matrix(0.801064,0.000000,0.000000,0.801064,32.31095,-983.8304)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#F00"/> + <path id="basic-f04-el.svgpath1290" stroke-linejoin="miter" style="color:#000000;" d="m182.84,29.583-13.183-3.2184-10.125,9.0355-1.013-13.533-11.722-6.8373,12.557-5.1452,2.8804-13.261,8.7737,10.353,13.502-1.3585-7.1347,11.543z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2179.861147) matrix(0.873025,0.000000,0.000000,0.873025,27.59957,4.053390)" stroke-dashoffset="0" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.91757278pt" fill="#FF0"/> + <rect id="d0e422" display="none" height="1000px" width="288" y="2226.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e422"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ¤ΟΟΞ±, Ο‡Οησιμοποιήστε το λάστιχο (ΞΌΞµ ΟƒΟΟσιμο Ξ® <flowSpan font-weight="bold">Shift+ΟƒΟΟσιμο</flowSpan>) Ξ³ΞΉΞ± Ξ½Ξ± επιλΞξετε τις Ξ΄ΟΞΏ ελλείΟΞµΞΉΟ‚ αλλά Οχι το ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ:</flowDiv> + </flowRoot> + <rect id="basic-f05-el.svgrect894" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2263.530861) " height="39.698" width="151.14" stroke="#000" y="1.7363" x="46.657" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.93523pt" fill="#00F"/> + <path id="basic-f05-el.svgpath1290" stroke-linejoin="miter" style="color:#000000;" d="m94.643,25.041c0,6.9036-2.9581,12.5-6.6071,12.5s-6.6071-5.5964-6.6071-12.5,2.9581-12.5,6.6071-12.5,6.6071,5.5964,6.6071,12.5z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2263.530861) matrix(0.707107,-0.707107,0.707107,0.707107,28.79286,65.47778)" stroke-dashoffset="0" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.4869277pt" fill="#F00"/> + <path id="basic-f05-el.svgpath1292" stroke-linejoin="miter" style="color:#000000;" d="m94.643,25.041c0,6.9036-2.9581,12.5-6.6071,12.5s-6.6071-5.5964-6.6071-12.5,2.9581-12.5,6.6071-12.5,6.6071,5.5964,6.6071,12.5z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2263.530861) matrix(0.707107,-0.707107,0.707107,0.707107,56.47143,65.83492)" stroke-dashoffset="0" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.4869277pt" fill="#F00"/> + <rect id="d0e438" display="none" height="1000px" width="288" y="2316.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e438"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξάθε Ξ±Ο„ΞΏΞΌΞΉΞΊΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ΞΌΞσα σε ΞΌΞΉΞ± επιλογή εμφανίζει ΞΌΞΉΞ± <flowSpan font-style="italic">Ο…Ο€Οδειξη επιλογής</flowSpan> β€” Ξ±Ο€Ο Ο€Οοεπιλογή, ΞΞ½Ξ± διακεκομμΞΞ½ΞΏ ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ πλαίσιο. ΑυτΞΟ‚ ΞΏΞΉ υποδείξεις κάνουν πιο ΞµΟκολο Ξ½Ξ± δει ΞΊΞ±Ξ½ΞµΞ―Ο‚ μονομιάς, τι επιλΞχτηκε ΞΊΞ±ΞΉ τι Οχι. Ξ .Ο‡., εάν επιλΞξετε ΞΊΞ±ΞΉ τις Ξ΄ΟΞΏ ελλείΟΞµΞΉΟ‚ ΞΊΞ±ΞΉ το ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ, χωΟΞ―Ο‚ τις υποδείξεις ΞΈΞ± ήταν Ξ΄Οσκολο Ξ½Ξ± ΞΌΞ±Ξ½Ο„ΞΟετε εάν ΞΏΞΉ ελλείΟΞµΞΉΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ επιλεγμΞΞ½ΞµΟ‚ Ξ® Οχι.</flowDiv> + </flowRoot> + <rect id="d0e444" display="none" height="1000px" width="288" y="2387.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e444"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold">Shift+κλικ</flowSpan> σε ΞΞ½Ξ± επιλεγμΞΞ½ΞΏ αντικείμενο το αποκλείει Ξ±Ο€Ο Ο„Ξ·Ξ½ επιλογή. ΕπιλΞξτε ΞΊΞ±ΞΉ τα Ο„ΟΞ―Ξ± πιο πάνω αντικείμενα, Ξπειτα Ο‡Οησιμοποιήστε <flowSpan font-weight="bold">Shift+κλικ</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± αποκλείσετε ΞΊΞ±ΞΉ τις Ξ΄ΟΞΏ ελλείΟΞµΞΉΟ‚ Ξ±Ο€Ο Ο„Ξ·Ξ½ επιλογή αφήνοντας ΞΌΟΞ½ΞΏ το επιλεγμΞΞ½ΞΏ ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ.</flowDiv> + </flowRoot> + <rect id="d0e452" display="none" height="1000px" width="288" y="2437.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e452"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ Ξ±Ο„Οντας <flowSpan font-weight="bold">Esc</flowSpan> αποεπιλΞγεται οποιοδήποτε επιλεγμΞΞ½ΞΏ αντικείμενο. <flowSpan font-weight="bold">Ctrl+A</flowSpan> επιλΞΞ³ΞµΞΉ Ολα τα αντικείμενα στην Ο„ΟΞχουσα στΟΟση (εάν δεν δημιουΟγήσατε στΟΟσεις, ΞµΞ―Ξ½Ξ±ΞΉ το ίδιο Οπως Ολα τα αντικείμενα στο ΞΞ³Ξ³Οαφο).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2500.594403" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2500.594403" x="10">Ξμαδοποίηση</tspan> + </text> + <rect id="d0e467" display="none" height="1000px" width="288" y="2505.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e467"/> + </flowRegion> + <flowDiv xml:space="preserve">Πολλά αντικείμενα μποΟΞΏΟΞ½ Ξ½Ξ± συνδυαστοΟΞ½ σε ΞΌΞΉΞ± <flowSpan font-style="italic">ομάδα</flowSpan>. ΞΞΉΞ± ομάδα συμπεΟΞΉΟ†ΞΟεται ως ΞΞ½Ξ± ΞΌΟΞ½ΞΏ αντικείμενο, Οταν το ΟƒΟΟετε Ξ® το μετακινείτε. Ξ ΞΉΞΏ κάτω, τα Ο„ΟΞ―Ξ± αντικείμενα στα Ξ±ΟιστεΟΞ¬ ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Ξ½ΞµΞΎΞ¬Οτητα, τα ίδια Ο„ΟΞ―Ξ± αντικείμενα στα δεξιά ΞµΞ―Ξ½Ξ±ΞΉ ομαδοποιημΞΞ½Ξ±. Δοκιμάστε Ξ½Ξ± ΟƒΟΟετε την ομάδα.</flowDiv> + </flowRoot> + <path id="basic-f06-el.svgrect1370" d="m14.389,22.485,31.525,0,0,33.276-31.525,0z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2574.4169039999997) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#00F"/> + <path id="basic-f06-el.svgpath1371" d="m134.86,1251.7c0,9.8339-9.8015,17.806-21.892,17.806-12.091,0-21.892-7.9719-21.892-17.806,0-9.8338,9.8015-17.806,21.892-17.806,12.091,0,21.892,7.9719,21.892,17.806z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2574.4169039999997) translate(-67.83676,-1232.299)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#F00"/> + <path id="basic-f06-el.svgpolygon1372" d="m184.48,1254.9-15.238-3.72-11.703,10.444-1.1708-15.642-13.549-7.9029,14.514-5.9471,3.3293-15.328,10.141,11.966,15.607-1.5703-8.2467,13.343z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2574.4169039999997) translate(-85.47640,-1195.746)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#FF0"/> + <g id="basic-f06-el.svgg1376" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2574.4169039999997) translate(-8.869910,-1456.949)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt"> + <path id="basic-f06-el.svgrect1373" d="m186.25,1479.4,31.525,0,0,33.276-31.525,0z" fill="#00F"/> + <path id="basic-f06-el.svgpath1374" d="m134.86,1251.7c0,9.8339-9.8015,17.806-21.892,17.806-12.091,0-21.892-7.9719-21.892-17.806,0-9.8338,9.8015-17.806,21.892-17.806,12.091,0,21.892,7.9719,21.892,17.806z" transform="translate(104.0253,224.6495)" fill="#F00"/> + <path id="basic-f06-el.svgpolygon1375" d="m184.48,1254.9-15.238-3.72-11.703,10.444-1.1708-15.642-13.549-7.9029,14.514-5.9471,3.3293-15.328,10.141,11.966,15.607-1.5703-8.2467,13.343z" transform="translate(86.38563,261.2024)" fill="#FF0"/> + </g> + <rect id="d0e483" display="none" height="1000px" width="288" y="2652" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e483"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± δημιουΟγήσετε ΞΌΞΉΞ± ομάδα, επιλΞγετε ΞΞ½Ξ± Ξ® πεΟισσΟτεΟΞ± αντικείμενα ΞΊΞ±ΞΉ πατάτε <flowSpan font-weight="bold">Ctrl+G</flowSpan>. Για Ξ½Ξ± αποομαδοποιήσετε ΞΌΞ―Ξ± Ξ® πεΟισσΟτεΟΞµΟ‚ ομάδες, επιλΞξτε τις ΞΊΞ±ΞΉ πατήστε <flowSpan font-weight="bold">Ctrl+U</flowSpan>. ΞΞΉ ίδιες ΞΏΞΉ ομάδες μποΟΞΏΟΞ½ Ξ½Ξ± ομαδοποιηθοΟΞ½, Οπως κάθε άλλο αντικείμενο. Ξ¤Ξτοιες Ξ±Ξ½Ξ±Ξ΄ΟΞΏΞΌΞΉΞΊΞΟ‚ ομάδες μποΟΞµΞ― Ξ½Ξ± πάνε σε ελεΟΞΈΞµΟΞΏ βάθος. Ξμως, <flowSpan font-weight="bold">Ctrl+U</flowSpan> αποομαδοποιεί ΞΌΟΞ½ΞΏ την Ο…ΟΞ·Ξ»ΟτεΟΞ· στάθμη ομαδοποίησης ΞΌΞΉΞ±Ο‚ επιλογής. ΞΞ± Ο‡Οειαστεί Ξ½Ξ± πιΞσετε το <flowSpan font-weight="bold">Ctrl+U</flowSpan> επανειλημμΞΞ½Ξ±, εάν ΞΈΞλετε Ξ½Ξ± αποομαδοποιήσετε πλήΟως τις ομάδες των ομάδων.</flowDiv> + </flowRoot> + <rect id="d0e498" display="none" height="1000px" width="288" y="2755.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e498"/> + </flowRegion> + <flowDiv xml:space="preserve">Δεν Ο‡Οειάζεται Ξ½Ξ± αποομαδοποιήσετε ΞΊΞ±Ο„' ανάγκην, Ομως, εάν ΞΈΞλετε Ξ½Ξ± επεξεΟγαστείτε ΞΞ½Ξ± αντικείμενο ΞΌΞσα σε ΞΌΞΉΞ± ομάδα. Απλά <flowSpan font-weight="bold">Ctrl+κλικ</flowSpan> Ξ±Ο…Ο„Ο Ο„ΞΏ αντικείμενο ΞΊΞ±ΞΉ ΞΈΞ± επιλεγεί ΞΊΞ±ΞΉ ΞΈΞ± Ξ³Ξ―Ξ½ΞµΞΉ επεξεΟγάσιμο, Ξ® <flowSpan font-weight="bold">Shift+Ctrl+κλικ</flowSpan> Ξ³ΞΉΞ± πολλά αντικείμενα (ΞΌΞσα Ξ® ΞΞΎΟ‰ Ξ±Ο€Ο ΞΊΞ¬ΞΈΞµ ομάδα) Ξ³ΞΉΞ± πολλαπλή επιλογή Ξ±Ξ½ΞµΞΎΞ¬Οτητα Ξ±Ο€Ο Ο„Ξ·Ξ½ ομαδοποίηση. Ξ Οοσπαθήστε Ξ½Ξ± μετακινήσετε Ξ® Ξ½Ξ± μετασχηματίσετε τα ατομικά σχήματα στην ομάδα (πάνω δεξιά) χωΟΞ―Ο‚ Ξ½Ξ± τα αποομαδοποιήσετε, μετά αποεπιλΞξτε ΞΊΞ±ΞΉ επιλΞξτε την ομάδα ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΞ¬ Ξ³ΞΉΞ± Ξ½Ξ± δείτε Οτι παΟΞ±ΞΌΞΞ½ΞµΞΉ Ξ±ΞΊΟΞΌΞ± ομαδοποιημΞΞ½Ξ·.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2871.271739" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2871.271739" x="10">Ξ“Ξμισμα ΞΊΞ±ΞΉ Πινελιά</tspan> + </text> + <rect id="d0e513" display="none" height="1000px" width="288" y="2876.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e513"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠολλΞΟ‚ λειτουΟΞ³Ξ―ΞµΟ‚ του Inkscape ΞµΞ―Ξ½Ξ±ΞΉ διαθΞσιμες ΞΌΞσω <flowSpan font-style="italic">διαλΟγων</flowSpan>. Ξ ΟοφανΟΟ‚ ΞΏ πιο απλΟΟ‚ Ο„ΟΟπος Ξ½Ξ± Ξ²Ξ¬Οετε ΞΞ½Ξ± αντικείμενο ΞΌΞµ κάποιο Ο‡ΟΟΞΌΞ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ½Ξ± ανοίξετε το διάλογο Ο‡ΟωματολΟΞ³ΞΉΞ± Ξ±Ο€Ο Ο„ΞΏ ΞΌΞµΞ½ΞΏΟ Ο€Οοβολή (Ξ® πατήστε <flowSpan font-weight="bold">Shift+Ctrl+W</flowSpan>), επιλΞξτε ΞΞ½Ξ± αντικείμενο ΞΊΞ±ΞΉ πατήστε ΞΞ½Ξ± Ο‡ΟΟΞΌΞ± Ξ³ΞΉΞ± Ξ½Ξ± το Ξ²Ξ¬Οετε (αλλάξτε το Ο‡ΟΟΞΌΞ± γεμίσματος του).</flowDiv> + </flowRoot> + <rect id="d0e522" display="none" height="1000px" width="288" y="2947.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e522"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΞΉΞΏ ισχυΟΟΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ διάλογος γεμίσματος ΞΊΞ±ΞΉ πινελιάς Ξ±Ο€Ο Ο„ΞΏ ΞΌΞµΞ½ΞΏΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ (Ξ® πατήστε <flowSpan font-weight="bold">Shift+Ctrl+F</flowSpan>). ΕπιλΞξτε το πιο κάτω σχήμα ΞΊΞ±ΞΉ ανοίξτε το διάλογο γεμίσματος ΞΊΞ±ΞΉ πινελιάς.</flowDiv> + </flowRoot> + <path id="basic-f07-el.svgpath930" d="m190.32,1450.2c0,9.0277-29.666,16.346-66.261,16.346s-66.261-7.3185-66.261-16.346c0-9.0278,29.666-16.346,66.261-16.346s66.261,7.3185,66.261,16.346z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 2994.7063389999994) translate(3.065620,-1432.258)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#F00"/> + <rect id="d0e541" display="none" height="1000px" width="288" y="3040.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e541"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ± δείτε Οτι ΞΏ διάλογος Ξχει Ο„ΟΞµΞΉΟ‚ ΞΊΞ±ΟΟ„Ξλες: Ξ³Ξμισμα, πινελιά ΞΊΞ±ΞΉ ΞΌΞΏΟφοποίηση πινελιάς. Ξ— ΞΊΞ±ΟΟ„Ξλα Ξ³Ξμισμα σας επιτΟΞπει Ξ½Ξ± επεξεΟγαστείτε το <flowSpan font-style="italic">Ξ³Ξμισμα</flowSpan> (εσωτεΟΞΉΞΊΟ) των επιλεγμΞνων αντικειμΞνων. Ξ§ΟησιμοποιΟντας τα κουμπιά πιο κάτω Ξ±Ο€Ο Ο„Ξ·Ξ½ ΞΊΞ±ΟΟ„Ξλα, μποΟείτε Ξ½Ξ± επιλΞξετε Ο„Οπους γεμίσματος, συμπεΟιλαμβανΟμενων χωΟΞ―Ο‚ Ο‡ΟΟΞΌΞ± (το κουμπί ΞΌΞµ το Ξ§), επίπεδο Ο‡ΟΟΞΌΞ±, ΞΊΞ±ΞΈΟΟ‚ ΞΊΞ±ΞΉ Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚ Ξ® ακτινικΞΟ‚ διαβαθμίσεις. Για το πιο πάνω σχήμα, το κουμπί επίπεδου Ο‡ΟΟματος ΞΈΞ± ΞµΞ½ΞµΟγοποιηθεί.</flowDiv> + </flowRoot> + <rect id="d0e547" display="none" height="1000px" width="288" y="3133.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e547"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΞΉΞΏ κάτω Ξ²Ξ»Ξπετε ΞΌΞΉΞ± επιλογή των <flowSpan font-style="italic">επιλογΞων Ο‡ΟΟματος</flowSpan>, ΞΊΞ±ΞΈΞΞ½Ξ±Ο‚ στη δική του ΞΊΞ±ΟΟ„Ξλα: RGB, CMYK, HSL ΞΊΞ±ΞΉ Ο„ΟΞΏΟ‡ΟΟ‚. Ξσως ΞΏ πιο βολικΟΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ επιλογΞΞ±Ο‚ Ο„ΟοχοΟ, Οπου μποΟείτε Ξ½Ξ± πεΟιστΟΞΟετε το Ο„Οίγωνο Ξ³ΞΉΞ± Ξ½Ξ± επιλΞξετε Ο‡ΟΟΞΌΞ± στον Ο„ΟΞΏΟ‡Ο ΞΊΞ±ΞΉ Ξπειτα επιλογή Ξ±Ο€ΟΟ‡Οωσης του Ο‡ΟΟματος ΞΌΞµΟ‚ το Ο„Οίγωνο. Ξλοι ΞΏΞΉ επιλογείς Ο‡ΟΟματος πεΟΞΉΞχουν ΞΞ½Ξ±Ξ½ ολισθητή Ξ³ΞΉΞ± ΞΏΟΞΉΟƒΞΌΟ Ο„ΞΏΟ… <flowSpan font-style="italic">άλφα</flowSpan> (αδιαφάνειας) των επιλεγμΞνων αντικειμΞνων.</flowDiv> + </flowRoot> + <rect id="d0e556" display="none" height="1000px" width="288" y="3215.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e556"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξποτε επιλΞγετε ΞΞ½Ξ± αντικείμενο, ΞΏ επιλογΞΞ±Ο‚ Ο‡ΟΟματος ΞµΞ½Ξ·ΞΌΞµΟΟνεται Ξ³ΞΉΞ± Ξ½Ξ± εμφανίσει το Ο„ΟΞχον Ξ³Ξμισμα του ΞΊΞ±ΞΉ την Ο„ΟΞχουσα πινελιά του (Ξ³ΞΉΞ± πολλαπλΞΟ‚ επιλογΞΟ‚ αντικειμΞνων, ΞΏ διάλογος εμφανίζει <flowSpan font-style="italic">το ΞΌΞσο ΟΟΞΏ</flowSpan> του Ο‡ΟΟματος). Παίξτε ΞΌΞµ αυτά τα δείγματα Ξ® δημιουΟγήστε τα δικά σας:</flowDiv> + </flowRoot> + <path id="basic-f08-el.svgpath969" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" fill-opacity="0.74999599" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,0.128430,-1529.560)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#80765b"/> + <path id="basic-f08-el.svgpath970" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" fill-opacity="0.267692" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,35.03744,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#d0765b"/> + <path id="basic-f08-el.svgpath971" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,70.39144,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#12c097"/> + <path id="basic-f08-el.svgpath972" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,104.1760,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#e7da05"/> + <path id="basic-f08-el.svgpath973" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,135.9942,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#3d0fa1"/> + <path id="basic-f08-el.svgpath974" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" fill-opacity="0.74901997" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,167.8130,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#6fe225"/> + <path id="basic-f08-el.svgpath975" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3283.8377699999996) matrix(0.997770,0.000000,0.000000,0.935740,199.6311,-1529.014)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#ff3077"/> + <rect id="d0e572" display="none" height="1000px" width="288" y="3330.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e572"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ§ΟησιμοποιΟντας την ΞΊΞ±ΟΟ„Ξλα πινελιάς, μποΟείτε Ξ½Ξ± αφαιΟΞσετε την <flowSpan font-style="italic">πινελιά</flowSpan> (πεΟΞ―Ξ³ΟΞ±ΞΌΞΌΞ±) του αντικειμΞΞ½ΞΏΟ…, Ξ® Ξ½Ξ± αποδΟσετε οποιοδήποτε Ο‡ΟΟΞΌΞ± Ξ® διαφάνεια σε Ξ±Ο…Ο„Ο:</flowDiv> + </flowRoot> + <path id="basic-f09-el.svgpath1010" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,0.813185,-1530.239)" xmlns:cc="http://creativecommons.org/ns#" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1011" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,27.35753,-1530.239)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1012" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" stroke-opacity="0.15692294" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,57.22005,-1530.239)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1013" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,83.76456,-1530.239)" stroke="#F00" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1014" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,113.6271,-1530.239)" stroke="#00ff7c" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1015" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,146.8075,-1530.239)" stroke="#16417c" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1016" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,176.6700,-1530.239)" stroke="#7c7016" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1pt" fill="#dbdbdb"/> + <path id="basic-f09-el.svgpath1017" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3378.3703849999997) matrix(0.998498,0.000000,0.000000,0.936426,203.2139,-1530.239)" xmlns:cc="http://creativecommons.org/ns#" fill="#dbdbdb"/> + <rect id="d0e588" display="none" height="1000px" width="288" y="3424.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e588"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— τελευταία ΞΊΞ±ΟΟ„Ξλα, ΞΌΞΏΟφοποίηση πινελιάς, σας επιτΟΞπει Ξ½Ξ± ΞΏΟίσετε το πλάτος ΞΊΞ±ΞΉ άλλες παΟΞ±ΞΌΞΟ„ΟΞΏΟ…Ο‚ της πινελιάς:</flowDiv> + </flowRoot> + <path id="basic-f10-el.svgpath1033" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,3.801590,-1511.205)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.0121052" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1034" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,30.08856,-1511.205)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="2.42105007" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1035" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,62.94734,-1511.205)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="9.6841898" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1036" style="stroke-dasharray:1.81578, 3.63157;" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,95.80570,-1511.205)" stroke-dashoffset="0" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.81578004" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1037" style="stroke-dasharray:7.26312, 7.26312;" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,131.9508,-1511.205)" stroke-dashoffset="0" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.81578004" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1038" style="stroke-dasharray:7.26312, 3.63156, 1.81578, 3.63156;" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,168.0951,-1511.205)" stroke-dashoffset="0" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.81578004" fill="#dbdbdb"/> + <path id="basic-f10-el.svgpath1039" style="stroke-dasharray:0.847366, 0.847366;" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3461.6329379999997) matrix(0.988814,0.000000,0.000000,0.927344,204.2394,-1511.205)" stroke-dashoffset="0" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.84736598" fill="#dbdbdb"/> + <rect id="d0e601" display="none" height="1000px" width="288" y="3515.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e601"/> + </flowRegion> + <flowDiv xml:space="preserve">Τελικά, αντί Ξ³ΞΉΞ± επίπεδο Ο‡ΟΟΞΌΞ±, μποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε <flowSpan font-style="italic">διαβαθμίσεις</flowSpan> Ξ³ΞΉΞ± γεμίσματα ΞΊΞ±ΞΉ/Ξ® πινελιΞΟ‚:</flowDiv> + </flowRoot> + <defs id="basic-f11-el.svgdefs3"> + <linearGradient id="basic-f11-el.svglinearGradient1054" y2="2084.7" gradientUnits="userSpaceOnUse" y1="2043.7" gradientTransform="scale(1.247949,0.801315)" x2="31.507" x1="28.86"> + <stop id="basic-f11-el.svgstop842" stop-color="#0082ab" offset="0"/> + <stop id="basic-f11-el.svgstop1842" stop-color="#0082ab" stop-opacity="0.5" offset="0.35"/> + <stop id="basic-f11-el.svgstop1843" stop-color="#0082ab" stop-opacity="0.22" offset="0.63"/> + <stop id="basic-f11-el.svgstop843" stop-color="#0082ab" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="basic-f11-el.svglinearGradient1059" y2="2084.7" xlink:href="#basic-f11-el.svglinearGradient1056" gradientUnits="userSpaceOnUse" y1="2043.7" gradientTransform="scale(1.247949,0.801315)" x2="31.507" x1="28.86"/> + <radialGradient id="basic-f11-el.svgradialGradient1061" cx="31.577" gradientUnits="userSpaceOnUse" cy="2062.9" r="22.221" gradientTransform="scale(1.247949,0.801315)"> + <stop id="basic-f11-el.svgstop1063" stop-color="#65ab00" stop-opacity="0" offset="0"/> + <stop id="basic-f11-el.svgstop1064" stop-color="#a79782" offset="1"/> + </radialGradient> + <radialGradient id="basic-f11-el.svgradialGradient1069" cx="31.577" xlink:href="#basic-f11-el.svglinearGradient1070" gradientUnits="userSpaceOnUse" cy="2062.9" r="22.221" gradientTransform="scale(1.247949,0.801315)"/> + <linearGradient id="basic-f11-el.svglinearGradient1074" y2="2028.4" xlink:href="#basic-f11-el.svglinearGradient1070" gradientUnits="userSpaceOnUse" y1="2028.4" gradientTransform="scale(1.227046,0.814966)" x2="56.199" x1="8.0307"/> + <linearGradient id="basic-f11-el.svglinearGradient1070"> + <stop id="basic-f11-el.svgstop1071" stop-color="#000" stop-opacity="0.532296" offset="0"/> + <stop id="basic-f11-el.svgstop1072" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <radialGradient id="basic-f11-el.svgradialGradient1090" cx="24.338" xlink:href="#basic-f11-el.svglinearGradient1070" gradientUnits="userSpaceOnUse" cy="2034.3" r="24.697" gradientTransform="scale(1.227046,0.814966)"/> + <radialGradient id="basic-f11-el.svgradialGradient1076" cx="39.346" gradientUnits="userSpaceOnUse" cy="2014.9" r="25.29" gradientTransform="scale(1.227046,0.814966)"> + <stop id="basic-f11-el.svgstop1078" stop-color="#ff2ee1" stop-opacity="0.529229" offset="0"/> + <stop id="basic-f11-el.svgstop1079" stop-color="#000" stop-opacity="0" offset="1"/> + </radialGradient> + <radialGradient id="basic-f11-el.svgradialGradient1083" cx="48.498" gradientUnits="userSpaceOnUse" cy="2012.6" r="40.477" gradientTransform="scale(1.227046,0.814966)"> + <stop id="basic-f11-el.svgstop1081" stop-color="#7d4ad2" stop-opacity="0.532296" offset="0"/> + <stop id="basic-f11-el.svgstop1082" stop-color="#FFF" stop-opacity="0" offset="1"/> + </radialGradient> + <linearGradient id="basic-f11-el.svglinearGradient1056"> + <stop id="basic-f11-el.svgstop1057" stop-color="#0082ab" stop-opacity="0" offset="0"/> + <stop id="basic-f11-el.svgstop1058" stop-color="#000" offset="1"/> + </linearGradient> + <radialGradient id="basic-f11-el.svgradialGradient1085" cx="39.612" xlink:href="#basic-f11-el.svglinearGradient1056" gradientUnits="userSpaceOnUse" cy="2014.7" r="33.929" gradientTransform="scale(1.227046,0.814966)"/> + <radialGradient id="basic-f11-el.svgradialGradient1086" cx="32.115" gradientUnits="userSpaceOnUse" cy="2028.4" r="24.084" gradientTransform="scale(1.227046,0.814966)"> + <stop id="basic-f11-el.svgstop1088" stop-color="#f56f52" stop-opacity="0" offset="0"/> + <stop id="basic-f11-el.svgstop1089" stop-color="#aba6a6" stop-opacity="0.243137" offset="1"/> + </radialGradient> + </defs> + <path id="basic-f11-el.svgpath1053" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,-1.648820,-1632.758)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f11-el.svglinearGradient1054)"/> + <path id="basic-f11-el.svgpath1055" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,26.69766,-1632.758)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f11-el.svglinearGradient1059)"/> + <path id="basic-f11-el.svgpath1060" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,62.13073,-1632.758)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f11-el.svgradialGradient1061)"/> + <path id="basic-f11-el.svgpath1065" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,94.02050,-1632.758)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f11-el.svgradialGradient1069)"/> + <path id="basic-f11-el.svgpath1073" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,136.5401,-1632.758)" stroke="url(#basic-f11-el.svglinearGradient1074)" xmlns:cc="http://creativecommons.org/ns#" stroke-width="3.6436801" fill="url(#basic-f11-el.svgradialGradient1090)"/> + <path id="basic-f11-el.svgpath1075" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(-1.066286,0.000000,0.000000,-1.000000,263.0961,1673.309)" stroke="url(#basic-f11-el.svgradialGradient1076)" xmlns:cc="http://creativecommons.org/ns#" stroke-width="3.6436801" fill="url(#basic-f11-el.svgradialGradient1083)"/> + <path id="basic-f11-el.svgpath1084" style="stroke-dasharray:3.64368, 3.64368;" d="m67.136,1653c0,9.8338-12.415,17.806-27.73,17.806s-27.73-7.9719-27.73-17.806c0-9.8338,12.415-17.806,27.73-17.806s27.73,7.9719,27.73,17.806z" fill-rule="evenodd" transform="translate(10, 3552.641045) matrix(1.066286,0.000000,0.000000,1.000000,214.4927,-1632.758)" stroke-dashoffset="0" stroke="url(#basic-f11-el.svgradialGradient1085)" xmlns:cc="http://creativecommons.org/ns#" stroke-width="3.6436801" fill="url(#basic-f11-el.svgradialGradient1086)"/> + <rect id="d0e617" display="none" height="1000px" width="288" y="3604" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e617"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξταν αλλάζετε Ξ±Ο€Ο ΞµΟ€Ξ―Ο€ΞµΞ΄ΞΏ Ο‡ΟΟΞΌΞ± σε διαβάθμιση, Ξ· νεοδημιουΟΞ³ΞΏΟΞΌΞµΞ½Ξ· διαβάθμιση Ο‡Οησιμοποιεί το Ο€ΟΞΏΞ·Ξ³ΞΏΟΞΌΞµΞ½ΞΏ επίπεδο Ο‡ΟΟΞΌΞ±, πηγαίνοντας Ξ±Ο€Ο Ξ±Ξ΄ΞΉΞ±Ο†Ξ±Ξ½ΞΟ‚ σε διαφανΞΟ‚. Εναλλάξτε στο ΞµΟγαλείο διαβάθμισης (<flowSpan font-weight="bold">Ctrl+F1</flowSpan>) Ξ³ΞΉΞ± Ξ½Ξ± ΟƒΟΟετε τις <flowSpan font-style="italic">λαβΞΟ‚ διαβάθμισης</flowSpan> β€” τους ΞµΞ»Ξγχους συνδεμΞΞ½ΞΏΟ…Ο‚ ΞΌΞµ Ξ³ΟΞ±ΞΌΞΌΞΟ‚ που ΞΏΟΞ―Ξ¶ΞΏΟ…Ξ½ την κατεΟθυνση ΞΊΞ±ΞΉ το μήκος της διαβάθμισης. Ξταν οποιαδήποτε Ξ±Ο€Ο Ο„ΞΉΟ‚ λαβΞΟ‚ διαβάθμισης επιλΞγεται (τονισμΞΞ½ΞΏ μπλε), ΞΏ διάλογος γεμίσματος ΞΊΞ±ΞΉ πινελιάς ΞΏΟΞ―Ξ¶ΞµΞΉ το Ο‡ΟΟΞΌΞ± αυτής της λαβής αντί Ξ³ΞΉΞ± το Ο‡ΟΟΞΌΞ± του ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΞΏΟ ΞµΟ€ΞΉΞ»ΞµΞ³ΞΌΞΞ½ΞΏΟ… αντικειμΞΞ½ΞΏΟ….</flowDiv> + </flowRoot> + <rect id="d0e626" display="none" height="1000px" width="288" y="3707.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e626"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ±Ο‚ άλλος Ξ±ΞΊΟΞΌΞ± βολικΟΟ‚ Ο„ΟΟπος Ξ³ΞΉΞ± αλλαγή Ο‡ΟΟματος ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ… ΞµΞ―Ξ½Ξ±ΞΉ Ο‡ΟησιμοποιΟντας το ΞµΟγαλείο σταγονΟΞΌΞµΟ„ΟΞΏΟ… (<flowSpan font-weight="bold">F7</flowSpan>). Απλά <flowSpan font-weight="bold">κλικ</flowSpan> οπουδήποτε στη πεΟιοχή σχεδίασης ΞΌΞµ Ξ±Ο…Ο„Ο Ο„ΞΏ ΞµΟγαλείο ΞΊΞ±ΞΉ το επιλεγμΞΞ½ΞΏ Ο‡ΟΟΞΌΞ± ΞΈΞ± αποδοθεί στο Ξ³Ξμισμα του επιλεγμΞΞ½ΞΏΟ… αντικειμΞΞ½ΞΏΟ… (<flowSpan font-weight="bold">Shift+κλικ</flowSpan> ΞΈΞ± αποδΟσει το Ο‡ΟΟΞΌΞ± πινελιάς).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3791.460787" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3791.460787" x="10">ΔιπλασιασμΟΟ‚, ΞµΟ…ΞΈΟ…Ξ³Οάμμιση, κατανομή</tspan> + </text> + <rect id="d0e644" display="none" height="1000px" width="288" y="3796.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e644"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± Ξ±Ο€Ο Ο„ΞΉΟ‚ πιο συνηθισμΞΞ½ΞµΟ‚ λειτουΟΞ³Ξ―ΞµΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ <flowSpan font-style="italic">διπλασιασμΟΟ‚</flowSpan> ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ… (<flowSpan font-weight="bold">Ctrl+D</flowSpan>). Το αντίγΟαφο τοποθετείται Ξ±ΞΊΟΞΉΞ²ΟΟ‚ πάνω Ξ±Ο€Ο Ο„ΞΏ Ξ±ΟΟ‡ΞΉΞΊΟ ΞΊΞ±ΞΉ επιλΞγεται, Ξτσι μποΟείτε Ξ½Ξ± το ΟƒΟΟετε ΞΌΞ±ΞΊΟΞΉΞ¬ ΞΌΞµ το ποντίκι Ξ® ΞΌΞµ τα πλήκτΟΞ± Ξ²ΞµΞ»ΟΞ½. Για εξάσκηση, δοκιμάστε το Ξ³Ξμισμα της Ξ³Οαμμής ΞΌΞµ αντίγΟαφα Ξ±Ο…Ο„ΞΏΟ Ο„ΞΏΟ… ΞΌΞ±ΟΟΞΏΟ… τετΟΞ±Ξ³ΟΞ½ΞΏΟ…:</flowDiv> + </flowRoot> + <rect id="basic-f12-el.svgrect1117" fill-rule="evenodd" transform="translate(10, 3865.311143) " height="11.092" width="11.092" y="0.90725" x="-0.1145" fill="#000"/> + <rect id="d0e663" display="none" height="1000px" width="288" y="3888.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e663"/> + </flowRegion> + <flowDiv xml:space="preserve">ΥπάΟχουν πιθανΟτητες, τα αντίγΟαφά σας του τετΟΞ±Ξ³ΟΞ½ΞΏΟ… Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ τοποθετημΞΞ½Ξ± πεΟισσΟτεΟΞΏ Ξ® λιγΟτεΟΞΏ τυχαία. Ξ•Ξ΄Ο ΞµΞ―Ξ½Ξ±ΞΉ που ΞΏ διάλογος ΞµΟ…ΞΈΟ…Ξ³Οάμμιση (<flowSpan font-weight="bold">Ctrl+Shift+A</flowSpan>) ΞµΞ―Ξ½Ξ±ΞΉ Ο‡Οήσιμος. ΕπιλΞξτε Ολα τα τετΟάγωνα (<flowSpan font-weight="bold">Shift+κλικ</flowSpan> Ξ® ΟƒΟΟτε το λάστιχο), ανοίξτε το διάλογο ΞΊΞ±ΞΉ πατήστε το κουμπί "ΞΊΞµΞ½Ο„ΟΞ¬Οισμα στον ΞΏΟΞΉΞ¶Οντιο άξονα", Ξπειτα το κουμπί "εξίσωση ΞΏΟΞΉΞ¶Οντιων ΞΊΞµΞ½ΟΞ½ ΞΌΞµΟ„Ξ±ΞΎΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞΉΞΌΞνων" (διαβάστε τις συμβουλΞΟ‚ του κουμπιοΟ). Τα αντικείμενα ΞµΞ―Ξ½Ξ±ΞΉ Ο„ΟΟΞ± ΞΊΞ±ΞΈΞ±ΟΞ¬ ΞµΟ…ΞΈΟ…Ξ³ΟαμμισμΞΞ½Ξ± ΞΊΞ±ΞΉ κατανεμημΞΞ½Ξ± σε ίσες αποστάσεις. ΞΞ± ΞΌΞµΟΞΉΞΊΞ¬ άλλα παΟαδείγματα ΞµΟ…ΞΈΟ…Ξ³Οάμμισης ΞΊΞ±ΞΉ κατανομής:</flowDiv> + </flowRoot> + <defs id="basic-f13-el.svgdefs3"> + <radialGradient id="basic-f13-el.svgradialGradient1670" cx="188.95" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2278" r="19.568" gradientTransform="scale(1.069487,0.935027)"/> + <radialGradient id="basic-f13-el.svgradialGradient1669" cx="212.6" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2274.3" r="18.494" gradientTransform="scale(1.070251,0.934360)"/> + <radialGradient id="basic-f13-el.svgradialGradient1668" cx="221.81" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2233.3" r="12.484" gradientTransform="scale(1.045701,0.956296)"/> + <radialGradient id="basic-f13-el.svgradialGradient1667" cx="225.29" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2236" r="12.167" gradientTransform="scale(1.040873,0.960732)"/> + <radialGradient id="basic-f13-el.svgradialGradient1666" cx="225.84" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2298.9" r="7.2748" gradientTransform="scale(1.065969,0.938114)"/> + <radialGradient id="basic-f13-el.svgradialGradient1665" cx="238.59" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2266.9" r="7.9932" gradientTransform="scale(1.048503,0.953741)"/> + <radialGradient id="basic-f13-el.svgradialGradient1664" cx="251.29" xlink:href="#basic-f13-el.svglinearGradient841" gradientUnits="userSpaceOnUse" cy="2238.9" r="5.5509" gradientTransform="scale(1.034074,0.967049)"/> + <linearGradient id="basic-f13-el.svglinearGradient841"> + <stop id="basic-f13-el.svgstop842" stop-color="#0082ab" offset="0"/> + <stop id="basic-f13-el.svgstop1842" stop-color="#0082ab" stop-opacity="0.5" offset="0.35"/> + <stop id="basic-f13-el.svgstop1843" stop-color="#0082ab" stop-opacity="0.22" offset="0.63"/> + <stop id="basic-f13-el.svgstop843" stop-color="#0082ab" stop-opacity="0" offset="1"/> + </linearGradient> + </defs> + <path id="basic-f13-el.svgpolygon1671" d="m223,2147.6-20.927,0.3454-20.927,0.3453,10.165-18.296,10.165-18.296,10.763,17.951z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,413.5562,-2103.409)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1670)"/> + <path id="basic-f13-el.svgpolygon1672" d="m207.75,2141.8,10.137-17.003,10.137-17.003,9.6564,17.28,9.6564,17.28-19.793-0.2772z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,413.4438,-2098.420)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1669)"/> + <path id="basic-f13-el.svgpolygon1673" d="m218.9,2147.6,5.4312-11.938,5.4312-11.938,7.6235,10.673,7.6235,10.673-13.055,1.2656z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,433.4970,-2109.076)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1668)"/> + <path id="basic-f13-el.svgpolygon1674" d="m221.83,2157,7.5821-10.246,7.5821-10.246,5.0823,11.689,5.0823,11.689-12.664-1.4432z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,445.3343,-2121.601)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1667)"/> + <path id="basic-f13-el.svgpolygon1675" d="m232.98,2163.5,3.6889-6.8247,3.6889-6.8246,4.0658,6.607,4.0658,6.607-7.7548,0.2176z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,411.9695,-2130.035)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1666)"/> + <path id="basic-f13-el.svgpolygon1676" d="m241.78,2168.2,4.8233-6.8928,4.8233-6.8927,3.5576,7.6235,3.5576,7.6234-8.3809-0.7307z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,429.6753,-2135.392)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1665)"/> + <path id="basic-f13-el.svgpolygon1677" d="m254.11,2170.5,2.1825-5.3681,2.1825-5.368,3.5576,4.5741,3.5576,4.5741-5.7401,0.7939z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) matrix(-1.000000,0.000000,0.000000,1.000000,450.9023,-2138.534)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1664)"/> + <path id="basic-f13-el.svgpath1622" stroke-linejoin="miter" d="M30.105,4.9279l53.602,14.362" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1623" stroke-linejoin="miter" d="M27.562,9.2561l53.602,14.363" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1624" stroke-linejoin="miter" d="M25.019,13.584l53.602,14.363" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1625" stroke-linejoin="miter" d="M22.476,17.913l53.602,14.362" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1626" stroke-linejoin="miter" d="M19.933,22.241l53.602,14.362" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1627" stroke-linejoin="miter" d="M17.39,26.569l53.602,14.363" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1628" stroke-linejoin="miter" d="M14.847,30.897l53.602,14.363" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1629" stroke-linejoin="miter" d="M12.304,35.225l53.602,14.363" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1630" stroke-linejoin="miter" d="M9.761,39.554l53.602,14.362" transform="translate(10, 4010.269069) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" fill="none"/> + <path id="basic-f13-el.svgpath1641" sodipodi:revolution="3.0000000" sodipodi:radius="9.1857243" d="M131.46,2120.6c0.41,0.2-0.08,0.7-0.35,0.7-0.72,0.1-1.12-0.7-1.02-1.4,0.17-1.1,1.39-1.6,2.39-1.3,1.47,0.4,2.15,2,1.71,3.4-0.58,1.8-2.69,2.7-4.45,2.1-2.21-0.8-3.19-3.4-2.39-5.5,0.96-2.6,4-3.7,6.5-2.8,2.95,1.2,4.25,4.7,3.08,7.6-1.34,3.3-5.3,4.7-8.56,3.4-3.69-1.5-5.29-6-3.76-9.6,1.72-4.1,6.61-5.8,10.61-4.1,4.44,1.9,6.36,7.3,4.45,11.6" transform="translate(10, 4010.269069) matrix(1.901202e-16,0.614095,-0.614095,1.901202e-16,1424.349,-31.31421)" stroke="#000" sodipodi:argument="-18.385908" sodipodi:cy="2120.6279" sodipodi:cx="131.45540" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1642" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(1.901202e-16,0.614095,-0.614095,1.901202e-16,1440.566,-40.55521)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1643" sodipodi:revolution="3.0000000" sodipodi:radius="25.200598" d="M154.34,2141.8c1.12,0.5-0.24,1.8-0.98,1.8-1.99,0.2-3.03-2.1-2.73-3.8,0.53-3,3.92-4.4,6.65-3.6,4,1.1,5.77,5.7,4.5,9.5-1.7,5-7.55,7.1-12.33,5.3-6.01-2.2-8.57-9.3-6.26-15.1,2.8-7,11.18-10,18-7.2,8.03,3.4,11.38,13,8.02,20.9-3.88,9-14.82,12.8-23.67,8.9-10.05-4.4-14.2-16.7-9.78-26.5,4.95-11.1,18.47-15.6,29.34-10.7,12.07,5.5,17.02,20.3,11.54,32.2" transform="translate(10, 4010.269069) matrix(1.901202e-16,0.614095,-0.614095,1.901202e-16,1424.349,-54.93121)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2141.7546" sodipodi:cx="154.34271" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1644" sodipodi:revolution="3.0000000" sodipodi:radius="19.674946" d="M177.23,2161.1c0.94,0.3,0.07,1.4-0.49,1.6-1.51,0.4-2.63-1.2-2.64-2.6-0.01-2.3,2.39-3.9,4.6-3.7,3.23,0.3,5.24,3.6,4.79,6.7-0.6,4.1-4.78,6.5-8.71,5.8-4.93-0.8-7.89-5.9-6.94-10.7,1.16-5.8,7.18-9.2,12.81-8,6.64,1.4,10.57,8.3,9.1,14.8-1.7,7.5-9.58,11.9-16.92,10.2-8.34-2-13.25-10.8-11.25-19,2.24-9.2,11.98-14.6,21.03-12.3,10.04,2.5,15.93,13.2,13.4,23.1" transform="translate(10, 4010.269069) matrix(1.901202e-16,0.614095,-0.614095,1.901202e-16,1424.349,-65.81921)" stroke="#000" sodipodi:argument="-18.546671" sodipodi:cy="2161.1208" sodipodi:cx="177.23004" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1645" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(4.753003e-17,0.153524,-0.153524,4.753003e-17,473.6190,31.04279)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1646" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(9.506006e-17,0.307048,-0.307048,9.506006e-17,806.8147,7.176787)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1647" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(3.802402e-16,1.228191,-1.228191,3.802402e-16,2753.765,-136.0183)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1648" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(7.604803e-16,2.456381,-2.456381,7.604803e-16,5347.526,-326.9433)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.12500000" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpolygon1649" d="m223,2147.6-20.927,0.3454-20.927,0.3453,10.165-18.296,10.165-18.296,10.763,17.951z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(3.588790,-2103.409)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1670)"/> + <path id="basic-f13-el.svgpolygon1650" d="m207.75,2141.8,10.137-17.003,10.137-17.003,9.6564,17.28,9.6564,17.28-19.793-0.2772z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(3.701180,-2098.420)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1669)"/> + <path id="basic-f13-el.svgpolygon1651" d="m218.9,2147.6,5.4312-11.938,5.4312-11.938,7.6235,10.673,7.6235,10.673-13.055,1.2656z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(-16.35203,-2109.076)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1668)"/> + <path id="basic-f13-el.svgpolygon1652" d="m221.83,2157,7.5821-10.246,7.5821-10.246,5.0823,11.689,5.0823,11.689-12.664-1.4432z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(-28.18930,-2121.601)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1667)"/> + <path id="basic-f13-el.svgpolygon1653" d="m232.98,2163.5,3.6889-6.8247,3.6889-6.8246,4.0658,6.607,4.0658,6.607-7.7548,0.2176z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(5.175400,-2130.035)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1666)"/> + <path id="basic-f13-el.svgpolygon1654" d="m241.78,2168.2,4.8233-6.8928,4.8233-6.8927,3.5576,7.6235,3.5576,7.6234-8.3809-0.7307z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(-12.53040,-2135.392)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1665)"/> + <path id="basic-f13-el.svgpolygon1655" d="m254.11,2170.5,2.1825-5.3681,2.1825-5.368,3.5576,4.5741,3.5576,4.5741-5.7401,0.7939z" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 4010.269069) translate(-33.75731,-2138.534)" xmlns:cc="http://creativecommons.org/ns#" fill="url(#basic-f13-el.svgradialGradient1664)"/> + <path id="basic-f13-el.svgpath1678" sodipodi:revolution="3.0000000" sodipodi:radius="12.600299" d="M143.19,2128.8c0.56,0.3-0.12,0.9-0.49,1-0.99,0.1-1.52-1.1-1.37-1.9,0.27-1.5,1.96-2.2,3.33-1.8,2,0.5,2.89,2.8,2.25,4.7-0.85,2.5-3.77,3.6-6.16,2.7-3.01-1.1-4.29-4.7-3.13-7.6,1.39-3.5,5.59-5,9-3.6,4.01,1.7,5.68,6.5,4.01,10.5-1.94,4.5-7.42,6.3-11.84,4.4-5.02-2.2-7.1-8.3-4.89-13.2,2.48-5.6,9.23-7.8,14.67-5.4,6.04,2.8,8.51,10.2,5.77,16.1" transform="translate(10, 4010.269069) matrix(1.082533e-16,0.349663,-0.349663,1.082533e-16,853.9819,0.692787)" stroke="#000" sodipodi:argument="-18.365078" sodipodi:cy="2128.8440" sodipodi:cx="143.19247" sodipodi:expansion="1.0000000" sodipodi:type="spiral" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt" sodipodi:t0="0.0000000" fill="none"/> + <path id="basic-f13-el.svgpath1679" d="M175.2,51.728c-0.04,0.96-0.08,2.054-1.1,2.797" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1680" d="M182.3,51.84c0,0.743-0.46,2.115-0.37,3.02" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1681" d="M188.65,51.951c0.2,0.696,0.08,1.788,1.84,2.574" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1682" d="M197.68,51.504c-0.21,0.667-1.86,2.562-1.1,3.245" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1683" d="M204.82,52.287c-0.28,0.399-1.35,1.802,0,2.35" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1684" d="M211.03,51.504c0.09,0.927-0.48,1.881,1.84,2.909" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1685" d="M220.14,51.951c0.08,0.57-0.99,1.563-1.47,2.462" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1686" d="M225.4,51.84c0.02,0.436,0.19,1.722,2.94,2.349" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1687" d="M233.97,52.063c0,0.158-0.21,1.613,0.74,2.238" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1688" d="M238.47,51.84c1.06,1.233,1.13,2.685,6.63,3.58" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <path id="basic-f13-el.svgpath1689" d="M248.88,52.511c0,0.84-0.1,1.67,0.74,2.461" transform="translate(10, 4010.269069) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.36291499pt" fill="none"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="4091.0872170000002" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="4091.0872170000002" x="10">Διάταξη-Ξ–</tspan> + </text> + <rect id="d0e688" display="none" height="1000px" width="288" y="4096.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e688"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΟΟΞΏΟ‚ <flowSpan font-style="italic">διάταξη-z</flowSpan> Ξ±Ξ½Ξ±Ο†ΞΟεται σε ΞΌΞΉΞ± διάταξη στοίβας αντικειμΞνων σε ΞΞ½Ξ± σχΞδιο, δηλαδή σε ποιο αντικείμενο ΞµΞ―Ξ½Ξ±ΞΉ στην ΞΊΞΏΟυφή ΞΊΞ±ΞΉ επισκιάζει τα άλλα. ΞΞΉ Ξ΄ΟΞΏ εντολΞΟ‚ στο ΞΌΞµΞ½ΞΏΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…, Ξ±Ξ½ΟΟωση στην ΞΊΞΏΟυφή (το πλήκτΟΞΏ <flowSpan font-weight="bold">Home</flowSpan>) ΞΊΞ±ΞΉ Ξ²Οθιση στον πυθμΞΞ½Ξ± (το πλήκτΟΞΏ <flowSpan font-weight="bold">End</flowSpan>), ΞΈΞ± μετακινήσουν τα επιλεγμΞΞ½Ξ± αντικείμενά σας στην πιο Ο…Οηλή Ξ® στην πιο χαμηλή Ξ±Ο€Ο Ο„ΞΉΟ‚ διατάξεις-z της Ο„ΟΞχουσας στΟΟσης. Ξ”ΟΞΏ πεΟισσΟτεΟΞµΟ‚ εντολΞΟ‚, Ξ±Ξ½ΟΟωση (<flowSpan font-weight="bold">PgUp</flowSpan>) ΞΊΞ±ΞΉ Ξ²Οθιση (<flowSpan font-weight="bold">PgDn</flowSpan>), ΞΈΞ± Ξ±Ξ½Ο…ΟΟσουν Ξ® ΞΈΞ± βυθίσουν την επιλογή <flowSpan font-style="italic">ΞΌΟΞ½ΞΏ ΞΞ½Ξ± βήμα</flowSpan>, δηλαδή ΞΈΞ± μετακινήσουν το Ο€ΟΞΏΞ·Ξ³ΞΏΟΞΌΞµΞ½ΞΏ ΞΌΞ· επιλεγμΞΞ½ΞΏ αντικείμενο στη διάταξη-z (ΞΌΟΞ½ΞΏ αντικείμενα που επικαλΟπτουν την επιλογή ΞΌΞµΟ„Οάνε, εάν τίποτα δεν επικαλΟπτει την επιλογή, Ξ· Ξ±Ξ½ΟΟωση ΞΊΞ±ΞΉ Ξ· Ξ²Οθιση την μετακινοΟΞ½ Ολο το Ξ΄ΟΟΞΌΞΏ στην ΞΊΞΏΟυφή Ξ® στον πυθμΞΞ½Ξ± αντίστοιχα).</flowDiv> + </flowRoot> + <rect id="d0e709" display="none" height="1000px" width="288" y="4242.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e709"/> + </flowRegion> + <flowDiv xml:space="preserve">Εξασκηθείτε Ο‡ΟησιμοποιΟντας Ξ±Ο…Ο„ΞΟ‚ τις εντολΞΟ‚ αντιστΟΞφοντας τη διάταξη-z των πιο κάτω αντικειμΞνων, Ξτσι Οστε Ξ· πιο Ξ±ΟιστεΟΞ® ΞλλειΟΞ· Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ στην ΞΊΞΏΟυφή ΞΊΞ±ΞΉ Ξ· πιο δεξιά ΞλλειΟΞ· Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ στον πυθμΞΞ½Ξ±:</flowDiv> + </flowRoot> + <path id="basic-f14-el.svgpath1127" d="m70.423,2348c0,7.6166-10.51,13.791-23.474,13.791s-23.474-6.1744-23.474-13.791,10.51-13.791,23.474-13.791,23.474,6.1745,23.474,13.791z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.362500,0.000000,0.000000,1.744680,16.79810,-4067.070)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.39901099" fill="#F90"/> + <path id="basic-f14-el.svgpath1128" d="m100.94,2351.2c0,9.7234-11.429,17.606-25.528,17.606s-25.528-7.8823-25.528-17.606c0-9.7233,11.429-17.606,25.528-17.606s25.528,7.8823,25.528,17.606z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.000000,0.000000,0.000000,1.051282,31.76290,-2451.914)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.60000002" fill="#F90"/> + <path id="basic-f14-el.svgpath1129" d="m119.72,2349.5c0,7.4546-9.7215,13.498-21.714,13.498s-21.714-6.0431-21.714-13.498c0-7.4545,9.7215-13.498,21.714-13.498s21.714,6.0431,21.714,13.498z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.000000,0.000000,0.000000,1.051282,34.11030,-2439.590)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.60000002" fill="#F90"/> + <path id="basic-f14-el.svgpath1130" d="m129.69,2348c0,5.3478-5.7804,9.6831-12.911,9.6831-7.1304,0-12.911-4.3353-12.911-9.6831,0-5.3479,5.7804-9.6831,12.911-9.6831,7.1304,0,12.911,4.3352,12.911,9.6831z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.000000,0.000000,0.000000,1.051282,36.43560,-2449.567)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.60000002" fill="#F90"/> + <path id="basic-f14-el.svgpath1131" d="m142.61,2347.1c0,4.2135-5.2549,7.6291-11.737,7.6291-6.4822,0-11.737-3.4156-11.737-7.6291,0-4.2134,5.2549-7.6291,11.737-7.6291,6.4822,0,11.737,3.4157,11.737,7.6291z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.000000,0.000000,0.000000,1.051282,37.63150,-2444.872)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.60000002" fill="#F90"/> + <path id="basic-f14-el.svgpath1132" d="m150.23,2347.4c0,3.079-3.2843,5.5751-7.3357,5.5751s-7.3357-2.4961-7.3357-5.5751c0-3.0791,3.2843-5.5751,7.3357-5.5751s7.3357,2.496,7.3357,5.5751z" fill-rule="evenodd" transform="translate(10, 4300.204349) matrix(1.000000,0.000000,0.000000,1.051282,37.04460,-2450.214)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.60000002" fill="#F90"/> + <rect id="d0e722" display="none" height="1000px" width="288" y="4364.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e722"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± Ο€ΞΏΞ»Ο Ο‡Οήσιμη συντΟμευση επιλογής ΞµΞ―Ξ½Ξ±ΞΉ το πλήκτΟΞΏ <flowSpan font-weight="bold">Tab</flowSpan>. Εάν τίποτα δεν Ξχει επιλεγεί, επιλΞΞ³ΞµΞΉ το πιο Ο‡Ξ±ΞΌΞ·Ξ»Ο Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ. ΔιαφοΟετικά επιλΞΞ³ΞµΞΉ το αντικείμενο <flowSpan font-style="italic">πάνω Ξ±Ο€Ο Ο„Ξ± επιλεγμΞΞ½Ξ± αντικείμενα</flowSpan> στη διάταξη-z. <flowSpan font-weight="bold">Shift+Tab</flowSpan> δουλεΟΞΏΟ…Ξ½ αντίστΟοφα, ΞΎΞµΞΊΞΉΞ½Οντας Ξ±Ο€Ο Ο„ΞΏ πιο ΟΞ·Ξ»Ο Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ΞΊΞ±ΞΉ Ο€ΟοχωΟΟντας Ο€ΟΞΏΟ‚ τα κάτω. Ξ‘Ο†ΞΏΟ Ο„Ξ± αντικείμενα που δημιουΟγείτε Ο€Οοστίθενται στην ΞΊΞΏΟυφή της στοίβας, πατΟντας <flowSpan font-weight="bold">Shift+Tab</flowSpan> χωΟΞ―Ο‚ επιλογή ΞΈΞ± επιλΞΞΎΞµΞΉ βολικά το αντικείμενο που δημιουΟγήσατε <flowSpan font-style="italic">τελευταίο</flowSpan>. Εξασκηθείτε ΞΌΞµ τα πλήκτΟΞ± <flowSpan font-weight="bold">Tab</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Shift+Tab</flowSpan> στη στοίβα των πιο πάνω ελλείΟεων.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="4480.991164" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="4480.991164" x="10">Επιλογή του Ξ±Ο€Ο ΞΊΞ¬Ο„Ο‰ ΞΊΞ±ΞΉ ΟƒΟΟσιμο του επιλεγμΞΞ½ΞΏΟ…</tspan> + </text> + <rect id="d0e752" display="none" height="1000px" width="288" y="4486.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e752"/> + </flowRegion> + <flowDiv xml:space="preserve">Τι Ξ½Ξ± κάνετε εάν το αντικείμενο που Ο‡Οειάζεσθε ΞµΞ―Ξ½Ξ±ΞΉ ΞΊΟΟ…ΞΌΞΌΞΞ½ΞΏ πίσω Ξ±Ο€Ο ΞΞ½Ξ± άλλο αντικείμενο; Ξσως Ξ²Ξ»Ξπετε Ξ±ΞΊΟΞΌΞ± το κάτω αντικείμενο εάν το ΞΊΞΏΟυφαίο ΞµΞ―Ξ½Ξ±ΞΉ (ΞΌΞµΟΞΉΞΊΟΟ‚) διαφανΞΟ‚, αλλά πατΟντας το ΞΈΞ± επιλΞΞΎΞµΞΉ το πάνω αντικείμενο, Οχι Ξ±Ο…Ο„Ο Ο€ΞΏΟ… Ο‡Οειάζεσθε.</flowDiv> + </flowRoot> + <rect id="d0e755" display="none" height="1000px" width="288" y="4536.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e755"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ±Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ το <flowSpan font-weight="bold">Alt+κλικ</flowSpan>. Ξ ΟΟτα <flowSpan font-weight="bold">Alt+κλικ</flowSpan> επιλΞΞ³ΞµΞΉ το ΞΊΞΏΟυφαίο αντικείμενο Οπως ΞΞ½Ξ± ΞΊΞ±Ξ½ΞΏΞ½ΞΉΞΊΟ ΞΊΞ»ΞΉΞΊ. Ξμως, το ΞµΟ€ΟΞΌΞµΞ½ΞΏ <flowSpan font-weight="bold">Alt+κλικ</flowSpan> στο ίδιο σημείο ΞΈΞ± επιλΞΞΎΞµΞΉ το αντικείμενο <flowSpan font-style="italic">κάτω Ξ±Ο€Ο</flowSpan> το ΞΊΞΏΟυφαίο. Το ΞµΟ€ΟΞΌΞµΞ½ΞΏ πάτημα το αντικείμενο Ξ±ΞΊΟΞΌΞ± πιο χαμηλά, ΞΊΞ». Ξτσι πολλά <flowSpan font-weight="bold">Alt+click</flowSpan> στη σειΟΞ¬ ΞΈΞ± κάνουν ΞΊΟκλο, ΞΊΞΏΟυφή Ο€ΟΞΏΟ‚ πυθμΞΞ½Ξ±, ΞΌΞσα Ξ±Ο€Ο Ο„Ξ· συνολική στοίβα των αντικειμΞνων της διάταξης-z στο σημείο κλικ. Ξταν φτάνετε στο ΞΊΞ±Ο„ΟτεΟΞΏ αντικείμενο, το ΞµΟ€ΟΞΌΞµΞ½ΞΏ <flowSpan font-weight="bold">Alt+κλικ</flowSpan> ΞΈΞ± επιλΞΞΎΞµΞΉ ΞΎΞ±Ξ½Ξ¬ το ΞΊΞΏΟυφαίο αντικείμενο.</flowDiv> + </flowRoot> + <rect id="d0e776" display="none" height="1000px" width="288" y="4628.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e776"/> + </flowRegion> + <flowDiv xml:space="preserve">[Εάν είσθε στο Linux, ίσως Ξ²Οείτε Οτι <flowSpan font-weight="bold">Alt+κλικ</flowSpan> δεν λειτουΟΞ³ΞµΞ― κατάλληλα. Αντίθετα, μποΟΞµΞ― Ξ½Ξ± μετακινεί το ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ Ο€Ξ±ΟάθυΟΞΏ Inkscape. Ξ‘Ο…Ο„Ο ΟƒΟ…ΞΌΞ²Ξ±Ξ―Ξ½ΞµΞΉ επειδή ΞΏ διαχειΟιστής παΟΞ±ΞΈΟΟΞΏΟ… Ξχει ΞΊΟατήσει το +κλικ Ξ³ΞΉΞ± διαφοΟετική ΞµΞ½ΞΟΞ³ΞµΞΉΞ±. Ξ Ο„ΟΟπος Ξ½Ξ± το διοΟΞΈΟσετε ΞµΞ―Ξ½Ξ±ΞΉ Ξ½Ξ± Ξ²Οείτε τη διαμΟΟφωση συμπεΟιφοΟάς του παΟΞ±ΞΈΟΟΞΏΟ… Ξ³ΞΉΞ± τον διαχειΟιστή παΟΞ±ΞΈΟΟΞΏΟ… σας ΞΊΞ±ΞΉ είτε Ξ½Ξ± το απενεΟγοποιήσετε, Ξ® Ξ½Ξ± το αντιστοιχίσετε στο πλήκτΟΞΏ Meta (πλήκτΟΞΏ aka Windows - συνήθως δίπλα στο Alt), Ξτσι Οστε άλλες εφαΟΞΌΞΏΞ³ΞΟ‚ Ξ½Ξ± μποΟΞΏΟΞ½ Ξ½Ξ± Ο‡Οησιμοποιήσουν το πλήκτΟΞΏ Alt ελεΟΞΈΞµΟΞ±.]</flowDiv> + </flowRoot> + <rect id="d0e782" display="none" height="1000px" width="288" y="4732.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e782"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ Ο‰ΟΞ±Ξ―ΞΏ, αλλά Ξ±Ο†ΞΏΟ ΞµΟ€ΞΉΞ»Ξξετε το αντικείμενο κάτω Ξ±Ο€Ο Ο„Ξ·Ξ½ επιφάνεια, τι μποΟείτε Ξ½Ξ± κάνετε ΞΌΞµ Ξ±Ο…Ο„Ο; ΞποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε πλήκτΟΞ± Ξ³ΞΉΞ± Ξ½Ξ± το μετασχηματίσετε ΞΊΞ±ΞΉ μποΟείτε Ξ½Ξ± ΟƒΟΟετε τις λαβΞΟ‚ επιλογής. Ξμως, ΟƒΟΟοντας το αντικείμενο το ίδιο ΞΈΞ± επαναφΞΟΞµΞΉ την επιλογή στο ΞΊΞΏΟυφαίο αντικείμενο ΞΎΞ±Ξ½Ξ¬ (Ξτσι σχεδιάστηκε Ξ½Ξ± δουλεΟΞµΞΉ το κλικ ΞΊΞ±ΞΉ ΟƒΟΟσιμο β€” επιλΞΞ³ΞµΞΉ το ΞΊΞΏΟυφαίο αντικείμενο κάτω Ξ±Ο€Ο Ο„ΞΏ Ξ΄ΟΞΏΞΌΞΞ± Ο€ΟΟτο, Ξπειτα ΟƒΟΟΞµΞΉ την επιλογή). Για Ξ½Ξ± πείτε στο Inkscape Ξ½Ξ± ΟƒΟΟετε <flowSpan font-style="italic">την Ο„ΟΞχουσα επιλογή</flowSpan> χωΟΞ―Ο‚ Ξ½Ξ± επιλΞΞΎΞµΞΉ τίποτα άλλο, Ο‡Οησιμοποιήστε <flowSpan font-weight="bold">Alt+ΟƒΟΟσιμο</flowSpan>. Ξ‘Ο…Ο„Ο ΞΈΞ± μετακινήσει την Ο„ΟΞχουσα επιλογή άσχετα ΞΌΞµ το Ο€ΞΏΟ ΟƒΟΟετε το ποντίκι σας.</flowDiv> + </flowRoot> + <rect id="d0e791" display="none" height="1000px" width="288" y="4856.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e791"/> + </flowRegion> + <flowDiv xml:space="preserve">Εξασκηθείτε <flowSpan font-weight="bold">Alt+κλικ</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Alt+ΟƒΟΟσιμο</flowSpan> στα Ξ΄ΟΞΏ καφΠσχήματα κάτω Ξ±Ο€Ο Ο„ΞΏ Ο€Οάσινο διαφανΞΟ‚ ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ:</flowDiv> + </flowRoot> + <path id="basic-f15-el.svgpath2575" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M126.89,3940.5c-1.71,2.8-13.23-2-15.92-0.2-2.69,1.7-2.72,13.9-5.86,14.5-3.14,0.5-6.349-10.3-9.539-11.1s-13.307,5.7-15.627,3.5,6.076-11.8,4.656-14.7c-1.419-3-12.432-3.1-12.315-6.3s12.009-3.8,13.505-6.6c1.495-2.7-2.945-13.2-0.399-15.1,2.547-1.8,10.874,5.7,14.077,5.1,3.202-0.6,7.302-9.5,10.362-8.7,3.07,0.9,0.25,11.3,2.78,13.4,2.53,2,12.65-0.8,13.8,2.2,1.16,3.1-8.72,9.8-8.76,13-0.04,3.1,10.95,8.3,9.24,11z" fill-rule="nonzero" fill="#ac7335" sodipodi:r1="28.739008" inkscape:flatsided="false" transform="translate(10, 4893.404747) matrix(0.395123,0.684370,-0.684370,0.395123,2780.015,-1592.865)" sodipodi:arg2="0.97023339" sodipodi:arg1="0.52143444" inkscape:randomized="0.047000000" sodipodi:cy="3927.1016" sodipodi:cx="100.73942" inkscape:rounded="0.21000000" sodipodi:r2="16.983238" sodipodi:sides="7"/> + <path id="basic-f15-el.svgpath2574" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M107.62,3941.6c-0.53,2.1-9.076-3.5-10.951-2.4-2.497,1.5-1.972,11.9-4.862,12.6-2.17,0.6-1.585-8.5-3.563-9.5-2.636-1.2-11.029,4.1-13.221,2.2-1.646-1.5,6.95-5.7,6.894-8-0.075-3-9.644-9.8-9.082-12.7,0.421-2.2,9.473,5.2,11.397,4,2.564-1.5,2.337-12.6,5.229-13.2,2.17-0.5,1.693,9,3.66,10.1,2.621,1.3,12.059-3.4,14.219-1.4,1.61,1.6-7.377,4.8-7.27,7,0.15,3,8.25,8.5,7.55,11.3z" fill-rule="nonzero" fill="#ff9400" sodipodi:r1="19.212250" inkscape:flatsided="false" transform="translate(10, 4893.404747) matrix(0.832600,0.480703,-0.480703,0.832600,1947.479,-3288.386)" sodipodi:arg2="0.77161843" sodipodi:arg1="0.48833395" inkscape:randomized="0.047000000" sodipodi:cy="3933.4641" sodipodi:cx="90.665482" inkscape:rounded="0.21000000" sodipodi:r2="9.3934679" sodipodi:sides="6"/> + <rect id="basic-f15-el.svgrect3197" ry="10.424" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" fill-opacity="0.29609" rx="10.424" transform="translate(10, 4893.404747) " height="56.564" width="171.79" y="-0.21458" x="44.416" fill="#2dd268"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="4974.76891" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="4974.76891" x="10">ΣυμπΞΟασμα</tspan> + </text> + <rect id="d0e816" display="none" height="1000px" width="288" y="4980" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e816"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο ΞΊΞ»ΞµΞ―Ξ½ΞµΞΉ το Ξ²Ξ±ΟƒΞΉΞΊΟ ΞΌΞ¬ΞΈΞ·ΞΌΞ±. ΥπάΟχουν Ο€ΞΏΞ»Ο Ο€ΞµΟισσΟτεΟΞ± Ξ±Ο€Ο Ξ±Ο…Ο„Ο ΟƒΟ„ΞΏ Inkscape, αλλά ΞΌΞµ τις τεχνικΞΟ‚ που πεΟΞΉΞ³Οάφτηκαν ΞµΞ΄Ο, ΞΈΞ± μποΟείτε ήδη Ξ½Ξ± δημιουΟγήσετε απλά αλλά Ο‡Οήσιμα Ξ³Οαφικά. Για πιο πεΟίπλοκο υλικΟ, συνεχίστε ΞΌΞµ το Ο€ΟοχωΟΞ·ΞΌΞΞ½ΞΏ ΞΊΞ±ΞΉ τα άλλα μαθήματα στο <flowSpan font-family="Sans">Βοήθεια > Ξαθήματα</flowSpan>.</flowDiv> + </flowRoot> + <g transform="translate(0, 5040.591410999999)"> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/> + <filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset64" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/> + <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/> + <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/> + <g id="g1515" filter="url(#filter56)" fill-rule="evenodd" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,53.985559)"> + <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" fill="#000"/> + </g> + </g> +</svg> diff --git a/share/tutorials/tutorial-calligraphy.el.svg b/share/tutorials/tutorial-calligraphy.el.svg new file mode 100644 index 000000000..587b13df6 --- /dev/null +++ b/share/tutorials/tutorial-calligraphy.el.svg @@ -0,0 +1,815 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. --> +<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient841"> + <stop id="stop842" stop-color="#0082ab" offset="0"/> + <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/> + <filter id="filter48" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset56" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/> + <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/> + <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/> + <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/> + <g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-3.296641)"> + <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" fill="#000"/> + </g> + <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff"> + <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::ΞΑΛΛΙΓΡΑΦΞΞ‘</tspan> + </text> +bulia byak, buliabyak@users.sf.net and josh andler, scislac@users.sf.net + <rect id="d0e15" display="none" height="1000px" width="264" y="36" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e15"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ± Ξ±Ο€Ο Ο„Ξ± μεγάλα διαθΞσιμα ΞµΟγαλεία που ΞµΞ―Ξ½Ξ±ΞΉ διαθΞσιμα στο Inkscape ΞµΞ―Ξ½Ξ±ΞΉ το ΞµΟγαλείο καλλιγΟαφίας. Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα ΞΈΞ± σας βοηθήσει Ξ½Ξ± εξοικειωθείτε ΞΌΞµ τη Ο‡Οήση του ΞµΟγαλείου, ΞΊΞ±ΞΈΟΟ‚ ΞΊΞ±ΞΉ Ξ½Ξ± σας επιδείξει ΞΌΞµΟΞΉΞΊΞΟ‚ βασικΞΟ‚ τεχνικΞΟ‚ της Ο„Ξχνης της καλλιγΟαφίας.</flowDiv> + </flowRoot> + <rect id="d0e18" display="none" height="1000px" width="264" y="81.67" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e18"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ§Οησιμοποιήστε <flowSpan font-weight="bold">Ctrl+Ξ²Ξλη</flowSpan>, <flowSpan font-weight="bold">Ο„ΟΞΏΟ‡ΟΟ‚ ποντικιοΟ</flowSpan>, Ξ® <flowSpan font-weight="bold">ΟƒΟΟσιμο μεσαίου πλήκτΟΞΏΟ…</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± κυλίσετε τη σελίδα Ο€ΟΞΏΟ‚ τα κάτω. Για τα βασικά δημιουΟΞ³Ξ―Ξ± αντικειμΞΞ½ΞΏΟ…, επιλογή ΞΊΞ±ΞΉ μετασχηματισμΟΟ‚, δείτε το Ξ²Ξ±ΟƒΞΉΞΊΟ ΞΌΞ¬ΞΈΞ·ΞΌΞ± στο <flowSpan font-family="Sans">Βοήθεια > Ξαθήματα</flowSpan>.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="146.12655800000002" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="146.12655800000002" x="10">ΙστοΟΞ―Ξ± ΞΊΞ±ΞΉ ΞΌΞΏΟφοποιήσεις</tspan> + </text> + <rect id="d0e39" display="none" height="1000px" width="288" y="151.33" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e39"/> + </flowRegion> + <flowDiv xml:space="preserve">Πηγαίνοντας στον ΞΏΟΞΉΟƒΞΌΟ Ο„ΞΏΟ… λεξικοΟ, <flowSpan font-style="italic">καλλιγΟαφία</flowSpan> σημαίνει "Ο‰ΟΞ±Ξ―Ξ± Ξ³Οαφή" Ξ® "σωστή Ξ® ΞΊΞΏΞΌΟΞ® Ο„Ξχνη Ξ³Οαφής". Ξυσιαστικά, καλλιγΟαφία ΞµΞ―Ξ½Ξ±ΞΉ Ξ· Ο„Ξχνη δημιουΟΞ³Ξ―Ξ±Ο‚ Ο‰Οαίων Ξ® ΞΊΞΏΞΌΟΟΞ½ χειΟΟΞ³Οαφων. ΞποΟΞµΞ― Ξ½Ξ± Ξ±ΞΊΞΏΟγεται εκφοβιστικΟ, αλλά ΞΌΞµ λίγη εξάσκηση, οποιοσδήποτε μποΟΞµΞ― Ξ½Ξ± Ξ³Ξ―Ξ½ΞµΞΉ ΞΊΟΟΞΉΞΏΟ‚ των βασικΟΞ½ αυτής της Ο„Ξχνης.</flowDiv> + </flowRoot> + <rect id="d0e45" display="none" height="1000px" width="288" y="212.06" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e45"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ Ο€ΟΟτες ΞΌΞΏΟΟ†ΞΟ‚ της καλλιγΟαφίας Ο‡ΟονολογοΟνται Ξ±Ο€Ο Ο„ΞΉΟ‚ ζωγΟαφιΞΟ‚ του Ξ±Ξ½ΞΈΟΟπου των σπηλαίων. ΞΞΟ‡ΟΞΉ το 1440 ΞΌ.Ξ§., Ο€ΟΞΉΞ½ την τυπογΟαφία, Ξ· καλλιγΟαφία ήταν ΞΏ Ο„ΟΟπος που Ξ³ΞΉΞ½Οντουσαν βιβλία ΞΊΞ±ΞΉ άλλες ΞµΞΊΞ΄Οσεις. ΞΞ½Ξ±Ο‚ αντιγΟΞ±Ο†ΞΞ±Ο‚ ΞΟ€Οεπε Ξ½Ξ± Ξ³ΟΞ¬ΟΞµΞΉ ΞΌΞµ το Ο‡ΞΟΞΉ κάθε αντίγΟαφο ΞΊΞ±ΞΈΞµΞ½ΟΟ‚ βιβλίου Ξ® Ξκδοσης. Ξ— χειΟΞΏΞ³Οαφή Ξ³ΞΉΞ½Οταν ΞΌΞµ φτεΟΟ ΞΊΞ±ΞΉ μελάνι σε υλικά, Οπως πεΟΞ³Ξ±ΞΌΞ·Ξ½Ξ®. ΞΞΉ ΞΌΞΏΟφοποιήσεις των Ξ³Οαμμάτων που Ο‡Οησιμοποιήθηκαν κατά το Ο€ΞΟασμα των Ξ±ΞΉΟνων εμπεΟΞΉΞχουν Rustic, Carolingian, Blackletter, ΞΊΞ». Ξσως Ξ· πιο συνηθισμΞΞ½Ξ· τοποθεσία, Οπου ΞΏ ΞΌΞσος άνθΟωπος ΞΈΞ± συναντήσει καλλιγΟαφία σήμεΟΞ± ΞµΞ―Ξ½Ξ±ΞΉ στις Ο€Οοσκλήσεις γάμων.</flowDiv> + </flowRoot> + <rect id="d0e48" display="none" height="1000px" width="288" y="325.89" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e48"/> + </flowRegion> + <flowDiv xml:space="preserve">ΥπάΟχουν Ο„ΟΞµΞΉΟ‚ ΞΊΟΟΞΉΞµΟ‚ ΞΌΞΏΟφοποιήσεις καλλιγΟαφίας:</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 350.0687722)"/> + <rect id="d0e54" display="none" height="1000px" width="258" y="344.07" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e54"/> + </flowRegion> + <flowDiv xml:space="preserve">Δυτική Ξ® ΡωμαΟΞΊΞ®</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 368.1312722)"/> + <rect id="d0e58" display="none" height="1000px" width="258" y="362.13" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e58"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘ΟΞ±Ξ²ΞΉΞΊΞ®</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 386.1937722)"/> + <rect id="d0e62" display="none" height="1000px" width="258" y="380.19" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e62"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ½ΞΞ¶ΞΉΞΊΞ· Ξ® Ανατολική</flowDiv> + </flowRoot> + <rect id="d0e66" display="none" height="1000px" width="288" y="398.26" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e66"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα εστιάζει ΞΊΟ…Οίως στη δυτική καλλιγΟαφία, ΞΊΞ±ΞΈΟΟ‚ ΞΏΞΉ Ξ΄ΟΞΏ άλλες ΞΌΞΏΟφοποιήσεις τείνουν Ξ½Ξ± Ο‡Οησιμοποιήσουν ΞΞ½Ξ± πινΞλο (αντί Ξ³ΞΉΞ± Ο€ΞΞ½Ξ± ΞΌΞµ ΞΌΟτη), που δεν ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ Ο„ΟΞχων Ο„ΟΟπος λειτουΟΞ³Ξ―Ξ±Ο‚ του ΞµΟγαλείου καλλιγΟαφίας.</flowDiv> + </flowRoot> + <rect id="d0e69" display="none" height="1000px" width="288" y="448.25" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e69"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ½Ξ± μεγάλο πλεονΞκτημα που Ξχουμε συγκΟιτικά ΞΌΞµ τους αντιγΟαφείς του παΟελθΟντος ΞµΞ―Ξ½Ξ±ΞΉ Ξ· εντολή <flowSpan font-family="Sans">ΑναίΟεση</flowSpan>: Εάν κάνετε ΞΞ½Ξ± λάθος, Ξ· συνολική σελίδα δεν καταστΟΞφεται. Το ΞµΟγαλείο καλλιγΟαφίας του Inkscape ΞµΞ½ΞµΟγοποιεί επίσης ΞΌΞµΟΞΉΞΊΞΟ‚ τεχνικΞΟ‚ που ΞΈΞ± ήταν δυνατΞΟ‚ ΞΌΞµ ΞΌΞΉΞ± παΟαδοσιακή Ο€ΞΞ½Ξ± ΞΊΞ±ΞΉ μελάνι.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="521.6733254000001" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="521.6733254000001" x="10">ΥλικΟ</tspan> + </text> + <rect id="d0e81" display="none" height="1000px" width="288" y="526.87" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e81"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ± πάΟετε τα Ξ¬Οιστα αποτελΞσματα, εάν Ο‡Οησιμοποιήσετε ΞΌΞΉΞ± <flowSpan font-style="italic">πινακίδα ΞΊΞ±ΞΉ Ο€ΞΞ½Ξ±</flowSpan> (Ο€.Ο‡. Wacom). Ξ›ΟΞ³Ο‰ της ευλυγισίας του ΞµΟγαλείου ΞΌΞ±Ο‚, Ξ±ΞΊΟΞΌΞ± ΞΊΞ±ΞΉ αυτοί ΞΌΞµ ΞΌΟΞ½ΞΏ ΞΞ½Ξ± ποντίκι μποΟΞΏΟΞ½ Ξ½Ξ± κάνουν κάποια Ξ±Οκετά πεΟίπλοκη καλλιγΟαφία, Ξ±Ξ½ ΞΊΞ±ΞΉ ΞΈΞ± υπάΟχει κάποια δυσκολία στην παΟαγωγή Ξ³ΟήγοΟων καμπυλΟΞ½ πινελιΟΞ½.</flowDiv> + </flowRoot> + <rect id="d0e87" display="none" height="1000px" width="288" y="587.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e87"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape μποΟΞµΞ― Ξ½Ξ± Ο‡Οησιμοποιήσει την <flowSpan font-style="italic">ευαισθησία πίεσης</flowSpan> ΞΊΞ±ΞΉ την <flowSpan font-style="italic">ευαισθησία κλίσης</flowSpan> ΞΌΞΉΞ±Ο‚ Ο€ΞΞ½Ξ±Ο‚ πινακίδας που υποστηΟΞ―Ξ¶ΞµΞΉ αυτά τα χαΟακτηΟιστικά. ΞΞΉ λειτουΟΞ³Ξ―ΞµΟ‚ ευαισθησίας απενεΟγοποιοΟνται Ξ±Ο€Ο ΞµΟ€ΞΉΞ»ΞΏΞ³Ξ®, επειδή απαιτοΟΞ½ διαμΟΟφωση. Επίσης, Ξ½Ξ± ΞΈΟ…ΞΌΟσαστε Οτι Ξ· καλλιγΟαφία ΞΌΞµ Ο€ΞΞ½Ξ± Ξ® Ο€ΞΞ½Ξ± ΞΌΞµ ΞΌΟτη δεν ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο ΞµΟ…Ξ±Ξ―ΟƒΞΈΞ·Ο„Ξ· στην πίεση, αντίθετα ΞΌΞµ το πινΞλο.</flowDiv> + </flowRoot> + <rect id="d0e96" display="none" height="1000px" width="288" y="658.77" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e96"/> + </flowRegion> + <flowDiv xml:space="preserve">Εάν Ξχετε ΞΌΞΉΞ± πινακίδα ΞΊΞ±ΞΉ ΞΈΞ± ΞΈΞλατε Ξ½Ξ± Ο‡Οησιμοποιήσετε τα χαΟακτηΟιστικά ευαισθησίας, ΞΈΞ± Ο‡Οειασθείτε Ξ½Ξ± διαμοΟΟ†Οσετε την συσκευή σας. Αυτή Ξ· διαμΟΟφωση ΞΈΞ± Ο‡Οειασθεί Ξ½Ξ± εκτελεσθεί ΞΌΟΞ½ΞΏ ΞΌΞΉΞ± φοΟΞ¬ ΞΊΞ±ΞΉ ΞΏΞΉ Ουθμίσεις ΞΈΞ± αποθηκευτοΟΞ½. Για Ξ½Ξ± ΞµΞ½ΞµΟγοποιήσετε αυτήν την υποστήΟΞΉΞΎΞ·, Ο€ΟΞπει Ξ· πινακίδα Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ συνδεμΞΞ½Ξ· Ο€ΟΞΉΞ½ την εκκίνηση του inkscape ΞΊΞ±ΞΉ Ξπειτα Ξ½Ξ± συνεχίσετε ΞΌΞµ το άνοιγμα του διαλΟΞ³ΞΏΟ… <flowSpan font-style="italic">ΣυσκευΞΟ‚ ΞµΞΉΟƒΟδου...</flowSpan> ΞΌΞσα Ξ±Ο€Ο Ο„ΞΏ ΞΌΞµΞ½ΞΏΟ <flowSpan font-style="italic">Ξ‘Οχείο</flowSpan>. ΞΞµ Ξ±Ο…Ο„Ο Ο„ΞΏ διάλογο Ξ±Ξ½ΞΏΞΉΞΊΟ„Ο, μποΟείτε Ξ½Ξ± διαλΞξετε την Ο€ΟοτιμΟΞΌΞµΞ½Ξ· συσκευή ΞΊΞ±ΞΉ Ουθμίσεις Ξ³ΞΉΞ± την Ο€ΞΞ½Ξ± της πινακίδας σας. Ξ¤Ξλος, μετά την επιλογή Ξ±Ο…Ο„ΟΞ½ των Ουθμίσεων, μετάβαση στο ΞµΟγαλείο καλλιγΟαφίας ΞΊΞ±ΞΉ εναλλαγή των κουμπιΟΞ½ Ξ³Οαμμής ΞµΟγαλείων Ξ³ΞΉΞ± πίεση ΞΊΞ±ΞΉ κλίση. Ξ‘Ο€Ο Ξ΄Ο‰ ΞΊΞ±ΞΉ Ο€ΞΟΞ±, το Inkscape ΞΈΞ± θυμάται Ξ±Ο…Ο„ΞΟ‚ τις Ουθμίσεις στην εκκίνηση.</flowDiv> + </flowRoot> + <rect id="d0e105" display="none" height="1000px" width="288" y="804.51" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e105"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— Ο€ΞΞ½Ξ± καλλιγΟαφίας του Inkscape μποΟΞµΞ― Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ ευαίσθητη στην <flowSpan font-style="italic">ταχΟτητα</flowSpan> της πινελιάς (δείτε "Ξ»Ξπτυνση" πιο κάτω), Ξτσι εάν Ο‡Οησιμοποιείτε ποντίκι, ΞΈΞ± ΞΈΞλετε Ο€ΟοφανΟΟ‚ Ξ½Ξ± μηδενίσετε αυτήν την παΟάμετΟΞΏ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="867.2914744000001" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="867.2914744000001" x="10">ΕπιλογΞΟ‚ ΞµΟγαλείου καλλιγΟαφίας.</tspan> + </text> + <rect id="d0e117" display="none" height="1000px" width="288" y="872.49" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e117"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξετάβαση στο ΞµΟγαλείο καλλιγΟαφίας πιΞζοντας <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, Ξ® το πλήκτΟΞΏ <flowSpan font-weight="bold">C</flowSpan>, Ξ® πατΟντας στο κουπί της Ξ³Οαμμής ΞµΟγαλείων. Στην Ξ±Ξ½ΟτεΟΞ· Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων, ΞΈΞ± σημειΟσετε Οτι υπάΟχουν 8 επιλογΞΟ‚: πλάτος & Ξ»Ξπτυνση; γωνία & ΣταθεΟοποίηση; κεφαλαία; Ο„ΟΞμουλο, ΑνατάΟΞ±ΞΎΞ· & μάζα. ΥπάΟχουν επίσης Ξ΄ΟΞΏ κουμπιά Ξ³ΞΉΞ± εναλλαγή ευαισθησίας πίεσης ΞΊΞ±ΞΉ κλίσης πινακίδας ΞµΞ½ΞµΟΞ³Ο ΞΊΞ±ΞΉ Ξ±Ξ½ΞµΞ½ΞµΟΞ³Ο (Ξ³ΞΉΞ± σχεδιαστικΞΟ‚ πινακίδες).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="967.3269654000001" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="967.3269654000001" x="10">Πλάτος & Ξ»Ξπτυνση</tspan> + </text> + <rect id="d0e132" display="none" height="1000px" width="288" y="972.53" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e132"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ Ξ¶ΞµΟ…Ξ³Ξ¬ΟΞΉ επιλογΟΞ½ ΞµΞ»Ξγχουν το <flowSpan font-style="italic">πλάτος</flowSpan> της Ο€ΞΞ½Ξ±Ο‚ σας. Το πλάτος μποΟΞµΞ― Ξ½Ξ± ποικίλει Ξ±Ο€Ο 1 Ξως 100 ΞΊΞ±ΞΉ (Ξ±Ο€Ο Ο€Οοεπιλογή) ΞΌΞµΟ„ΟΞΉΞται σε μονάδες σχετικΞΟ‚ ΞΌΞµ το ΞΌΞΞ³ΞµΞΈΞΏΟ‚ του παΟΞ±ΞΈΟΟΞΏΟ… επεξεΟγασίας σας, αλλά Ξ±Ξ½ΞµΞΎΞ¬Οτητες Ξ±Ο€Ο Ο„Ξ·Ξ½ εστίαση. Ξ‘Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ λογικΟ, επειδή Ξ· φυσική "μονάδα ΞΌΞΟ„Οησης" στην καλλιγΟαφία ΞµΞ―Ξ½Ξ±ΞΉ Ξ· πεΟιοχή της κίνησης του χεΟΞΉΞΏΟ ΟƒΞ±Ο‚ ΞΊΞ±ΞΉ συνεπΟΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ κατάλληλη Ξ½Ξ± Ξχει το πλάτος της ΞΌΟτης της Ο€ΞΞ½Ξ±Ο‚ σας ΞΌΞµ σταθεΟΟ Ξ»ΟΞ³ΞΏ συγκΟιτικά ΞΌΞµ το ΞΌΞΞ³ΞµΞΈΞΏΟ‚ της "πεΟιοχής σχεδίασης" ΞΊΞ±ΞΉ Οχι σε κάποιες Ο€ΟαγματικΞΟ‚ μονάδες που ΞΈΞ± το κάναν Ξ½Ξ± ΞµΞΎΞ±Οτάται Ξ±Ο€Ο Ο„Ξ·Ξ½ εστίαση. Αυτή Ξ· συμπεΟιφοΟΞ¬ ΞµΞ―Ξ½Ξ±ΞΉ Ομως δυνητική, Ξτσι μποΟΞµΞ― Ξ½Ξ± αλλαχθεί Ξ³ΞΉΞ± αυτοΟΟ‚ που Ο€ΟοτιμοΟΞ½ Ξ±Ο€Ολυτες μονάδες Ξ±Ξ½ΞµΞΎΞ¬Οτητα Ξ±Ο€Ο Ο„Ξ·Ξ½ εστίαση. Για μετάβαση σε αυτήν την κατάσταση, Ο‡Οησιμοποιήστε το πλαίσιο ΞµΞ»Ξγχου στη σελίδα Ο€Οοτιμήσεων του ΞµΟγαλείου (μποΟείτε Ξ½Ξ± το ανοίξετε διπλοπατΟντας το κουμπί ΞµΟγαλείου).</flowDiv> + </flowRoot> + <rect id="d0e138" display="none" height="1000px" width="288" y="1128.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e138"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο†ΞΏΟ Ο„ΞΏ πλάτος της Ο€ΞΞ½Ξ±Ο‚ αλλάζει συχνά, μποΟείτε Ξ½Ξ± το Ουθμίσετε χωΟΞ―Ο‚ Ξ½Ξ± πάτε στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγαλείων, Ο‡ΟησιμοποιΟντας τα πλήκτΟΞ± Ξ²ΞµΞ»ΟΞ½ <flowSpan font-weight="bold">Ξ±ΟιστεΟΟ</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">δεξί</flowSpan> Ξ® ΞΌΞµ ΞΌΞΉΞ± πινακίδα που υποστηΟΞ―Ξ¶ΞµΞΉ τη λειτουΟΞ³Ξ―Ξ± ευαισθησίας πίεσης. Το Ξ¬Οιστο ΞΌΞµ αυτά τα πλήκτΟΞ± ΞµΞ―Ξ½Ξ±ΞΉ Οτι δουλεΟΞΏΟ…Ξ½ ΞµΞ½Ο ΟƒΟ‡ΞµΞ΄ΞΉΞ¬Ξ¶ΞµΟ„Ξµ, Ξτσι μποΟείτε Ξ½Ξ± αλλάξετε το πλάτος της Ο€ΞΞ½Ξ±Ο‚ σας Ξ²Ξ±ΞΈΞΌΞΉΞ±Ξ―Ξ± στο ΞΌΞσο της πινελιάς:</flowDiv> + </flowRoot> + <text id="calligraphy-f01-el.svgtext1944" font-weight="normal" xml:space="preserve" transform="translate(10, 1208.2037334000001) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="9.8966846" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-el.svgtspan1945" y="4.5585475" x="9.8966846" role="line">πλάτος=1, Ξ±Οξηση... φτάνοντας 47, μείωση... επιστΟοφή στο 0</tspan></text> + <path id="calligraphy-f01-el.svgpath1924" d="M9.1204,35.709c0.9316-5.078,2.4816-14.745,9.0106-14.719,8.84,10.556-4.057,43.768,0.144,55.285,4.081-15.495,6.504-31.801,12.562-46.852,1.701-4.225,2.12-7.102,6.588-4.823,2.384,13.632,0.485,27.841-0.403,41.587-0.149,2.306,1.754,8.157-0.204,6.93-4.417-2.767-1.946-5.807-0.97-10.514,1.185-5.918,1.144-6.374,2.904-12.326,2.564-8.67,7.108-28.554,19.933-24.974,2.61,0.729,2.735,7.73,2.787,9.311,0.103,3.157-0.175,7.64-0.323,10.756-1.515,4.677,1.194,25.395-8.709,19.83-1.952-1.097,7.698-31.492,8.782-34.309,25.586-40.898,19.203,22.846,17.852,33.492-0.811,5.04,0.818,6.097-8.483,3.447-0.089-0.026,0.254-1.921,0.829-5.253,1.617-9.37,6.806-35.786,16.39-39.72,3.576,0.224,7.235-0.118,10.73,0.674,3.73,0.844,2.23,28.887,1.92,32.641-0.24,2.994-0.621,5.978-0.775,8.978-0.063,1.237,1.325,3.64,0.091,3.716-11.032,0.678-10.754,2.466-9.444-2.619,3.503-10.893,14.008-46.878,28.408-47.33,11.54-0.362,13.54-2.424,18.48,4.878,3.11,4.429,3.93,45.038,1.63,45.159-15.69,0.819-13.99,1.101-12.27-9.844,0.36-1.724,0.69-3.453,1.07-5.173,1.98-9.024,5.09-20.499,11.92-27.237,1.01-0.996,2.27-1.987,3.79-1.949,18.75,0.47,17.95-0.942,19.94,14.835,0.44,2.118,0.35,27.483-0.63,27.546-4.71,0.301-9.48,0.4-14.15-0.235-1.99-0.27,5.17-25.894,5.61-27.281,1.36-8.593,19.71-40.437,32.41-21.138,6.69,10.167,3.21,27.718,1.99,38.921-1.75,10.527,0.23,15.659-14.68,10.814-0.01-0.002,0.83-4.26,1.56-6.809,3.13-11.027,6.89-23.077,15.06-31.463,26.22-13.783,24.19,31.328,20.53,44.478-3.37-0.135-7.02,0.942-10.12-0.404-0.21-0.092,0.81-4.992,2.03-9.691,2.68-10.355,5.75-20.792,10.24-30.524,2.25-4.856,5.13-11.172,9.27-14.831,7.17-6.351,14.29-1.959,16.19,5.334,0.85,5.409,1.13,6.225,1.38,11.963,0.41,9.122,0.32,18.425-0.16,27.543-0.2,3.763-0.58,5.542-0.49,9.075,0.02,0.581,0.76,1.959,0.22,1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85,12.45-27.717,14.53-31.722,2.06-3.558,4.07-7.516,6.81-10.656,3.56-4.067,12.74-6.465,14.43,0.713,3.36,14.212-0.3,31.173-2,45.454-0.48,2.491-0.19,3.545-5.29,1.152-1.02-0.478,1.34-10.519,1.37-10.67,1.76-8.363,9.58-38.515,18.93-41.057,1.59,0.313,3.37,0.116,4.77,0.941,2.25,1.332-1.17,30.392-1.62,34.351-0.21,1.859-0.46,6.587-0.94,6.758-3.28,1.164-2.09-0.65-1.69-1.846,4.08-13.812,6.71-30.096,16.16-41.568,4.61-5.589,6.27,0.264,6.42,4.665,2.19,11.71-4.29,25.935-2.39,37.33,0.09,0.553,0.51-1.001,0.69-1.531,1.23-3.624,2.55-7.183,3.96-10.745,2.94-4.381,9.38-25.422,10.47-8.378-1.09-17.044-7.53,3.997-10.47,8.378-1.41,3.562-2.73,7.121-3.96,10.745-0.18,0.53-0.6,2.084-0.69,1.531-1.82-10.95,3.73-25.953,1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83,4.713-5.34,5.563-7.01,11.669-10.21,25.33-13.36,38.413-0.2,1.558,0.17,2.846-2.65,1.846-1.06-0.377,0.12-2.248,0.22-3.369,0.93-10.706,2.69-21.446,2.19-32.228-0.16-3.486-2.79-5.505,1.39-6.453-8.84,2.405-16.81,33.016-18.26,41.057-0.47,2.592-0.8,10.549-1.04,10.67-5.64,2.8-4.81,1.053-4.38-1.152,1.57-13.192,3.25-27.488,1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017,0.83-1.181,2.77-0.861,4.19-1.12,0.81-0.147-1.66,0.319-2.34,0.784-4.48,3.071-6.62,9.015-9.47,13.296-2.16,4.536-11.63,29.999-13.52,31.722-2.53,2.298-6.1,3.246-9.42,4.043-1.75,0.418-0.18-3.583-0.15-5.375,0.25-14.98,1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614,3.52-6.853,0.6,0.157-1.28-0.676-5.22,4.918-2.71,3.843-4.15,7.08-6.06,11.432-4.31,9.831-7.72,20.012-9.91,30.524-0.42,1.977-0.74,3.971-1.09,5.961-0.22,1.241,0.57,3.269-0.61,3.73-3.07,1.21-6.6,0.269-9.9,0.404,3.11-11.191,1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454,15.54-3.293,10.91-1.03,7.53,0.923-8.01,8.227-11.69,20.567-14.39,31.463-0.34,1.364-0.68,2.726-1,4.095-0.2,0.901,0.32,2.457-0.56,2.714-17.57,5.079-11.8-0.307-10.68-10.814,1.1-10.155,1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795,3.8-0.725,7.81-0.778,11.6-0.003,1.07,0.219-1.94,1.068-2.73,1.817-5.89,5.539-8.39,13.912-11.39,21.119-1.91,6.034-3.62,11.968-4.68,18.217-0.37,2.153-0.76,5.113-0.91,7.381-0.04,0.56,0.53,1.607-0.02,1.683-4.59,0.633-9.27,0.545-13.89,0.235-0.39-0.027,0.16-0.765,0.21-1.153,0.2-1.645,0.41-4.598,0.5-6.08,0.41-6.763,0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05,8.43-14.835,0.31-0.013-2.91-0.005-6.34,4.624-6.38,8.615-9.19,19.431-11.43,29.735-1.7,10.783,1.57,10.724-14.11,9.844-0.38-0.021,0.21-0.723,0.3-1.09,0.68-2.886,0.63-2.834,0.96-6.202,1.23-12.529,2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15,5.22-4.878,1.01,0.089-1.99,0.447-2.91,0.877-2.66,1.247-4.66,3.005-6.65,5.159-10.5,11.399-15.28,26.842-19.85,41.294-2.143,5.174-0.59,3.239-11.582,2.619-0.217-0.012,1.877-22.305,2.005-24.42,0.305-5.044,0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03,2.352-0.992,5.085-0.45,7.628-0.674-9.309,3.821-14.089,26.213-16.251,35.056-0.642,2.623-1.842,9.882-1.969,9.917-10.392,2.798-7.845,1.476-7.205-3.447,1.345-10.599,3.084-21.334,2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497,1.268-1.157,3.355-0.728,5.034-1.083,0.66-0.139-1.386,0.109-1.975,0.438-3.754,2.09-5.327,6.718-7.27,10.201-4.063,9.155-6.833,18.644-8.693,28.49-0.363,1.922,0.974,4.907-0.756,5.819-1.626,0.857-3.623,0.728-5.46,0.762-0.238,0.004,0.199-0.437,0.257-0.668,0.434-1.714,0.823-3.442,1.156-5.179,0.932-4.873,1.455-9.826,2.074-14.745,0.543-5.065,1.02-10.012,0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796,0.412-0.742,2.387-1.139,2.529-0.302,0.15,0.88-1.676,0.688-2.367,1.254-0.94,0.769-1.726,1.721-2.454,2.693-7.293,9.734-9.769,22.189-12.867,33.655-1.079,5.2-0.223,8.27-5.372,10.514-2.125,0.926,0.306-4.625,0.537-6.93,1.383-13.762,2.927-27.79,1.405-41.587,2.349-3.502-1.549,0.93-1.69,1.172-1.82,3.131-2.554,5.08-3.802,8.617-3.587,10.168-6.046,20.605-8.594,31.065-0.761,3.126-0.984,9.093-4.062,10.821-4.201-11.517,8.695-44.729-0.145-55.285-5.398,2.099-7.155,9.443-8.0088,14.719h-0.3338z" fill-rule="nonzero" transform="translate(10, 1208.2037334000001) " display="block" fill="#000"/> + <rect id="d0e157" display="none" height="1000px" width="288" y="1297.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e157"/> + </flowRegion> + <flowDiv xml:space="preserve">Το πλάτος της Ο€ΞΞ½Ξ±Ο‚ μποΟΞµΞ― επίσης Ξ½Ξ± ΞµΞΎΞ±Οτάται Ξ±Ο€Ο Ο„Ξ·Ξ½ ταχΟτητα, Οπως ΞµΞ»Ξγχεται Ξ±Ο€Ο Ο„Ξ·Ξ½ παΟάμετΟΞΏ <flowSpan font-style="italic">Ξ»Ξπτυνσης</flowSpan>. Αυτή Ξ· παΟάμετΟΞΏΟ‚ μποΟΞµΞ― Ξ½Ξ± πάΟΞµΞΉ τιμΞΟ‚ Ξ±Ο€Ο -100 Ξως 100. ΞΞ·Ξ΄ΞΞ½ σημαίνει Οτι το πλάτος ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Ξ½ΞµΞΎΞ¬Οτητο Ξ±Ο€Ο Ο„Ξ·Ξ½ ταχΟτητα, θετικΞΟ‚ τιμΞΟ‚ κάνουν τις πιο Ξ³ΟήγοΟΞµΟ‚ πινελιΞΟ‚ πιο λεπτΞΟ‚, Ξ±ΟνητικΞΟ‚ τιμΞΟ‚ κάνουν τις πιο Ξ³ΟήγοΟΞµΟ‚ πινελιΞΟ‚ πιο πλατιΞΟ‚. Ξ— Ο€Οοεπιλογή 0,1 σημαίνει ΞΌΞΟ„ΟΞΉΞ± Ξ»Ξπτυνση των Ξ³ΟήγοΟων πινελιΟΞ½. Ξ™Ξ΄ΞΏΟ ΞΌΞµΟΞΉΞΊΞ¬ παΟαδείγματα, Ολα σχεδιασμΞΞ½Ξ± ΞΌΞµ πλάτος=20 ΞΊΞ±ΞΉ γωνία=90:</flowDiv> + </flowRoot> + <text id="calligraphy-f02-el.svgtext1987" font-weight="normal" xml:space="preserve" transform="translate(10, 1398.0593814000001) " display="block" font-size="6.0000000" font-style="normal" y="4.5588474" x="39.896687" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1988" y="4.5588474" x="39.896687" role="line">Ξ»Ξπτυνση = 0 (ΞΏΞΌΞΏΞΉΟΞΌΞΏΟφο πλάτος)</tspan></text> + <text id="calligraphy-f02-el.svgtext1990" font-weight="normal" xml:space="preserve" transform="translate(10, 1398.0593814000001) " display="block" font-size="6.0000000" font-style="normal" y="74.558846" x="62.396687" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1991" y="74.558846" x="62.396687" role="line">Ξ»Ξπτυνση = 10</tspan></text> + <text id="calligraphy-f02-el.svgtext1993" font-weight="normal" xml:space="preserve" transform="translate(10, 1398.0593814000001) " display="block" font-size="6.0000000" font-style="normal" y="139.55885" x="60.851486" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1994" y="139.55885" x="60.851486" role="line">Ξ»Ξπτυνση = 40</tspan></text> + <text id="calligraphy-f02-el.svgtext1996" font-weight="normal" xml:space="preserve" transform="translate(10, 1398.0593814000001) " display="block" font-size="6.0000000" font-style="normal" y="4.5588474" x="212.39668" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1997" y="4.5588474" x="212.39668" role="line">Ξ»Ξπτυνση = -20</tspan></text> + <text id="calligraphy-f02-el.svgtext1999" font-weight="normal" xml:space="preserve" transform="translate(10, 1398.0593814000001) " display="block" font-size="6.0000000" font-style="normal" y="84.558846" x="212.39668" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan2000" y="84.558846" x="212.39668" role="line">Ξ»Ξπτυνση = -60</tspan></text> + <path id="calligraphy-f02-el.svgpath1948" d="M16.131,33.033c8.337-0.13,16.662,0.161,24.989,0.528,13.402,0.426,26.816,0.692,40.226,0.587,16.433-0.562,32.824-0.034,49.214,1.077,6.03,0.438,3.02,0.219,9.01,0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41,0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1949" d="M23.278,91.5c0.014-1.878-0.022-3.758,0.044-5.635,0.023-0.672,23.428-1.148,24.344-1.161,21.837-0.012,43.599-2.002,65.414-2.705,8.77-0.16,17.54-0.064,26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833,0.54-43.566,2.964-65.414,3.099-6.062,0.206-12.107,0.539-18.136,1.217-1.724,0.194-3.456,0.418-5.151,0.792-0.362,0.08-1.043,0.715-1.057,0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1950" d="M22.674,93.072c10.861,0.324,21.731,0.214,32.598,0.577,26.23,0.718,52.498,0.983,78.728-0.078,1.19-0.058,2.38-0.117,3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487,0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598,0.911v-5.566z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1951" d="M26.302,102.21c15.41-0.4,30.843-0.14,46.266,0.23,24.153,0.53,48.332,0.03,72.442-1.43v4.44c-24.14-0.82-48.292,0.04-72.442,0.11-15.448,0.09-30.935,0.1-46.266,2.22v-5.57z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1952" d="M29.272,112.49c15.339-0.52,30.656-2.18,46.017-2.76,21.807-0.5,43.611,0.91,65.341,2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442,0.92-30.73,2.96-46.017,5.23v-5.57z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1953" d="M16.881,27.194c0.015-1.861-0.032-3.723,0.044-5.583,0.016-0.377,0.756,0.015,1.134,0,1.085-0.042,2.164-0.186,3.239-0.327,6.213-0.809,12.412-1.705,18.637-2.423,26.492-3.019,53.136-3.546,79.725-1.737,9.03,0.687,18.03,1.728,27,2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725,1.737-0.955,0.11-22.995,3.122-23.01,2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1956" d="M20.308,51.181c-0.078,0.052-0.088-0.046-0.125-0.065,0.029-1.874-0.022-3.75,0.085-5.622,0.047-0.831,23.328-1.616,24.382-1.618,32.108,2.596,64.05-1.154,95.97-4.231,1.7-0.174,3.39-0.349,5.09-0.523v5.583c-1.7,0.175-3.39,0.349-5.09,0.523-31.92,3.078-63.862,6.828-95.97,4.231-5.454,0.013-10.849,0.205-16.281,0.7-2.254,0.205-4.522,0.377-6.771,0.628-0.451,0.051-1.303,0.744-1.33,0.291-0.11-1.846-0.056-3.697-0.085-5.545,0.042,0.021,0.038,0.112,0.125,0.065v5.583z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1957" d="M27.7,26.408c13.391-0.763,26.775-0.158,40.166,0.291,25.412,0.587,50.814-0.713,76.224-0.557v5.583c-25.41-0.156-50.812,1.144-76.224,0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1971" d="M37.391,148.58c14.488,1.39,29.225,0.53,43.793,0.42,16.499,0.53,32.996-0.06,49.486-0.21,0.71-0.02,1.42-0.04,2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333,0.11-30.148,0.05-43.793,4.63v-5.16z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1972" d="M28.867,162.61c9.62,1.25,19.65,0.06,29.358-0.24,18.741-0.41,37.482-0.37,56.215-1.12,7.98-0.73,15.98-0.8,23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739,0.01-37.5-1.47-56.215,0.19-9.901,0.89-19.958,1.84-29.358,5.27v-5.54z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1973" d="M30.091,172.91c16.011,0.6,32.03-0.67,48.019-1.54,18.84-1.15,37.73-0.6,56.47-3.18,1.51-0.22,3.02-0.5,4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47,0.21-15.79,0.86-33.543-0.42-48.019,6.87v-5.44z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1974" d="M33.517,180.71c11.863,1.62,24.051,1.83,36.033,1.73,22.542-0.69,45.39,0.63,67.59-4,1.89-0.33,3.75-0.81,5.61-1.32v3.52c-1.87,0.12-3.74,0.24-5.61,0.15-22.52-0.33-45.036,2.39-67.59,1.77-12.017,0.09-24.399,0.19-36.033,3.59v-5.44z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1975" d="M178.56,19.701c15.99-3.047,32.46-3.33,48.69-4.245,18.7-1.383,37.33,0.705,55.57,4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22,0.515-32.47,1.009-48.69,0.668v-5.724z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1976" d="M180.36,33.236c16.02-2.031,32.13-3.111,48.26-3.687,22.39-0.874,44.84,0.411,67.22-0.708v6.786c-21.96,5.31-44.91,1.805-67.22,3.309-16.06,0.267-32.25,1.384-48.26,0.005v-5.705z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1977" d="M178.51,42.174c16.73-1.346,33.65-0.612,50.43-0.367,21.43,0.357,42.84,1.282,64.28,1.488v7.196c-21.32,2.711-42.87,0.851-64.28,0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1978" d="M179.08,60.04c11.1-3.337,22.79-3.401,34.27-3.92,24.68-1.345,49.59-2.321,74.17,0.971,0.76,0.115,1.53,0.231,2.29,0.346v7.057c-0.76,0-1.53-0.001-2.29-0.001-24.73,0.142-49.44-0.168-74.17,0.495-11.42-0.054-22.88-0.218-34.27,0.67v-5.618z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1983" d="M182.45,102.28c11.01-3.884,23.27-5.112,34.87-6.153,20.94-1.692,41.99-2.943,62.89-0.147v12.92c-20.96,0.43-41.91,1.83-62.89,1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1984" d="M175.22,121.72c14.62-4.78,29.97-6.5,45.17-8.28,20.17-2.57,40.39-0.93,60.33,2.5v12.32c-20.07,1.74-40.16,3.37-60.33,2.62-14.77-0.37-30.92,0.63-45.17-3.52v-5.64z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1985" d="M178.48,142.94c19.03-4.93,38.58-7.02,58.19-7.97,19.95-0.96,39.5,2.62,58.33,8.92v11.38c-19.44,0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59,1.38-58.19-5.52v-5.74z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <path id="calligraphy-f02-el.svgpath1986" d="M188.88,163.8c-1.44-1.26-0.08-3.83,0.01-5.73,0.09-2.1,29.27-4.73,31.07-4.81,24.15-1.1,48.35-0.08,72.21,3.88v13.63c-24.02,2.72-48.3,1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66,0.01,0.03,0,0.07,0.05,0.08v5.63z" fill-rule="nonzero" transform="translate(10, 1398.0593814000001) " display="block" fill="#000"/> + <rect id="d0e173" display="none" height="1000px" width="288" y="1596.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e173"/> + </flowRegion> + <flowDiv xml:space="preserve">Για αστείο, ΞΏΟίστε το πλάτος ΞΊΞ±ΞΉ την Ξ»Ξπτυνση στο 100 (ΞΌΞγιστο) ΞΊΞ±ΞΉ σχεδιάστε ΞΌΞµ Ο„ΟΞµΞ»ΞΟ‚ κινήσεις Ξ³ΞΉΞ± Ξ½Ξ± πάΟετε παΟάξενα φυσιοκΟατικά σχήματα ΞΌΞΏΟφής Ξ½ΞµΟ…ΟΟΞ½Ξ±:</flowDiv> + </flowRoot> + <path id="calligraphy-f03-el.svgpath2071" d="M14.819,30.652c3.651,1.489,5.049,5.35,8.089,7.445,2.387,1.646,4.678-0.283,6.647-1.134,7.724-3.339,15.76-6.203,23.832-8.692,2.147-0.663,6.16-0.877,8.115-1.845,4.005-1.982-0.378-1.878,3.845-1.505,2.971,6.215,7.843,14.981,14.207,18.869,2.216,1.353,4.445-0.746,7.149,0.935,1.269,0.432,1.063,0.613,2.388-0.009,2.54-1.194,0.856-2.293,0.834-2.213-0.541,1.985,0.494,5.501,3.207,5.884,1.185,0.167,1.954-1.315,2.937-1.963,1.414-0.932,2.82-1.875,4.251-2.778,10.97-6.906,22.55-12.878,33.91-19.18,1.13-1.657,10.57-4.683,10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65,2.258-4.56,9.54-1.04,10.092,4.22,0.663,11.35,3.104,12.81-0.705,1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12,3.878,1.04,5.306,0.94,1.164,19.97,2.807,22.84,3.115,3.63,3.75,8.48-12.367,10.79-7.835,2.61,5.096,0.14,11.325,0.27,16.986,0.01,0.628,0.35-1.312,0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77,2.962-0.13,4.237,0.54,1.064,2.11,1.259,3.19,1.843,7.64,4.12,15.73,7.458,23.6,11.156,0.62,0.316,1.16,1.023,1.86,0.948,1.09-0.116,2.58-2.339,4.06-1.951,1.55,0.406,1.97,9.563,8.72,7.78,6.11-1.612-1.03-7.983,2.11-6.085,0.82,0.353,4.38,2.062,5.45,1.848,6.43-1.283,19.87-23.683,27.52-28.6,2.43-1.0916,3.07-1.5393,5.7-2.0985,11.16-2.3748,19.18,12.874,27.07,9.0455,0.39-0.479,0.79-0.958,1.18-1.437l0.91,3.291c-0.64-0.054-1.28-0.108-1.92-0.162-12.15-1.929-19.58-15.478-32.72-8.1-7.85,5.087-11.59,13.639-17.92,20.174-2.19,2.259-8.33,5.664-9.53,8.402-0.79,1.794,0.05,5.007,0.36,6.749-0.14,1.518,0.37,3.911-2.46,3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03,2.357-5.94,0.985-0.97-1.449,0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98,2.088-4.09,1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049,0.04-4.578,0.12-3.435,0.35,5.307-2.02,11.292,0.71,15.938,1.8,3.062,11.11-12.124,2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76,0.67-2.5,4.87-4.04,3.816-4.69-3.206-11.08-8.037-10.02-13.425,0.79-4.0179,8.62-1.7649,12.89-1.1339,5.61,0.8317,1.32,11.999,1.24,12.154-0.42,0.78-1.83-0.823-2.7-0.542-3.18,1.023-6.47,8.289-10.6,7.759-5.78,3.207-38.921,19.804-41.079,23.915-2.072,3.945,0.975,6.044-3.026,9.272-3.213,2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161,0.45-1.741,0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398,2.579-12.238,3.194-5.092,1.7-10.15,3.514-15.132,5.486-10.281,4.069-12.706,6.125-5.27,16.65l-14.089-21.683z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <path id="calligraphy-f03-el.svgpath2072" d="M32.6,78.132c-1.229-4.078,0.099-10.602-3.557-13.811-1.529-1.341-7.807,1.273-7.959,0.908-1.559-3.741-2.69-7.955-1.975-11.919,0.646-3.589,9.444,2.774,12.407,1.429,3.295-1.704,0.301,0.271,2.926-3.623,1.054-1.565,2.429-2.91,4.636-2.441,7.034,1.496,2.511,8.956,3.657,12.58,0.579,1.833,1.813,1.943,3.379,2.566,1.269,0.131,4.688,1.931,5.991,1.113,1.932-1.214,1.966-7.031,4.609-7.143,3.629-0.153,3.721,6.3,6.413,7.806,1.789,1.001,5.075,1.285,7.088,1.915,4.959,1.175,11.366,9.218,16.51,5.012,2.081-1.701,1.532-4.669,4.315-5.48,1.653-0.496,2.805,1.23,4.302,1.216,0.75-0.007,3.366-2.194,3.725-2.499,8.173-6.949,7.973-16.009,11.583-25.153,0.49-3.596,4.56-5.995,5.78-9.137,0.86-2.199-1.72-9.962,2.96-9.895,4.83,0.069,3.82,6.228,5.37,8.732,0.87,1.406,5.52,3.447,6.95,4.458,2.28,1.495,4.1,3.457,6.07,5.268,3.13,2.88,5.57-4.281,8.23-1.827,0.21,0.187-2.01,4.142-2.17,6.47-0.27,4.141,2.76,5.099,5.92,7.181,1.42,3.67,5.51-2.64,6.86,0.119,1.39,2.832-0.69,2.75,1.54,5.421,0.2,0.238,13.83,9.271,14.63,9.624,2.05,0.914,3.38-1.026,4.75-2.03,1.96-2.025-1.25,2.771,0.98,5.405,0.45,0.531,27.81-1.372,28.74-2.509,1.46-1.791-2.84-7.468-4.12-5.555-5.95,8.923,4.81,7.172,0.08,7.788-0.49-4.296-4.26-9.474-1.46-12.889,1.94-2.371,4.86,3.932,7.69,5.277,1.27,0.605,7.69-0.566,8.3-0.663,8.25-1.318,18.04-2.648,24.82-7.736,3.3-2.479,3.06-7.196,6.34-8.68,10.53-4.454,23.34-5.79,29.65-16.16,2.18-3.588,3.14-7.676,5.25-11.305l0.38,0.453c-2.08,3.646-3.07,7.748-5.28,11.328-6.4,10.344-19.14,11.752-29.72,16.2-8.27,14.64-20.48,13.621-36.18,17.176-1.1,0.249-3.34,0.048-3.19,1.11,0.37,2.489,3.31,8.689,4.29,6.353,1.52-3.648-1.39-7.739-2.08-11.609-0.08,3.823,3.24,7.571,2.23,11.273-0.62,2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31,1.052-6.51,1.315-6.34,0.759-12.81,1.097-19.21,1.213-1.05,0.019-2.31-0.591-3.17-0.01-1.24,0.839-3.02,6.534-6.51,5.132-0.76-0.305-0.27-1.541-0.41-2.312,0.72-2.047,2.2-4.072,0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46,1.336-4.69,1.347-2.62,0.008,0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184,2.77-8.159,2.87-8.928,0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43,0.081-5.99,5.319-3.04,5.605,1.77,0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33,6.962-7.64,8.867-2.44,6.269-2.58,13.59-6.34,19.333-2.11,3.236-7.418,5.693-8.955,8.873-0.764,1.581-0.167,3.552-1.109,5.11-4.71,7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553,1.26-1.455,5.015-3.486,4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824,0.374-6.119-1.129-3.63-1.436-10.059,2.408-12.124-1.599-1.218-2.362,2.998-2.077,1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695,3.971,9.759,19.23-0.534-2.039-2.765-5.713-2.652,6.504-0.595,7.793,4.115,2.579,6.945-4.602,7.291-7.115l-5.248,24.197z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <path id="calligraphy-f03-el.svgpath2073" d="M24.067,97.773c5.208-7.575,18.839-32.899,32.069-26.448,5.169,6.538,6.374,15.078,10.397,22.298,0.662,1.189,0.789,3.491,2.206,3.447,2.075-0.065,6.109-3.936,7.254-5.56-3.769-5.695-4.985,0.12,0.487,4.392,2.441,1.906,3.576,1.503,5.875-0.123,8.54-7.974,16.078-17.599,22.155-27.422,0.23-0.367,1.92-4.48,2.06-4.499,1.95-0.268,3.17,2.272,4.98,3.009,5.91-0.552,12.56,3.445,18.36,2.623,3.14-0.443,2.95-4.898,6.52-4.516,3.24,0.346,2.07,7.043,2.29,8.987-0.28,2.344,3.62,2.043,4.23,3.473,0.3,0.696-0.84,2.723-0.29,4.012,3.2,7.47,7.28-4.302,8.02-6.22,3.93-0.537,8.47-2.786,7.91,4.593-1.51,19.866-1.27,6.201-7.22,8.494-0.5,0.192,2.63,9.838,3.74,10.094,0.65,0.152,6-2.491,6.26-1.729,6.83,19.612-0.63,6.302-2.9,14.032,8.82,1.28,8.38,2.29,0.42-17.106-2.23-5.436-4.51,8.716,0.62,9.656,8.96,1.63,24.85-2.05,33.71-3.493,2.89-1.614,23.48-2.694,24.85-4.511,1.17-1.573,0.58-5.362,3.31-6.261,4.43-1.459,2.4,7.807,2.75,8.683,0.2,0.527,5.04,1.824,5.1,1.842,20.1,3.93,17.56-6.262,27.07-16.41,2.03-0.396,2.36-3.852,3.72-4.695,1.15-0.719,2.8-0.208,4.07-0.733,6.62-2.75,17.37-7.124,21.75-12.735l0.75,2.344c-5.41-0.43-24.54,12.867-29.98,16.318-9.56,10.291-7.18,20.461-27.49,16.481-4.74-1.396-6.87-2.468-10.14,2.33-1.74,2.56,4.37-7.515-2.74-6.297-7.67,1.314-15.28,2.957-22.96,4.217-3.22,0.53-35.02,3.34-36.01,4.46-2.37,2.72-5.42,11.16-7.24,8.08-11.18-18.948-9.06-17.88-0.07-18.479,1.93,0.884-0.53-0.445-0.62,0.854-0.23,3.271-1.05,6.925,0.58,9.815,1.28,2.27,4.58-3.65,4.8-6.21,0.02-0.259-6.19-15.39-7.31-15.011-7.04,2.377-2.83,14.844,3.44,9.098-1.72-17.839-18.37,4.354-16.18-11.167,0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494,1.26-1.414,1.37-2.283,0.22-1.782,0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15,0.658-2.02-0.202-3.35,2.609-3.87,0.947,0.57-3.769-3.31-1.212-6.122,4.036-13.519,23.235-22.255,27.469-5.785,4.068-2.336,16.628-11.004,15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94,2.272-7.5,2.274-11.318,0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036,23.431-12.157,8.251l-19.727,17.644z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <path id="calligraphy-f03-el.svgpath2074" d="M29.654,2.3471c1.311,3.4234,2.285,10.077,5.934,12.149,0.993,0.563,2.229-0.59,3.341-0.894,7.004-1.909,13.934-4.0584,20.951-5.9266,3.595-0.9573,8.107-1.1798,11.57-2.3687,6.34-2.1768,1.37-8.2767,9.1-3.5631-0.325,1.7841,1.443,11.469-3.688,9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728,0.46-0.299,1.673-0.126,2.486,1.664,7.842,17.874,24.172,24.051,30.016,2.816,1.051,8.856,10.763,12.336,9.919,5.33-1.291,4.11-5.907,9.04-2.706,1.34,0.708,3.58,1.575,4.04,3.146,0.78,2.661-2.49,10.129-2.98,10.732-0.64,0.788-2.25-0.69-3.14-0.157-0.62,0.377-3.56,25.868-3.79,28.211,1.25,4.473-2.8,10.837-1.28,15.177,1.69,4.83,2.51,1.75,3.18,6.55,0.39,2.79-3.18,4.8-2.18,7.36,0.39,0.99,3.25,3.56,4.25,0.26,1.74-5.66,1.63-11.69,2.44-17.54-11.33-9.597-8.22,1.74-5.49,8.45l-0.03,0.58c-4.48,7.64-7.31,15.73-16.773,6.78,0.8-5.96,0.653-12.1,2.403-17.87,2.03-6.714,8.27,6.45,11.71,5.07,0.05-0.01,1.21-13.904,1.28-15.163,0.83-8.667,1.89-17.335,3.39-25.923,0.18-1.042,1.83-6.87-2.1-6.092-4.64,0.918-2.39,8.065-1.71,5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383,2.257-0.984,5.1357-1.475,7.7032,8.347,1.85,6.589-5.5959,3.736-6.2988-1.79-0.441-35.685,9.0068-35.809,9.1828-2.776,3.946-0.551,9.778-1.632,14.097l-4.403-26.818z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <path id="calligraphy-f03-el.svgpath2076" d="M164.9,34.629c7.56-1.214,6.63,7.145,11.54,10.087,3.95,2.361,15.55-9.023,17.67-11.691,2.87-1.98,1.2-5.211,2.68-7.662,1.74-2.885,5.93-0.615,8.07-3.329,1.88-2.367,1.48-7.852,5.64-6.325,2.22,1.324,3.23,3.845,5.35,5.258,1.68,1.115,4.18,1.145,6.07,1.78,1.75,0.585,5.85,3.415,7.61,3.195,2.51-0.314,4.18-3.734,5.37-5.454,2.9,0.582,3.7,4.127,4.93,6.327,1.48,2.66,3.86,4.481,5.35,7.049,3.65,6.273,3.96,14.768,5.43,21.675,0.05,6.787,5.18,12.425,4.45,18.856-0.38,3.4-2.87,5.927-2.96,9.574,0.33-0.779,0.76,5.132,1.81,4.05,1.15-1.195,0.77-3.171,1.45-4.655,0.73-1.596,1.36,2.552-1.39,7.013-3.14,5.08-1.17,8.827,4.82,10.323,7.88,0.4,14.49-4.344,21.09-7.79l0.19,0.552c-6.69,3.494-13.39,8.258-21.38,7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75,0.28-5.34-0.198-1.55-0.468-0.64-12.676,3.92-12.187,3.94-4.63,2.33-19.349,0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13,0.067-4.13,3.162-6.61,3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14,2.644-1.39,2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43,4.208-5.74,5.457-4.34,2.339,2.52-1.867-3.22,0.345-0.43,0.165-2.2,2.713-2.34,2.907-2.56,3.194-5.36,6.115-8.89,8.38-2.05,1.314-7.55,2.523-8.81,4.483-2.29,3.537-4.66,12.911,2.05,12.659l-13.9-24.403z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <path id="calligraphy-f03-el.svgpath2079" d="M178.84,99.8c-0.1,2.88-3.47,1.04-1.85,4.69,0.84,1.9,3.93,6.45,6.45,6.56,2.76,0.13,16.62-18.126,18.61-20.892,5.53-3.226-0.42-9.547,3.2-13.305,0.39-0.403,7.86-2.334,5.89-3.693-1.83-1.259-3.74,0.682-1.88,2.233,3.86,2.771,5.3-1.616,8.56-2.713,2.95-0.996,5.19,1.605,7.14-1.725,4.35-2.406,10.07,3.599,13.46-2.542,0.91-1.648,0.7-3.858,2.08-5.209,2.72-1.206,6.32,1.078,8.81-0.949,1.13-0.917,1.47-4.062,3.15-4.232,2.32-0.235,3.27,3.47,4.36,4.042,1.49,0.783,8.5-2.995,9.62-3.49,8.17-3.877,13.98-10.407,19.71-16.923l0.32,0.494c-5.76,6.556-11.64,13.099-19.87,16.987-1.19,0.529-8.96,2.529-9.68,3.511-1.2,1.618-0.21,4.499-1.91,5.645-1.87,1.264-5.3-4.585-9.11,6.589-7.17,4.366-5.95-9.051-14.25,6.688-0.67,1.27-1.56,1.865-3.01,2.12-5.22-0.243-11.93,1.859-12.25,7.051-0.42,2.793-4.22,7.009-7.14,3.542-2.18-2.599,3.05-3.875-1.98-7.095-2.98-1.906-3.44,1.901-4.87,3.448-2.97,4.14-6.02,8.223-9.41,12.078-2.06,2.34-8.16,6.19-9.31,8.88-1.64,3.83,1.21,10.59-1.54,14.01-3.85,4.78-2.87,0.23-3.3,2.76v-28.56z" fill-rule="nonzero" transform="translate(10, 1643.9040434) " display="block" fill="#000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1797.0631934" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1797.0631934" x="10">Γωνία & σταθεΟοποίηση</tspan> + </text> + <rect id="d0e192" display="none" height="1000px" width="288" y="1802.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e192"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξετά το πλάτος, Ξ· <flowSpan font-style="italic">γωνία</flowSpan> ΞµΞ―Ξ½Ξ±ΞΉ Ξ· πιο σημαντική παΟάμετΟΞΏΟ‚ καλλιγΟαφίας. Είναι Ξ· γωνία της Ο€ΞΞ½Ξ±Ο‚ σας σε ΞΌΞΏΞ―ΟΞµΟ‚, αλλάζοντας Ξ±Ο€Ο 0 (ΞΏΟΞΉΞ¶Οντια) ΞΌΞΟ‡ΟΞΉ 90 (κάθετα Ξ±ΟιστεΟΟστΟοφα) Ξ® ΞΌΞΟ‡ΟΞΉ -90 (κάθετα δεξιΟστΟοφα). ΣημειΟστε Οτι εάν ΞµΞ½ΞµΟγοποιήσετε την ευαισθησία κλίσης Ξ³ΞΉΞ± ΞΌΞΉΞ± πινακίδα, Ξ· παΟάμετΟΞΏΟ‚ της γωνίας γίνεται αχνή ΞΊΞ±ΞΉ Ξ· γωνία ΞΊΞ±ΞΈΞΏΟίζεται Ξ±Ο€Ο Ο„Ξ·Ξ½ κλίση της Ο€ΞΞ½Ξ±Ο‚.</flowDiv> + </flowRoot> + <defs id="calligraphy-f04-el.svgdefs3"> + <marker id="calligraphy-f04-el.svgTriangleOutS" refY="0.0" refX="0.0" orient="auto" inkscape:stockid="TriangleOutS"> + <path id="calligraphy-f04-el.svgpath1051" style="marker-start:none;" d="M5.77,0l-8.65,5v-10l8.65,5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(0.2)" stroke="#000" stroke-width="1.0pt"/> + </marker> + <marker id="calligraphy-f04-el.svgTriangleInS" refY="0.0" refX="0.0" orient="auto" inkscape:stockid="TriangleInS"> + <path id="calligraphy-f04-el.svgpath4777" style="marker-start:none;" d="M5.77,0l-8.65,5v-10l8.65,5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-0.2)" stroke="#000" stroke-width="1.0pt"/> + </marker> + </defs> + <path id="calligraphy-f04-el.svgpath2832" stroke-linejoin="miter" style="stroke-dasharray:0.65013618 1.9504085;" d="M111.33,102.81h92.82" display="block" transform="translate(10, 1881.6389754000002) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.65013617" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f04-el.svgpath2834" stroke-linejoin="miter" style="stroke-dasharray:0.68750000 2.0625000;" d="M111.36,103.08l88.17-50.902" display="block" transform="translate(10, 1881.6389754000002) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.68750000" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f04-el.svgpath2838" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.68750000 2.0625000;marker-mid:none;" d="M111.47,130.33v-118.78" display="block" sodipodi:nodetypes="cc" transform="translate(10, 1881.6389754000002) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.68750000" sodipodi:insensitive="true" fill="none"/> + <text id="calligraphy-f04-el.svgtext4096" font-weight="normal" xml:space="preserve" transform="translate(10, 1881.6389754000002) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-el.svgtspan4097" y="4.5585475" x="88.336723" role="line">γωνία = 90 ΞΌΞΏΞ―ΟΞµΟ‚</tspan></text> + <text id="calligraphy-f04-el.svgtext4099" font-weight="normal" xml:space="preserve" transform="translate(10, 1881.6389754000002) " display="block" font-size="6.0000000" font-style="normal" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-el.svgtspan4100" y="52.500549" x="202.46759" role="line">γωνία = 30 (Ο€Οοεπιλογή)</tspan></text> + <text id="calligraphy-f04-el.svgtext4102" font-weight="normal" xml:space="preserve" transform="translate(10, 1881.6389754000002) " display="block" font-size="6.0000000" font-style="normal" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-el.svgtspan4103" y="104.26855" x="207.52388" role="line">γωνία = 0</tspan></text> + <text id="calligraphy-f04-el.svgtext4105" font-weight="normal" xml:space="preserve" transform="translate(10, 1881.6389754000002) " display="block" font-size="6.0000000" font-style="normal" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-el.svgtspan4106" y="139.26855" x="87.677307" role="line">γωνία = -90 ΞΌΞΏΞ―ΟΞµΟ‚</tspan></text> + <path id="calligraphy-f04-el.svgpath4108" stroke-linejoin="miter" style="marker-end:url(#calligraphy-f04-el.svgTriangleOutS);color:#000000;marker-start:url(#calligraphy-f04-el.svgTriangleInS);" d="m144.5,1564.1c2.0412,4.3309,3.2095,9.0215,3.4381,13.804" display="block" transform="translate(10, 1881.6389754000002) translate(0.000000,-1477.330)" stroke-dashoffset="0" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/> + <g id="calligraphy-f04-el.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 1881.6389754000002) matrix(0.362447,-0.209258,0.209258,0.362447,-207.7803,-450.1500)"> + <use id="calligraphy-f04-el.svguse2837" xlink:href="#calligraphy-f04-el.svgpath2835" transform="matrix(-1.000000,1.554114e-6,1.554114e-6,1.000000,279.9908,-2.175686e-4)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/> + <path id="calligraphy-f04-el.svgpath2835" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f04-el.svgpath2836" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f04-el.svgpath2202" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <use id="calligraphy-f04-el.svguse2203" xlink:href="#calligraphy-f04-el.svgpath2202" transform="matrix(-1.000000,0.000000,0.000000,1.000000,279.5397,0.000000)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/> + <path id="calligraphy-f04-el.svgpath2204" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f04-el.svgpath2205" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <path id="calligraphy-f04-el.svgpath2853" d="M156.54,76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885,12.692-53.777,11.114-4.414-0.852-6.386-3.82-5.414-8.228,3.432-15.575,26.471-25.039,39.211-29.804,9.87-3.425,20.2-4.911,30.54-5.903l-10.88,6.284c-10.35,0.992-20.67,2.476-30.54,5.902-1.86,0.698-3.757,1.329-5.597,2.093-1.703,0.707-6.339,3.611-5.023,2.319,1.79-1.758,4.183-2.839,6.51-3.778,0.3-0.122-3.126,1.734-6.726,5.389-3.478,3.533-8.572,10.426-6.527,15.827,0.885,2.336,3.108,3.108,5.328,3.615,18.895,1.579,34.855-12.764,53.775-11.113,9.01,1.32,18.44,5.363,23.75,13.13l-10.88,6.284z" fill-rule="nonzero" transform="translate(10, 1881.6389754000002) " display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/> + <rect id="d0e208" display="none" height="1000px" width="288" y="2034.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e208"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξάθε ΞΌΞΏΟφοποίηση παΟαδοσιακής καλλιγΟαφίας Ξχει τη δικιά της δεδομΞΞ½Ξ· γωνία Ο€ΞΞ½Ξ±Ο‚. Ξ .Ο‡., Ξ· Ξ³Οαφή Uncial Ο‡Οησιμοποιεί γωνία 25 ΞΌΞΏΞΉΟΟΞ½. Ξ ΞΉΞΏ ΟƒΟνθετες Ξ³ΟΞ±Ο†ΞΟ‚ ΞΊΞ±ΞΉ πιο ΞμπειΟΞΏΞΉ καλλιγΟάφοι αλλάζουν συχνά τη γωνία ΞµΞ½Ο ΟƒΟ‡ΞµΞ΄ΞΉΞ¬Ξ¶ΞΏΟ…Ξ½ ΞΊΞ±ΞΉ το Inkscape το κάνει ΞµΟ†ΞΉΞΊΟ„Ο Ο€ΞΉΞζοντας τα πλήκτΟΞ± Ξ²ΞµΞ»ΟΞ½ <flowSpan font-weight="bold">επάνω</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">κάτω</flowSpan> Ξ® ΞΌΞµ πινακίδα που υποστηΟΞ―Ξ¶ΞµΞΉ το χαΟακτηΟΞΉΟƒΟ„ΞΉΞΊΟ Ο„Ξ·Ο‚ ευαισθησίας κλίσης. Για το ΞΎΞµΞΊΞ―Ξ½Ξ·ΞΌΞ± καλλιγΟαφικΟΞ½ μαθημάτων, Ομως, Ξ· διατήΟηση της γωνίας σταθεΟής ΞΈΞ± δουλΞΟΞµΞΉ Ξ¬Οιστα. Ξ™Ξ΄ΞΏΟ Ο€Ξ±Οαδείγματα πινελιΟΞ½ που σχεδιάστηκαν ΞΌΞµ διαφοΟετικΞΟ‚ γωνίες (σταθεΟοποίηση = 100):</flowDiv> + </flowRoot> + <text id="calligraphy-f05-el.svgtext4984" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="27.677305" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan4985" y="4.5585475" x="27.677305" role="line">γωνία = 30</tspan></text> + <text id="calligraphy-f05-el.svgtext4987" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="84.742744" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan4988" y="4.5585475" x="84.742744" role="line">γωνία = 60</tspan></text> + <text id="calligraphy-f05-el.svgtext4990" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="147.24278" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan4991" y="4.5585475" x="147.24278" role="line">γωνία = 90</tspan></text> + <text id="calligraphy-f05-el.svgtext4993" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="4.5585475" x="232.24278" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan4994" y="4.5585475" x="232.24278" role="line">γωνία = 0</tspan></text> + <text id="calligraphy-f05-el.svgtext4996" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="92.058548" x="267.2428" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan4997" y="92.058548" x="267.24280" role="line">γωνία = 15</tspan></text> + <text id="calligraphy-f05-el.svgtext4999" font-weight="normal" xml:space="preserve" transform="translate(10, 2145.7230664) " display="block" font-size="6.0000000" font-style="normal" y="134.55855" x="39.742786" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-el.svgtspan5000" y="134.55855" x="39.742786" role="line">γωνία = -45</tspan></text> + <path id="calligraphy-f05-el.svgpath4901" d="M45.448,18.016c3.5-0.314,14.489-6.113,14.025,0.4-5.461,10.157-10.585,20.538-15.402,31.033-1.488,3.587-14.036,28.168-3.499,25.42,9.088-3.824,17.5-8.081,27.499-8.489,2.124-0.12,4.202,0.173,6.269,0.607l-22.113,12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999,0.407-18.411,4.665-27.499,8.489-10.537,2.748,2.011-21.833,3.499-25.42,4.817-10.495,9.941-20.876,15.402-31.033,0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <path id="calligraphy-f05-el.svgpath4917" d="M148.1,20.769c4.28-11.918,20.14-2.827,26.34,2.18,21.24,25.454,17.89,66.509,15.98,97.261,0-6.98-0.07-13.96,0.01-20.943,0-0.271,33.3-18.644,36.53-20.376v22.159c-9.58,5.14-19.54,9.73-28.69,15.62-0.61,0.39-6.71,5.71-7.61,5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368,0.49-7.968,0.32-24.258,0.71,9.248,0.07,6.31,0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <path id="calligraphy-f05-el.svgpath4927" d="M220.36,12.834c-59.48-0.882,23.45-0.134,36.62,1.963,15.65,3.042,8.53,21.8,5.58,32.443-0.75,4.642-3.89,10.297-2.28,15.112,0.4,1.171,4.16,2.238,2.93,2.279-6.32,0.208-12.67,0.377-18.97-0.17-0.85-0.074,0.57,0.523,10.53-3.033,7.34-2.619,14.44-5.759,21.54-8.948h22.16c-15.18,6.819-72.39,32.651-58.07-5.24,2.96-10.643,10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352,6.66-0.029,13.32-0.019,19.98-0.008,1.4,0.002-2.79,0.181-4.19,0.186-7.48,0.028-14.97,0.024-22.45,0.037h22.15z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <path id="calligraphy-f05-el.svgpath4942" d="M20.12,106.67c8.492-5.41,17.954-6.958,27.898-6.27,19.875,1.69,29.405,15.47,42.96,29.18,0.731,0.74,2.886,3,2.149,2.26-25.227-25.09-13.515-12.66-5.887-8.01,16.19,9.76,30.39,1.41,44.82-7.24l15.67,15.67c-14.43,8.64-28.63,16.99-44.82,7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26,4.53,4.43,9.01,8.92,13.511,13.38,1.501,1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406,0.86-27.898,6.28l-15.665-15.67z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <path id="calligraphy-f05-el.svgpath4945" d="M83.624,25.219c5.169-6.605,10.672-13.197,19.206-15.209,20.89-0.1537,14.03,32.098,12.63,44.706,0.19,7.561-8.83,47.624,10.14,33.551,13.21-10.672,8.5-10.954,18.61-2.432,5.31,2.929,11.25,0.339,16.38-1.749l-11.08,19.184c-5.13,2.09-11.07,4.68-16.37,1.75-10.12-8.521-5.4-8.239-18.62,2.43-18.966,14.08-9.94-25.987-10.14-33.548,1.4-12.608,8.26-44.86-12.624-44.706-8.537,2.012-14.041,8.604-19.209,15.209l11.077-19.186z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <path id="calligraphy-f05-el.svgpath4983" d="M176.46,143.11c16.1-12.64,38.58-16.96,58.6-18.04,14.69-1.24,29,4.13,43.62,3.7,2.8-0.08,5.39-0.38,8.14-0.97,1.4-0.3,5.54-1.43,4.15-1.1-5.78,1.38-11.55,2.83-17.32,4.24,20.66-9.48,17.77-24.9-4.56-26.51-9.85-1.31-42.27,8.01-3.99-2.14l-21.4,5.73c15.39-4.15,30.65-9.713,46.79-9.32,22.33,1.61,25.22,17.02,4.56,26.5-8.47,2.41-22.91,7.72-33.73,9.02-15.95,1.91-31.67-4.9-47.66-3.42-9.4,0.51-29.91,5.9,4.12-3.5,1.22-0.34-2.44,0.67-3.64,1.06-5.88,1.93-11.72,4.77-16.28,9.02l-21.4,5.73z" fill-rule="nonzero" transform="translate(10, 2145.7230664) " display="block" fill="#000"/> + <rect id="d0e227" display="none" height="1000px" width="288" y="2301.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e227"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξπως μποΟείτε Ξ½Ξ± δείτε, Ξ· πινελιά ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο Ξ»ΞµΟ€Ο„Ξ® Οταν σχεδιάζεται παΟάλληλα Ο€ΟΞΏΟ‚ τη γωνία της ΞΊΞ±ΞΉ Ο€ΞΏΞ»Ο Ο€Ξ»Ξ±Ο„ΞΉΞ¬ Οταν σχεδιάζεται κάθετα. ΞετικΞΟ‚ γωνίες ΞµΞ―Ξ½Ξ±ΞΉ ΞΏΞΉ πιο φυσικΞΟ‚ ΞΊΞ±ΞΉ παΟαδοσιακΞΟ‚ Ξ³ΞΉΞ± δεξιΟΞ³Οαφη καλλιγΟαφία.</flowDiv> + </flowRoot> + <rect id="d0e230" display="none" height="1000px" width="288" y="2351.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e230"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— στάθμη της αντίθεσης ΞΌΞµΟ„Ξ±ΞΎΟ Ο„Ξ·Ο‚ πιο λεπτής ΞΊΞ±ΞΉ της πιο παχιάς ΞµΞ»Ξγχονται Ξ±Ο€Ο Ο„Ξ·Ξ½ παΟάμετΟΞΏ <flowSpan font-style="italic">σταθεΟοποίηση</flowSpan>. Ξ— τιμή 100 σημαίνει Οτι Ξ· γωνία ΞµΞ―Ξ½Ξ±ΞΉ πάντοτε σταθεΟΞ®, Οπως ΞΏΟίστηκε στο πεδίο γωνίας. Ξείωση της σταθεΟοποίησης επιτΟΞπει στην Ο€ΞΞ½Ξ± Ξ½Ξ± Ξ³Ο…Οίσει λίγο Ο€ΟΞΏΟ‚ την κατεΟθυνση της πινελιάς. ΞΞµ σταθεΟοποίηση=0, Ξ· Ο€ΞΞ½Ξ± πεΟιστΟΞφεται ελεΟΞΈΞµΟΞ± Ξ³ΞΉΞ± Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ πάντοτε κάθετη στην πινελιά ΞΊΞ±ΞΉ Ξ· γωνία δεν επιδΟΞ¬ πλΞΞΏΞ½:</flowDiv> + </flowRoot> + <defs id="calligraphy-f06-el.svgdefs3"> + <marker id="calligraphy-f06-el.svgTriangleInL" refY="0.0" refX="0.0" orient="auto" inkscape:stockid="TriangleInL"> + <path id="calligraphy-f06-el.svgpath4781" style="marker-start:none;" d="M5.77,0l-8.65,5v-10l8.65,5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-0.8)" stroke="#000" stroke-width="1.0pt"/> + </marker> + </defs> + <text id="calligraphy-f06-el.svgtext6476" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" sodipodi:linespacing="120.00000%" transform="translate(10, 2441.7472764) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="120.00000%" font-size="6.0000000" font-variant="normal" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6477" y="4.5585475" x="19.524405" role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6479" y="11.758548" x="19.524405" role="line">ΣταθεΟοποίηση = 100</tspan></text> + <text id="calligraphy-f06-el.svgtext6481" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" sodipodi:linespacing="120.00000%" transform="translate(10, 2441.7472764) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="120.00000%" font-size="6.0000000" font-variant="normal" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6482" y="4.5585475" x="119.52438" role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6484" y="11.758548" x="119.52438" role="line">ΣταθεΟοποίηση = 80</tspan></text> + <text id="calligraphy-f06-el.svgtext6486" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" sodipodi:linespacing="120.00000%" transform="translate(10, 2441.7472764) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="120.00000%" font-size="6.0000000" font-variant="normal" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6487" y="4.5585475" x="219.52438" role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6489" y="11.758548" x="219.52438" role="line">ΣταθεΟοποίηση = 0</tspan></text> + <path id="calligraphy-f06-el.svgpath5108" d="M213.97,69.663c-3.43-6.136-2.82-13.35-0.61-19.796,4.01-9.569,12.54-16.2,22.15-19.527,9.27-2.977,18.97-2.32,28.35-0.279,11.24,2.823,19.58,11.481,22.96,22.414,2.37,12.142,2.25,25.093-0.77,37.116-2.96,10.262-9.6,19.689-19.1,24.829-9.72,4.67-21.09,4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353,5.78-20.748,15.72-25.636,11.77-5.564,23.9-2.212,31.84,7.875,6.88,10.553,4.86,24.51-4.37,32.895-5.16,4.227-11.13,5.027-17.3,2.803l2.79-7.126c3.31,1.536,6.59,0.809,9.43-1.399,6.41-5.485,7.77-15.324,3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15,3.465-11.82,9.966-11.45,18.187,0.75,10.05,4.33,18.46,12.47,24.836,6.49,4.57,15.04,4.75,22.15,1.49,7.64-4.03,12.87-11.851,15.29-19.968,2.74-10.683,2.75-22.195,0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21,0.037-7.41,2.537-14.16,7.5-17.42,14.81-1.48,4.163-2.07,9.223-0.25,13.037l-6.37,4.244z" fill-rule="nonzero" transform="translate(10, 2441.7472764) " display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/> + <path id="calligraphy-f06-el.svgpath5116" d="M14.48,65.761c-3.008-10.389,3.114-21.31,11.13-27.601,16.202-11.213,36.073-15.13,52.851-3.22,13.738,11.479,21.929,29.308,22.069,47.188-0.904,16.803-17.18,27.632-31.896,32.402-12.429,2.51-28.614,0.51-36.966-10-7.732-12.115-0.566-25.626,8.256-34.878,10.488-10.422,22.548-13.268,34.841-5.28,8.181,6.27,9.589,15.534,2.904,23.325-6.655,6.029-20.559,14.873-27.767,5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361,2.006-0.297,3.687,0.91,5.43,3.103,4.233,7.325,5.312,12.375,3.857,1.362-0.391,5.139-2.336,3.959-1.552-1.546,1.031-3.161,1.969-4.827,2.792-1.167,0.575,4.261-2.816,3.008-2.495,6.685-7.791,5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013,0.032-7.482,2.525-5.904,1.275,1.455-1.15,3.156-1.954,4.747-2.91,2.037-1.222-7.967,4.807-5.635,4.359-8.822,9.252-15.988,22.765-8.256,34.875,8.352,10.51,24.537,12.51,36.966,10,1.81-0.59,6.715-3.32,5.34-2.01-1.124,1.07-2.633,1.65-3.987,2.41-1.778,1,3.459-2.17,5.076-3.41,7.054-5.41,12.028-12.609,12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5,0.158-7.046,0.627-10.452,1.458-2.18,0.532-7.399,4.145-6.378,2.15,0.041-0.081,8.248-5.219,0.99-0.666-8.015,6.292-14.138,17.211-11.13,27.605l-6.626,3.824z" fill-rule="nonzero" transform="translate(10, 2441.7472764) " display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/> + <path id="calligraphy-f06-el.svgpath5131" d="M113.93,55.575c0.1-7.929,4.48-14.883,10.09-20.161,14.87-12.804,31.29-11.471,47.09-2.026,15.97,10.213,26.09,29.324,22.8,48.338-5,18.464-23.93,31.854-42.46,34.334-14.6,0.87-26.99-12.79-28.9-26.622,0.01-16.139,14.93-29.526,30.29-31.885,13.66-0.565,25.64,8.648,24.07,22.885-4.49,15.177-22.31,20.572-34.76,11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47,0.444,0.93,0.891,1.39,1.336,2.69,1.861,5.56,3.419,8.81,4.109,4.02,0.856,7.45-1.048,6.86-0.388-1.07,1.218-2.8,1.648-4.08,2.657-3.74,2.969,14.53-10.097,9.84-10.56,2.07-13.369-9.87-21.765-22.51-20.488-3.55,0.771-17.14,5.862-17.88,23.275,1.48,13.262,13.66,26.118,27.52,24.618,12.78-2.21,23.08-7.51,29.83-26.192,3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79,0.128-5.63,0.619-8.3,1.471-0.84,0.267-3.09,1.569-2.48,0.928,1.06-1.134,2.68-1.569,3.94-2.484,1.39-1.015-5.91,3.426-4.38,2.735-5.68,4.893-10.02,11.292-10.51,18.953l-6.99,3.113z" fill-rule="nonzero" transform="translate(10, 2441.7472764) " display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/> + <path id="calligraphy-f06-el.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-6.218852e-2,-0.930976,-0.930976,6.218852e-2,1532.867,59.39100)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <path id="calligraphy-f06-el.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-0.411629,0.837343,0.837343,0.411629,-1225.743,-653.0310)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <path id="calligraphy-f06-el.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-6.218852e-2,-0.930976,-0.930976,6.218852e-2,1627.644,57.76100)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <path id="calligraphy-f06-el.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-0.411629,0.837343,0.837343,0.411629,-1127.066,-651.0020)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <path id="calligraphy-f06-el.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-6.218852e-2,-0.930976,-0.930976,6.218852e-2,1727.566,56.84200)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <path id="calligraphy-f06-el.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" stroke="#000" stroke-linecap="butt" stroke-width="0.37500000" sodipodi:end="6.5569837" fill="none" style="marker-end:none;color:#000000;marker-start:url(#calligraphy-f06-el.svgTriangleInL);marker-mid:none;" sodipodi:start="5.8427480" transform="translate(10, 2441.7472764) matrix(-0.411629,0.837343,0.837343,0.411629,-1024.434,-648.5020)" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="M144.5,1564.1a36.462,36.462,0,0,1,2.12,25.4" sodipodi:open="true" stroke-linejoin="miter" stroke-dashoffset="0.0000000" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/> + <g id="calligraphy-f06-el.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.221170,-0.127691,9.762401e-2,0.169090,-162.1618,-176.7080)"> + <path id="calligraphy-f06-el.svguse4227" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4228" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4229" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4230" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4231" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4232" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4233" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.221170,-0.127691,9.762401e-2,0.169090,-148.5715,-205.1030)"> + <path id="calligraphy-f06-el.svguse4235" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4236" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4237" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4238" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4239" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4240" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4241" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.221170,-0.127691,9.762401e-2,0.169090,-96.44287,-194.9610)"> + <path id="calligraphy-f06-el.svguse4243" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4244" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4245" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4246" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4247" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4248" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4249" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.221170,-0.127691,9.762401e-2,0.169090,-100.7026,-130.4630)"> + <path id="calligraphy-f06-el.svguse4251" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4252" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4253" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4254" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4255" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4256" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.221170,-0.127691,9.762401e-2,0.169090,-131.8377,-176.3050)"> + <path id="calligraphy-f06-el.svguse4259" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4260" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4261" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4262" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4263" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4264" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4265" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.235542,-9.870109e-2,7.545923e-2,0.180077,-30.75973,-207.0980)"> + <path id="calligraphy-f06-el.svguse4267" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4268" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4269" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4270" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4271" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4272" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4273" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.127692,-0.221169,0.169090,9.762466e-2,-145.8976,-85.06700)"> + <path id="calligraphy-f06-el.svguse4275" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4276" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4277" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4278" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4279" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4280" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4281" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.180585,-0.180585,0.138062,0.138063,-57.93601,-141.1250)"> + <path id="calligraphy-f06-el.svguse4283" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4284" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4285" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4286" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4287" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4288" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4289" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.242248,-8.085345e-2,6.181697e-2,0.185204,50.75426,-169.9270)"> + <path id="calligraphy-f06-el.svguse4291" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4292" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4293" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4294" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4295" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4296" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4297" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.213067,-0.140797,0.107643,0.162896,-63.89388,-129.5220)"> + <path id="calligraphy-f06-el.svguse4299" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4300" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4301" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4302" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4303" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4304" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4305" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.114122,-0.228469,0.174669,8.724938e-2,-144.3182,-35.77900)"> + <path id="calligraphy-f06-el.svguse4307" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4308" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4309" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4310" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4311" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4312" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4313" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(-0.210403,0.144746,-0.110663,-0.160858,415.5136,292.3330)"> + <path id="calligraphy-f06-el.svguse4315" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4316" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4317" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4318" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4319" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4320" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4321" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(-0.144746,-0.210403,0.160858,-0.110663,2.148406,237.0070)"> + <path id="calligraphy-f06-el.svguse4323" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4324" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4325" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4326" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4327" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4328" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4329" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.254588,-2.015512e-2,1.540841e-2,0.194641,224.8408,-236.8270)"> + <path id="calligraphy-f06-el.svguse4331" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4332" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4333" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4334" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4335" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4336" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4337" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(2.015455e-2,0.254588,-0.194641,1.540877e-2,550.5455,54.65500)"> + <path id="calligraphy-f06-el.svguse4339" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4340" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4341" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4342" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4343" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4344" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4345" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(0.254588,-2.015512e-2,1.540841e-2,0.194641,209.3269,-220.3120)"> + <path id="calligraphy-f06-el.svguse4347" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4348" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4349" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4350" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4351" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4352" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4353" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <g id="calligraphy-f06-el.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10, 2441.7472764) matrix(-9.749433e-2,0.236041,-0.180461,-7.453626e-2,537.4568,177.1060)"> + <path id="calligraphy-f06-el.svguse4355" d="M139.04,1527.7h14.52s-0.02,51.9,15.34,51.9c-8.74,47.3-10.02,37-10.84,46.8-8.77,5.4-16.35,6.4-19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4356" d="M140.95,1527.7h-14.52s0.02,51.9-15.34,51.9c8.74,47.3,10.02,37,10.84,46.8,8.78,5.4,16.36,6.4,19.73,6" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4357" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,10.02,36.9,10.84,46.7,10.62-5,18.57-6.1,19.39,3.7" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#FFF"/> + <path id="calligraphy-f06-el.svgpath4358" stroke-linejoin="round" d="M140.95,1527.3h-14.52s0.02,51.9-15.34,51.9c8.74,47.2,9.56,38.8,10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svguse4359" stroke-linejoin="round" d="M138.59,1527.3h14.52s-0.02,51.9,15.34,51.9c-8.74,47.2-9.56,38.8-10.38,48.6" sodipodi:nodetypes="cccc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4360" stroke-linejoin="miter" d="M140.13,1527.6v52.9" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="3.3250000" fill="none"/> + <path id="calligraphy-f06-el.svgpath4361" style="color:#000000;" d="m155.15,1610.6c0,10.409-4.2192,18.848-9.4239,18.848s-9.4239-8.4384-9.4239-18.848c0-10.409,4.2192-18.848,9.4239-18.848s9.4239,8.4384,9.4239,18.848z" fill-rule="nonzero" transform="matrix(1.065958,5.034507e-2,-3.429285e-2,0.726085,40.01797,415.8423)" display="block" fill="#000"/> + </g> + <rect id="d0e246" display="none" height="1000px" width="288" y="2583.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e246"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ»Οντας τυπογΟαφικά, Ξ· ΞΌΞγιστη σταθεΟοποίηση ΞΊΞ±ΞΉ συνεπΟΟ‚ ΞΌΞγιστη αντίθεση πλάτους πινελιάς (πάνω Ξ±ΟιστεΟΞ¬) ΞµΞ―Ξ½Ξ±ΞΉ τα χαΟακτηΟιστικά των παλιΟΞ½ ΞΏΞΉΞΊΞΏΞ³ΞµΞ½ΞµΞΉΟΞ½ χαΟακτήΟων ΞΌΞµ πατοΟΟΞ±, Οπως Times Ξ® Bodoni (επειδή Ξ±Ο…Ο„ΞΟ‚ ΞΏΞΉ ΞΏΞΉΞΊΞΏΞ³ΞΞ½ΞµΞΉΞµΟ‚ χαΟακτήΟων ήταν ιστοΟΞΉΞΊΞ¬ ΞΌΞΉΞ± απομίμηση των καλλιγΟαφιΟΞ½ σταθεΟής Ο€ΞΞ½Ξ±Ο‚). Ξ‘Ο€Ο Ο„Ξ·Ξ½ άλλη πλευΟΞ¬, μηδενική σταθεΟοποίηση ΞΊΞ±ΞΉ μηδενική αντίθεση πλάτους (πάνω δεξιά), Ο€Οοτείνουν ΟƒΟΞ³Ο‡ΟΞΏΞ½ΞµΟ‚ ΞΏΞΉΞΊΞΏΞ³ΞΞ½ΞµΞΉΞµΟ‚ χαΟακτήΟων χωΟΞ―Ο‚ πατοΟΟΞ± Οπως Ξ· Helvetica.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2689.0837814" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2689.0837814" x="10">Ξ¤ΟΞμουλο</tspan> + </text> + <rect id="d0e255" display="none" height="1000px" width="288" y="2694.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e255"/> + </flowRegion> + <flowDiv xml:space="preserve">Το <flowSpan font-style="italic">Ο„ΟΞμουλο</flowSpan> σκοπεΟΞµΞΉ Ξ½Ξ± Ξ΄Οσει ΞΌΞΉΞ± πιο φυσική εμφάνιση στις καλλιγΟαφικΞΟ‚ πινελιΞΟ‚. Το Ο„ΟΞμουλο Ουθμίζεται στη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΞ»Ξγχων ΞΌΞµ τιμΞΟ‚ Ξ±Ο€Ο 0,0 ΞΌΞΟ‡ΟΞΉ 1,0. ΞΞ± επηΟεάσει τις πινελιΞΟ‚ σας παΟάγοντας οτιδήποτε Ξ±Ο€Ο ΞµΞ»Ξ±Ο†ΟΞΉΞ¬ ανωμαλία ΞΌΞΟ‡ΟΞΉ άγΟΞΉΞµΟ‚ μουντζαλιΞΟ‚ ΞΊΞ±ΞΉ κηλίδες. Ξ‘Ο…Ο„Ο ΞµΟ€ΞµΞΊΟ„ΞµΞ―Ξ½ΞµΞΉ σημαντικά τη δημιουΟΞ³ΞΉΞΊΞ® ΞµΞΌΞ²Ξλεια του ΞµΟγαλείου.</flowDiv> + </flowRoot> + <g id="calligraphy-f07-el.svgg3123" sodipodi:insensitive="true" transform="translate(10, 2773.5544264) translate(0,30)"> + <text id="calligraphy-f07-el.svgtext3115" font-weight="normal" xml:space="preserve" font-size="6px" display="block" font-style="normal" y="12.058847" x="0.87408441" font-family="Bitstream Vera Sans" fill="black"><tspan id="calligraphy-f07-el.svgtspan3117" y="12.058847" x="0.87408441" role="line">Ξ±ΟΞ³Ξ¬</tspan></text> + <text id="calligraphy-f07-el.svgtext3119" font-weight="normal" xml:space="preserve" font-size="6px" display="block" font-style="normal" y="21.308847" x="0.87408441" font-family="Bitstream Vera Sans" fill="black"><tspan id="calligraphy-f07-el.svgtspan3121" y="21.308847" x="0.87408441" role="line">μεσαία</tspan></text> + <text id="calligraphy-f07-el.svgtext1987" font-weight="normal" xml:space="preserve" font-size="6px" display="block" font-style="normal" y="30.558847" x="0.87408441" font-family="Bitstream Vera Sans" fill="black"><tspan id="calligraphy-f07-el.svgtspan1988" y="30.558847" x="0.87408441" role="line">Ξ³ΟήγοΟΞ±</tspan></text> + </g> + <use id="calligraphy-f07-el.svguse3165" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(158,186) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3163" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(0,186) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3161" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(158,139.5) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3159" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(0,139.5) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3157" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(158,93) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3155" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(0,93) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3153" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(158,46.5) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3151" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(0,46.5) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <use id="calligraphy-f07-el.svguse3149" xlink:href="#calligraphy-f07-el.svgg3123" transform="translate(10, 2773.5544264) translate(158,0) translate(-10, -2773.5544264)" height="1052.3622" width="744.09448" y="0" x="0"/> + <text id="calligraphy-f07-el.svgtext3177" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="5.0588455" x="132.37408" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan3179" y="5.0588455" x="132.37408" role="line">Ο„ΟΞμουλο = 0</tspan></text> + <text id="calligraphy-f07-el.svgtext3111" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="35.058846" x="62.374077" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan3113" y="35.058846" x="62.374077" role="line">Ο„ΟΞμουλο = 10</tspan></text> + <text id="calligraphy-f07-el.svgtext1990" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="80.021095" x="62.337463" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan1991" y="80.021095" x="62.337463" role="line">Ο„ΟΞμουλο = 30</tspan></text> + <text id="calligraphy-f07-el.svgtext2991" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="125.48337" x="62.359436" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan2993" y="125.48337" x="62.359436" role="line">Ο„ΟΞμουλο = 50</tspan></text> + <text id="calligraphy-f07-el.svgtext2995" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="170.94562" x="62.353577" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan2997" y="170.94562" x="62.353577" role="line">Ο„ΟΞμουλο = 70</tspan></text> + <text id="calligraphy-f07-el.svgtext1993" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="216.40787" x="62.308167" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan1994" y="216.40787" x="62.308167" role="line">Ο„ΟΞμουλο = 90</tspan></text> + <text id="calligraphy-f07-el.svgtext1996" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="34.558846" x="212.52852" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan1997" y="34.558846" x="212.52852" role="line">Ο„ΟΞμουλο = 20</tspan></text> + <text id="calligraphy-f07-el.svgtext2999" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="80.021095" x="212.39668" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan3001" y="80.021095" x="212.39668" role="line">Ο„ΟΞμουλο = 40</tspan></text> + <text id="calligraphy-f07-el.svgtext3003" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="125.48337" x="212.41719" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan3005" y="125.48337" x="212.41719" role="line">Ο„ΟΞμουλο = 60</tspan></text> + <text id="calligraphy-f07-el.svgtext3007" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="170.94562" x="212.4333" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan3009" y="170.94562" x="212.4333" role="line">Ο„ΟΞμουλο = 80</tspan></text> + <text id="calligraphy-f07-el.svgtext1999" font-weight="normal" xml:space="preserve" transform="translate(10, 2773.5544264) " display="block" font-size="6px" font-style="normal" y="216.40787" x="212.42744" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-el.svgtspan2000" y="216.40787" x="212.42744" role="line">Ο„ΟΞμουλο = 100</tspan></text> + <path id="calligraphy-f07-el.svgpath2977" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M194.8,36.948c1.29-0.601,0.52,0.12,1.45,0.334,2.52-1.549,1.81,0.053,4.27-0.637,1.28-0.353,2.32-0.038,3.05,0.498,1.8-0.453,2.87-0.127,5.81,1.097,2.18-0.635,4.16-0.293,6.51-0.5,0.47,0.614,2.73,0.499,3.68,0.565,2.15-0.487,4.27-0.787,6.4-0.947,0.09,0.904,2.65,0.428,3.16,0.371,0.97-0.199,1.99,0.119,2.95,0.353,3.23-0.916,1.37,0.381,4.37-0.736-1.4,1.416,2.09,0.494,2.79,0.471,1.79-0.518,2.38-0.587,3.64-0.103,1.98-0.245,3.54,0.196,5.01,0.846,2.31-0.853,4.52-1.043,6.89-1.084,2.98,0.261,4.09,0.374,7.43-0.322,2.95-1.036,2.53,0.415,5.43-0.677,0.54,0.998,3.39,0.209,4.83-0.366,0.6,0.226,1.92,0.846,2.29,0.951,2.08-0.124,2.09-0.087,4.66-0.851-0.42,0.435-1.05,0.738-1.26,1.306-0.44,1.218,2.55-0.475,3.84-0.646,3.72-1.462,2.08,0.493,4.02-0.398,1.03,0.606,2.48,0.244,3.79,0.032l-6.76,4.912c-0.98,0.178-2.68,0.636-3.41-0.307-1.5,0.136-1.43-0.769-3.76,0.205-0.39-0.003-2.47,0.179-2.31-0.854-1.96,0.96-2.76-0.059-4.91,1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53,0.202-3.24,0.498-4.71,0.32-1.39,0.241-2.82-0.298-4.47,0.06-2.95,1.367-5.38,0.149-8.62,1.069-1.86-0.304-3.62-0.397-5.45,0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06,0.196-4.39,1.037-2.47-0.752-2.06,0.611-2.64-0.038-5.16,1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29,0.117-2.93,0.676-4.12,0.329-0.78,0.139-3.32,0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75,0.205-1.79-0.35-4.33,0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56,0.109-3.54,0.497-2.55-0.61-3.06,0.929-0.72-0.19-3.1,0.872l6.13-4.458z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath2979" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M191.44,45.785c0.85-0.474,1.35-0.514,3.24-0.714,2.47,0.162,6.67,0.512,10.06,1.743,12.81-0.778,25.78,1.534,38.22-0.166,10.12,1.116,20.05,1.409,30.45,0.476,2.99-0.579,5.63,0.081,8.53-0.262,1.81-0.607,3.98,0.525,4.73,0.775,0.58-0.186,1.16-0.371,1.74-0.556l-5.99,4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94,0.04-3.98-0.145-5.78-0.01-2.6,0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06,0.842-30.26-0.622-12.6,0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51,0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07,0.596l5.92-4.305z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath2981" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M192.55,54.078c-1.33,0.624,3.92,0.871,4.86,0.859,10.59,0.589,20.64,1.961,31.08,1.747,10.55,0.419,21.58-1.876,32.01-0.449,5.62-0.57,11.28,0.465,16.7,0.442,2.26-0.493,3.21,0.593,5.87-0.231,1.85,0.112,3.71,0.066,5.56,0.099l-5.39,3.917c-2.84,0.507-4.5,0.397-6.7,0.729-1.47,0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24,0.999-16.8-0.346-10.77,0.83-21.03-0.616-31.9,0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89,0.107-7.04,1.778-5.85-0.078l6-4.36z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath2985" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M35.08,38.403c0.886-0.358,1.917-0.172,2.754-0.277,2.607,0.256,4.942,0.268,7.572,0.412,3.225,0.229,6.356,0.231,9.589,0.267,2.04,0.749,4.189,0.52,6.404,0.483,2.484,0.06,5.022,0.028,7.484-0.054,1.779,0.139,3.525,0.185,5.295,0.05,1.709-0.295,3.307,0.132,4.972,0.329,1.49-0.433,2.816,0.162,4.174,0.332,1.234-0.464,2.543-0.181,3.757-0.136,1.729-0.381,1.722,0.333,3.593-0.088,1.27-0.025,2.457,0.197,3.896,0.009,1.531-0.27,2.792,0.134,4.328-0.095,1.172,0.101,1.912,0.416,2.972,0.577,1.62-0.544,1.72,0.248,3.09,0.491,1.29,0.089,2.63-0.095,3.92-0.134,1.06,0.245,1.85,0.25,3.02,0.308,1.47-0.004,2.77-0.196,4.18-0.116,1.25,0.153,2.21,0.199,3.43,0.033,1.43-0.084,2.77-0.011,4.24-0.111,1.12,0.086,2.79,0.126,3.88,0.208,1.44-0.005,2.88-0.138,4.3-0.221,0.33,0.31,2.46,0.061,3.49-0.056,1.05,0.286,2.22,0.181,3.33,0.07,0.8,0.297,1.1,0.027,1.96,0.048l-5.82,4.228c-0.99,0.09-1.13,0.54-1.84-0.13-1.66,0.452-2.18-0.047-3.95,0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55,0.34-2.72,0.321-4.25,0.194-1.43,0.062-2.71-0.253-4.17,0.001-1.5,0.123-2.81-0.253-4.24,0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27,0.048-2.47,0.196-3.72,0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425,0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3,0.039-2.492,0.007-3.917,0.007-1.219,0.15-2.226,0.103-3.458-0.009-1.141-0.077-2.264,0.185-3.426-0.117-1.829,0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963,0.186-3.817,0.333-5.762,0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27,0.468-4.646-0.046-6.95-0.148-2.935,0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592,0.459-8.134,0.04-0.985,0.19-1.957,0.275-2.41,0.027l5.689-4.133z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath2987" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M33.526,48.165c0.829,0.287,1.929-0.108,2.914-0.105,3.657,0.013,7.31,0.812,10.998,0.753,4.922,0.693,9.874-0.276,14.801,0.057,4.247,0.47,8.268,0.488,12.575,0.147,4.828,0.995,9.8,0.017,14.792,0.591,4.882,0.467,9.572-1.713,14.414-0.86,3.94-0.9,8-0.02,11.87-0.606,4.03,0.708,8.11,0.547,12.16,1.208,2.77-0.064,5.34,0.293,8.05-0.161,1.13-0.049,2.92,0.447,3.54,0.47,1.41-0.824,2.36-0.242,3.16-0.183l-5.48,3.98c-1.12,0.125-2.28,0.444-3.4,0.365-1.27,0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77,0.556-7.46,0.12-11.216,0.192-4.947,0.864-10.144,0.541-15.137,1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215,0.544-8.459-0.126-12.716-0.025-4.764,0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905,0.353-11.297-0.507-0.988,0.124-2.338,0.425-3.234,0.338l6.163-4.478z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath2989" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M26.426,62.007c1.763-1.881,5.862-5.061,9.257-4.321,7.252,0.625,14.596,0.199,21.912,0.035,14.612,0.201,29.327-1.609,43.885-0.14,11.75-0.217,23.6,0.38,35.31,1.253,4.25-0.171,2.3-0.16,5.86-0.094l-6.12,4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698,0.096-44.538,0.657-7.759-0.009-15.492,1.094-23.238,0.889l-3.322,0.021z" fill-rule="nonzero" sodipodi:nodetypes="cccccccccccc" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3011" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M33.461,83.415c-1.31,2.484,5.61-3.81,2.313-0.253-1.291,1.663,3.907-0.478,4.236-0.632-0.293,1.592,4.092,0.455,5.697,0.885,1.587,0.366,4.504,0.542,6.327,0.054,0.663,0.753,3.266,0.482,4.581,0.296,3.021-0.57,1.517,1.058,4.486,0.562,1.725-0.572,2.828,0.078,3.425,0.16,6.01-2.452-2.493,1.702,3.3,0.121,1.689-0.852,3.013-0.432,4.586-0.803-0.715,1.618,2.974,0.029,4.523-0.272-0.271,1.009,2.02,0.807,3.058,0.691,6.659-2.697-1.221,0.446,2.867,0.472,1.791-1.045,2.68-0.351,4.362-0.641-1.784,1.695,2.983,0.208,4.192,0.156,1.098,0.072,2.187,0.389,3.285,0.321,4.382-1.528,1.48,1.779,5.901-0.217,1.83-0.08,2.16,0.453,3.98,0.502,6.26-1.925,0.38,2.159,5.28-0.456,0.67,0.085,1.05,0.919,2.45,0.947,2.78-1.301,2.38-0.329,3.69-0.238,3.38-1.463-0.06-0.076,3.08,0.257,2.52-0.209,0.27-0.946,4.73-0.632,3.54-0.829,0.63,0.977,5.94-0.596,1.02-0.08,2.35,0.992,3.23,1.536,5.22-2.555,1.74,0.418,6.3-1.552,0.19,1.716-0.1,1.202,2.76,0.551l-5.24,3.802c-0.96,0.498-5.2,1.276-3.88,0.269-1.65,0.378-2.76,0.579-3.78-0.282-3.43,1.739-2.92-0.724-6.8,1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37,1.711-2.09-0.537-3.79-0.055-1.29,0.264-2.41-0.248-3.93,0.362-0.85,0.259-3.08,0.194-2.6-0.55-3.66,1.428-2.05,0.039-5.05,0.934,1.73-2.092-2.71,0.711-4.072-0.428-0.615-0.068-3.472,0.36-4.197-0.396-1.828,0.326-6.925,2.098-4.727-0.575-3.694,1.651-0.439-0.699-4.362,0.462-0.658,0.094-3.941,0.56-4.219-0.136-2.309,0.473-2.563,0.009-3.781,0.218-1.138,0.111-4.174,0.808-3.431-0.062-1.432,0.046-2.147-0.035-4.227,0.158-0.99-0.012-2.101-0.839-4.338,0.139-1.026,0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344,0.239-3.775,0.226-3.896,1.324,1.438-2.093-3.888,0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447,0.819-4.191,0.034-5.66,0.539-2.348-0.106-3.539,0.588-5.972-0.346-1.93,0.304-5.984,0.511-6.631-0.153-0.412,0.103-2.293,0.421-3.348-0.013-3.961,0.884,3.494-2.784-2.896,0.676l6.375-4.632z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3021" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M33.458,94.024c2.933-1.819,1.772-0.698,5.947,0.083,8.524-0.15,17.163,0.365,25.984-0.571,4.573,1.527,9.157,0.557,13.798,0.532,3.168-0.096,6.077,0.139,9.052,0.048,3.278,0.435,6.616-0.839,9.725-0.244,3.196,0.638,5.196,0.302,8.476-0.084,2.59,0.576,5.4,0.371,7.83-0.451,3.44,1.794,8.43-0.094,12.52,1.022,3.41-1.339,6.88-0.894,10.42-0.531,1.35,0.371,1.31-0.226,2.68,0.049l-5.44,3.952c-3.07,1.402-0.35-0.2-2.97,0.163-3.12-0.702-6.55,1.228-9.54-0.105-4.93,0.274-9.6-0.338-14.49,0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563,0.128-7.327,1.502-8.133-0.164-3.18,0.905-6.895,0.857-10.152,0.553-2.889,0.37-6.269,0.348-9.495,0.274-5.869,1.281-7.706-2.561-14.538,0.006-8.429-1.855-16.913-1.212-25.309,0.079-1.733-0.628-7.075,0.667-5.288-0.56l5.103-3.708z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3023" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M32.767,104.9c1.044,0.29,5.146,0.46,7.748,0.27,16.106,2.01,32.482,0.07,48.676,1.05,16.089,0.14,31.409,0.36,47.059-1.64,2.78,1.82,5.81,0.1,8.67-0.72l-7.49,5.5c-2.64-0.18-5.18,0.46-7.84,0.09-14.78-2.49-30.074,0.79-45.002,0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3025" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M195.21,82.699c-3.35,3.447-1.05,1.432,2.04,0.087-1.56,1.739-1.27,2.186,0.92,1.606,2.4-0.45,4.77-2.558,4.15,0.908,1.99-1.32,4.75-0.504,5.53-0.394,2.11,0.771,9.03-3.405,7.3-0.669,2.41-0.613,4.07-0.637,5.57-0.543-0.43,4.082,4.83-3.024,1.92,1.797,4-0.984,7.83-3.662,3.12,0.577,2.83-2.21,5.35-1.471,7.41-0.996,0.35,1.18,5.31,0.198,5.69,0.179,3.47-0.968,0.65,0.752,3.13,0.518,1.27-0.599,4.6-1.225,4.22,0.129,2.34-0.412,5.11-0.523,7.49-0.347,1.17,0.485,5.7-1.441,4.4,0.123,2.3-1.014,1.63-0.086,3.41,0.047,2.07,0.269,6.28-3.431,3.6-0.332,1.65-0.923,3.74-1.015,5.23-1.72-0.75,0.347,1.34,1.113,2.16,1.199-0.33,1.346,3.3-0.621,4.87-1.392-0.48,0.432-2.07,1.353-1.43,1.294,4.33-0.401,1.48-0.57,3.75-1.205,2.08-0.754,2.97,0.182,4.48-0.328,1.42-1.019,2.56,0.463,3.49,0.599,3.95-2.108,1.51-0.271,4.38-1.042l-6.91,5.023c-0.61,0.188-2.02-0.393-1.68-0.929-2.87,1.581-2.71,0.713-4.51,0.152-1.84,0.299-4.89,0.694-6.89,2.161,3.03-3.345-1.84-0.328-2.66,0.493,4.13-4.599-1.58,2.084-1.05-1.805-2.28,1.027-3.52,0.542-5.55,1.381,2.61-2.76-2.18,0.628-3.35,0.421-0.07-0.013-1.13-1.958-3.91,0.371-1.41,0.004-0.79-1.887-3.88,0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44,1.621-4.94-0.128-8.87,1.353-1.92-1.331-3.81,0.408-4.62,0.162-5.2,1.123,1.19-2.283-3.58-0.203-1.85,0.062-3.98,0.646-4.22-1.284-2.65,0.803-4.22,1.331-6.63,0.458-0.78,0.371-2.99-0.644-4.1,0.041-1.56-0.428-3.31-0.104-4.83,0.434,3.04-3.743-1.92,1.06-2.24-1.875-5.67,2.623-3.19-0.488-8.52,1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55,0.241-4.1-1.03-3.3,1.635-0.94-1.024-3.7,0.361-0.43,0-0.66-1.382-0.26-1.246l6.03-4.381z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3033" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M196.24,101.77c2.85-1.29,6.99-0.49,10.23,1.14,14.46-1.35,28.78,1.11,43.44,0.58,8.29,3.28,16.99-1.59,25.02-1.26,1.28,0.05,1.79,2.39,3.07,2.55,3.76,0.49,7.5-1.29,11.28-1.38,1.17-0.05,2.34-0.11,3.51-0.17l-5.22,4.16c-1.1,0-2.19-0.01-3.28-0.01-12.75,0.28-25.26,0.75-37.91-1.09-14.95,1.33-29.71-1.02-44.58,0.32-6.44-2.14-10.97,0.61-12.51,0.18l6.95-5.02z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3039" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M194.76,95.461c2.04-0.272,4.02-1.406,6.57-1.698,6.35-0.954,14.15-1.585,21.65-1.52,8.18,1.795,5.42,0.845,15.47-1.263,4.38-0.916,5.68,1.657,10.73,0.517,3.54,2.778,7.34-0.138,11.48,1.431,3.43,1.543,8.09,1.261,13.67,1.335,4.92-1.05,8.99-0.967,13.86-0.541,0.96,1.397,3.31,1.058,5,0.951l-4.82,3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03,1.27-10.34,0.8-15.05,1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83,0.593-9.32-0.322-14.08,0.487-8.84,0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67,4.934-21.79,1.708-2.55,0.428-5.7,2.506-6.25,1.336l5.27-3.829z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3041" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M33.23,133.02c9.323-6.44-0.804-0.11,3.574-1.21,1.919-0.76,4.042-0.83,6.079-1.14,1.832,0.91,3.358,0.62,5.142-0.24,2.092-0.26,2.081,0.61,3.142,1.27,0.295,0.75,2.066,0.8,5.784-0.62-0.748,1.03,3.154-0.24,4.3-0.2-1.013,0.82,2.736,0.65,3.911,0.08-0.678,0.64-2.939,1.7-2.034,1.91,2.811,0.66,3.819-1.49,4.737-1.28,3.573-1.55,0.501-0.26,2.548,0.6,1.274-0.56,2.754-0.42,4.142-0.52,5.074-2.09-0.063,0.21,3.506-0.04,3.999-1.45-3.021,2.91,3.269,0.25,4.183-1.99,4.168-0.07,5.91-0.72,2.509-0.32,2.58-0.11,2.451,1.07,1.909,0.24,6.129-2.97,5.109,0.5,2.622-0.96,3.119,0.39,5.48-0.72-1.449,0.5,2.81-0.94,3.69,0.43,2.33-0.26,5.02-1.78,4.29,0.35,0.34-0.58,5.19-1.71,2.72,0.81,2.66-1.83,4.81-1.34,6.37-2.12-3.23,2.55,3.12,0.21,4.24-0.2,3.92-1.62,2.86,1,1.04,2.73,3.92-3.15,3.43-0.73,6.55-2.11,2.22-0.26,3.76-0.58,2.65,0.61,1.82-0.59,2.01,0.75,2.05,0.76,3.33-2.2,1.61-0.05,4.6-0.86,4.97-2.1-0.78,1.59,2.52,0.71,0.35-0.12,0.7-0.24,1.04-0.37l-5.7,4.15c0.39-0.41,0.77-0.82,1.16-1.23-4.72,2.78-2.03-0.22-6.17,1.93-8.12,2.67,4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33,0.66-2.18-2.47-0.53-4.83,0.84,3.34-3.84-2.45-0.87-1.64,0.3-7.56,3.1-4.42-0.27-5.61,2.29-0.68-0.06-5.06,0.8-3.52,1.93-0.92,0.33-1.82-1.2-6.99,2.89-0.28-1.29-6.15,1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856,0.4-6.63,1.38,4.435-3.72-4.068-0.36,4.159-5.39-9.944,3.95-3.2-1.81-8.026,3.42,0.218-0.86-6.637,1.97-0.15-0.1-5.494,0.99-3.284-1.19-2.173,0.71-2.641,0.06-4.984,0.99,4.147-5.88-2.606,0.71-4.352,0.66,1.188-1.01,2.683-1.74,3.563-3.02,0.172-0.25-7.708,4.23-4.984,1.56-7.138,2.73,7.835-5.25-3.708,0.25-1.538-0.96-0.093-2.36-6.043,1.8,3.373-3.06,1.066-2.19,0.164-3.05-0.875,0.38-7.936,3.89-4.876,0.62-2.651,0.52-5.168,0.59-7.638,1.89,4.038-4.18-0.567,0.27-1.6-2.31,0.457-4.26-2.753,0.99-4.294-0.38-13.227,4.03,8.358-4.43-6.692,1.58,3.027-2.96-4.082,1.99,0.754-1.93l1.997-1.45z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3043" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M33.328,141.73c-2.02,2.14,1.79,0.27,2.043,0.21,5.094-2.14,4.93,0.64,7.709,0.18,4.275,3.75,8.609-2.4,14.075-2.5,1.042-0.01-1.336,1.93-1.082,2.94,0.17,0.67,1.323,0.43,1.984,0.64,4.548-1.22,9.915-3.95,16.148-0.6,3.636,3.01,12.01-3.17,15.953-0.78,3.682,1,5.593,1.64,8.754,2.56,3.688-0.21,15.238-6.08,15.158-0.72,5.19-0.93,10.22-1.89,15.51-2.25,2.25,0.11,4.16-0.71,6.25-0.21,3.05-1.5-1.12,1.93-0.72,1.88,3.18-0.38,3.84-3.09,2.21-0.17,0.33-0.1,0.67-0.19,1-0.29l-5.23,3.8c-0.47,0.19-0.94,0.39-1.4,0.58-7.36,3.17,2.31-2.28-2.65-0.87-2.26-0.78-3.96,0.1-6.38,0.33-0.85,0.13-8.1,0.33-11.17-0.9-6.68,1.88-11.47,0.81-18.234,2.92,0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873,0.14-14.343,1.24-13.345-1.43-1.125,0.3-11.49,2.85-12.239,2.53-0.983-0.42,2.32-2.69,1.281-2.94-3.059-0.73-5.794,3.53-8.969,2.94,2.233-8.88-10.979,5.74-4.411-2.57-1.821,0.86-5.206,2.31-3.51,0.85l5.495-3.99z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3049" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M34.434,150.81c-3.75,1.6,4.367-1.63,8.084,0.29,15.586,2.18,30.861,2.92,47.026-0.32,12.686,2.2,25.026,0.12,37.626-0.76,6.8-1.76,8.22-0.26,15.48-2.86,4.27,0.51,0.4,2.25,4.86,3.01l-3.61,2.59c-3.37,0.77-5.5,1.76-8.29-0.53-3.58,1.37-7.29,1.81-10.3-0.85-13.13,3.04-24.54,4.42-37.82,0.91-16.419,4.3-33.702,4.7-50.631,2.89-5.568-0.21-5.772-1.55-10.064,1.18l7.639-5.55z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3051" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M195.06,130.69c-0.12,1.46,2.15-0.55,3.05-1.13-0.22,1.94-2.17,3.39,2.5,0.54,4.59-1.52-0.07,2.1,3.36,0.02-4.3,5.3,6.34-4.96,1.17,1.6,1.56-0.88,5.27-3.76,3.37-0.01,3.16-1.53,6.71-3.12,4.97-0.96-2.21,2.27,2.2,0.24,3.05,0.05,7.29-4.58-3.8,4.41,3.32-0.14,1.24,0.89,4.76-1.05,3.55,0.89-0.21,1.75,5.13-1.86,3.6,0.31,3.79-2.16,2.75,1.31,4.92,0.57,2.56-1.34,3.43-1.75,4.45-0.11,11.6-6.55-3.45,3.27,4.25-0.96,0.72,1.7,0.62,1.26,3.88-0.71-3.02,4.22,1.02,1.36,2.49,0.47-1.73,2.96,0.43,1.75,3.89-0.64-1.45,4.09,3.54-0.43,1.29,3.33,9.27-5.26-2.26,2.23,7.06-1.76,2.94-0.98,3.05,0.17,2.99,0.52,0.77-0.33,1.65,0.23,2.44,0.51,5.64-3.96-0.41,2.11,6.43-2.88-5.27,4.09,0.49,0.99,0.65,0.91-4.06,3.75,1.62,0.32,3.27-0.58,3.42-2.61,0.64,1.19,4.66-1.01-1.69,0.79,1.53,0.9,2.37,0.61,6.53-2.81-3.34,1.09,2.24,0.64,2.97-0.96,5.74-4.34,3.05-0.02-0.38,0.44-0.76,0.89-1.14,1.33l-4.26,3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71,0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75,2.45-3.19,0.14,2.92-4.24-2.13,1.01-3.64,0.51,0.24-0.36,1.1-1.24,0.73-1.07-9.9,4.67,2.62-0.48-2.72-0.02-3.54,1.27-4.15,2.24-5.2,2.37,0.46-0.84,2.05-1.89,1.38-2.51-0.79-0.73-1.76,1.17-2.64,1.75-2.34,1.16-2.8,0.67-3.15,0.16-3.66,1.77-2.32-0.05-4.08,0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74,0.24-6.08,1.45-4.6-0.3-9.67,5.71,5.29-4.28-5.72,0.36,0.51-0.57,1.19-0.99,1.52-1.71,0.64-1.38-2.88,2.11-3.98,1.18-6.61,4.13,2.98-4.4-3.69,0.51-5.17,2.55,2.21-3.17-3.9,0.73-1.46,0.04-1.47,0.43-1.71-1.15-9.6,5.4,4.46-4.29-4.13-0.16-3.31,0.98-2.56-0.18-5.19-0.43-2.39,0.56-2.44-0.28-4.87,0.84-3.63,0.4-0.34-1.73-3.31-1.09-0.64,0.41-9.14,5.3-2.6-0.46-0.9,0.22-5.49,2.4-3.09-0.06-0.98,0.46-5.85,2.95-4.56,0.61-2.87,1.32-1.31,0.88-0.54-1.02,0.49-1.19-1.96,1.68-3.11,1.71-0.56,0.01,0.79-0.92,1.19-1.37-5.25,1.94,2.71-4.8-6.84,3.08,8.59-7.9,1.99-2.14-0.83-2.11-0.81,0.4-3.03,0.46-2.63-0.44-0.96,0.38-5.49,3.2-2.28,0.5l5.62-4.65z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3059" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M191.81,140.43c7.61-5.26-5.16,4.15,4.82,0.56,10.48,1.31,19.84-3.33,30.41-0.66,15.66,3.63-10.95-1.84,12.17-0.61,1.07,0.06,1.5,2.41,2.56,2.22,3.62-0.66,6.63-3.88,10.24-4.54,0.83-0.16,0.64,1.96,1.38,2.41,0.98,0.58,2.2,0.25,3.3,0.38,5.7-0.33,9.09-0.92,14.89-0.81,3.93,1.18,9.92,0.4,15.44-0.24,1.56,2.36,4.82,0.55,6.67,0.22l-6.87,5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92,2.01-12.63,4.03-16.81,1.35-8.21,2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2,4.51-9.06,0.78-10.88,3.65-22.5-2.78-33.63,3.5-0.01-1.69,1.45-4.85-0.02-5.07-3.51-0.51-6.64,3.05-10.15,3.58-3.75,0.58-14.74-1.69-19.45,1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3061" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M192.05,149.86c-0.39,1.61,7.94-0.68,11.16,0.18,8.77,6.69,12.51,2.6,22.98,2.24,2.9-0.1,5.69,2.06,8.58,1.71,19.93-5.74,10.73-4.41,27.44-5.28,17.21,4.03-3.5,0.39,20.43-1.16,2.04-0.14,3.96,1.17,5.94,1.76,2.49-0.22,4.97-0.44,7.46-0.66l-4.6,3.82c-15.37-3.88,11.53,1.98-17.57,2.38-1.95,0.02-3.34-2.29-5.01-3.44-3.81,0.43-7.62,0.85-11.42,1.28-19.64,0.19-38.45,4.95-57.87,0.36-6.38-0.56-10.91-0.27-12.95,1.3l5.43-4.49z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3063" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M40.122,174.55c-3.022,2.64-3.242,3.22,0.862,0.78,2.568-0.55,3.238-1.35,1.761,1.15,1.632-0.82,3.618-0.6,5.335-1.22,0.831,1.83,2.661,0.54,4.231,0.05-0.271,1.27,3.382-0.35,4.684-0.81-5.002,2.63,2.138,0.88,2.18,0.9,3.535-1,2.166,0.27,5.12-0.33,0.53-0.14,1.722-0.96,1.591-0.42-0.833,3.39-2.058,3.02,5.101-0.15,4.133-1.9,0.65-0.54-0.618,1.44-0.883,1.38,4.671-3.88,4.347-2.27-0.319,1.57-2.288,2.25-3.432,3.37,7.295-4.62,0.548-0.38,6.466-1.4,0.457-0.14,1.624-0.82,1.37-0.41-5.769,9.2,9.057-6.83,0.457,2.16,2.044-1.41,6.807-2.23,7.068-2.38,3.127,0.37-4.737,2.54-3.595,3.88,1.238,1.45,3.085-3.21,4.961-2.86,1.53,0.29-2.695,1.79-3.459,3.15-0.931,1.65,3.452-1.59,5.139-2.47-0.315,0.41-1.408,1.43-0.944,1.21,13.063-6.07-4.061,1.88,4.28-0.82,5.586-2.47-0.697,1.84,4.665-1.1,4.428,1.25-2.535,4.37,3.528,1.09,7.54-4.06-6.535,6.11,3.72,0.02-0.08,0.99,1.75,0.92,3.27,0.19,0.33,0.54,4.11-0.23,5.16-0.53-6.3,8.18,7.03-10.19,3.29-0.64-0.63,1.62-9.6,6.79-1.19,1.73,0.07,0.81,2.47,0.51,2.74,0.48,5.11-2.73,3.98,0.14,6.3-0.76-0.91,0.88-3.97,2.59-2.71,2.64,2,0.07,4.39-1.03,7.1-2.11,9.68-2.89-7.67,3.28,3.67-0.71,5.55-1.95-10.87,6.4,0.75,0.29,2.74-2.25,1.73,1.17,1.6,1.47,6.44-3.98,3.35-0.1,8.16-2.74-7.66,7.95,7.87-4.65,0.29,2.29l-1.21,0.88c-12.62,8.2,1.43-1.87-8.99,4.02,8.15-7.27-0.43,0.52-1.29-2.25-6.17,1.94,0.87-3.08-8.98,3.9,2.54-2.19,4.33-3.77,0.94-3.48-0.88,0.31-5.12,0.97-5.17,0.04-4.94,1.59-1.74-0.44-6.03,0.56,4.82-4.96-6.69,4.49-1.68-1.24-1.8,1.16-3.39,2.71-5.38,3.49-3.21,1.25,4.67-3.93,1.53-3.31-3.51,1.02-5.83,1.8-8.304,2.82,6.194-5.43-0.018-1.34-3.079-0.35,7.173-8.46,4.573-2.63-0.353-2.53-5.981,2.7,0.379-2.28-3.842-0.81-4.264,2.42-1.18,0.25-5.014,1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18,4.716-5.24,0.051-1.03-2.911-0.55-3.413,1.7,3.168-3.79-4.535,0.11-4.426,1.07-0.425-1.57-0.924-2.5-2.471,1.43-4.349,1.81-7.961,3.02,4.349-5.25-1.287-1.39-4.03-1.36-7.628,3.1,3.309-1.01-0.085-1.27-0.926-0.08-2.451,0.83-5.674,2.06-0.018,0.01-4.319,2-2.574-0.61-3.939,0.42,2.508-2.68-3.553,0-5.227,0.97,1.271-2.49-3.062-0.91-7.709,4.49,0.382-2.08-7.241,2.6,0.874-0.76,2.091-1.26,2.622-2.29,0.745-1.45-5.419,2.84-4.695,1.38-0.663,0.17-1.308,0.59-1.988,0.52-3.949-0.46,3.354-1.8,1.822-1.82l6.809-4.94z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3065" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M35.295,184.15c-1.408,1.51,1.402,0.44,5.589-1.76-12.237,9.34,3.61,2.76,10.17,5.03,8.759-3.13,16.485-0.26,25.246-0.35,9.491,0.09,9.269-1.78,18.563-0.05,0.603,1.05,9.457,1.66,12.527,1,4.9,1,15.6-6.9,6.46,1.39,6.55-4.12,5.23-0.43,11.46-3.72-6.09,5.2,1.16,1.4,3.35,1.86,11.4-5.84-14.23,11.74,10.33-2.68-13.96,9.61-0.14,3.56,3.76,1.44-1.35,1.15-2.9,2.1-4.03,3.45-0.99,1.18,2.82-1.2,4.26-1.72l-8.31,6.03c4.56-4.39,4.71-3.88-0.18-1.76-6.53,2.14,6.54-5.75-6.97,0.89-4.29,1.01-4.86,0.19-4.14-1.82-1.12,0.49-9.44,3.74-6.53,0.36-2.63,1.07-5.24,2.36-8.05,2.81-12.281,1.96,12.15-5.71,0.68-1.96-3.44,0.68-5.93-0.46-10.007,1.17,1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66,10.353-3.72-1.834-2.26-4.605-0.44-18.728,3.61-18.544,0.04-9.58-1.59-16.709,3.05-25.664,0.66-7.072-4.98-11.206-3.31-17.449,0.13,4.387-7.42-8.41,5.65,0.592-2.58l5.937-4.31z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3067" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M32.946,195.27c-2.487,2.52,4.616-3.2,4.416-1.87-0.565,3.75-6.982,3.94,0.344,2.88,9-6.79,13.232,0.14,21.812-0.32,14.758-0.77,5.673-3.62,15.935,0.97,10.537-0.69,45.807-1.32,53.777,2.17,11.68-2.26,6.7-2.53,14.93-1.08l-2.49,1.8c-2.28-8.7,0.23-4.11-15.62,1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7,0.774-1.23-18.514,0.91-3.143,0.35-5.37-4.94-9.066-2.79-2.98,0.45-5.633,2.26-8.6,2.8-0.914,0.17-1.787-0.5-2.681-0.76-16.15,6.54-2.325,2.06-3.609-0.51-0.01-0.02-3.711,2.26-2.394,0.4l5.317-3.86z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3069" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M192.94,177.31c7.39-5.49-3.93,3.95,6.42-3.77-0.45,1.49-6.75,7.09-0.41,2.76,8.47-4.85-7.26,6.27,2.64,0.31,1.79,0.63,3.62-1.14,5.35-1.95,8.49-4.84-12.11,8.78,0.5,0.82,1.29-0.82,0.12,0.75,0.17,1.11,5.14-3.51,3.91-2.17,2.51-0.44,11.16-7.08-8.05,6.5,7.66-4.01-7.33,6.36,3.47-1.22-2.34,4.94,7.55-4.91,2.66,0.23,8.04-3.49,9.87-2.93-12.17,6.23,1.76,1.22-0.84,0.83-1.69,1.66-2.53,2.49-13.12,8.88,6.61-5.15,5.21-3.49-0.11,0.13-7.27,6.14-2.1,3.02-0.73,2.2,6.97-4.72,5.64-2.92-1.92,2.61-8.15,6.56,0.94,0.29-1.62,3.43,1.04-0.55,0.94,3.07-5.13,7.24,9.6-8.92,3.86,0.04,5.6-2.19-4.69,3.79,3.59-0.67,7.92-5.52-4.76,5.29,5.6-1.76-5.45,5.71,2.64,2.22,3.17,2.12,0.63-0.31,1.21-0.83,1.88-0.91,1.37-0.17-3.35,2.16-2.7,3.53,0.57,1.19,3.41-3.36,8.59-4.34,5.41-0.94-2.37,5.1,4.19,2-2.25,3.34,3.48,0.01,4.11-0.45-5.16,5.69,5.73-4.12,0.41,1.84,6.27-4.9,0.14,0.19,5.17-2.53,4.6-2.87-0.16-0.1-0.98,1.64-1.07,2.26,7.52-5.54,5.92-3.73-1.54,1.75-3.39,3.09-5.08,4.64,2.47-1,10.48-6.28,6.3-1.87,3.57,1.68,3.01-5.84,6.09-2.79,1.2,1.19-2.46,2.32-3.69,3.47,2.23-1.32,2.65-1.08,5.35-1.94-1.22,3.18,2.97-0.79,0.86,1.7,2.77-0.75,7.54-5.37,0.28,1.48-2.57,0.29-2.32,0.47,0.43-0.87l5.04-2.24c-0.34,0.19-0.68,0.38-1.02,0.58-2.05,1.34-4.1,2.69-6.16,4.04-3.19,1.48-0.35-0.4-2.3,0.1-0.92,0.34-2.44,1.76-2.81,0.75-0.61-1.62,7.67-5.85,3.36-3.62-10.06,6.76,1.11-2.05-8.47,4.53,2.14-2.62,3.86-4.44-0.09-2.6-8,4.03,3.17-3.75-7.13,2.55-5.03,2.67,0.44-1.24,0.99-3.2-5.84,3.74,1.09-1.98-5.7,3.1,6.24-7.4-3.28,3.39-1.93-0.75-2.01,1.22-4.05,1.9-3.23-0.28-4.47,2.3-4.51,0.64-9.19,2.12-4.49-0.43,2.03-3.36-1.82-3.23-1.24,0.8-12.72,6.25-6.8,0.91-3.84,1.57-5.11,2.23-2.66-0.69-9.46,6.44,7.95-5.92-3.42,1.63-0.69,0.47-2.5,2.13-2.13,1.31,0.75-1.68,4.98-3.79,1.07-1.66-1.51-1.37,2.17-3.64-2.7-0.91-1.81-0.44,3.42-4.87-6.58,1.43,7.15-7.81-10.78,7.25-0.66-2.05-9.55,5.16,8.22-7.65-6.83,3.16,4.77-4.6,4.48-4.48,0.71-3.25,4.03-4.46-3.03,0.96-4.46,0.52,3.83-5.4-1.48,0.46-3.2-0.34-0.99,0.54-2.69,2.83-2.96,1.62-0.32-1.46,3.88-2.9,2.28-3.34-4.06,2.83-5.21,3.73-6.83,3.95-2.6,0.05,1.3-2.25-2.75-0.2-8.36,4.55,5.38-4.41-1.22-1.48-1.42,0.15,0.35-1.58-3.38,0.31-2.08-0.09-0.63-1.48-2.37-0.47,0.65-0.78,2.77-2.82,1.93-2.34-15.65,8.96,3-0.62-5.12,3.44l4.79-3.96z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3071" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M190.23,185.83c1.04,0.83-1.94,0.19,3.42,0.19,2.64-0.81,0.07,2.75,0.97,2.93,5.61,1.1,19.44-13.58,12.08-0.15,5.37-0.81,10.88-4.59,16.16-5.42,6.23-0.98-0.61,4.72,10.3,0.59,1.04,0.12,2.14-0.06,3.11,0.37,1.64,0.71,3.75,4.34,6.03,3.69,8.04-2.28,7.63-7.3,7.08-0.5,8.15-3.47,11.37-0.35,17.91-0.37,7.86-2.14,3.08,1.7,6.66,2.04,3.77-0.33,7.08-0.51,10.3-1.73-5.01,4.82,6.23-1.19,6.48-1.22-0.36,0.47-0.05,1.72,0.5,1.79l-2.18,1.96s-7.51,5.82-5.69,2.9c3.6-4.47,0.28,0.01-1.34,0.09-0.72,0.04,0.91-1.28,1.36-1.93-0.04-0.23,0.08-0.67-0.12-0.69-1.12-0.13-2.13,1.18-3.27,0.95-1.12,0.6-2.24,1.21-3.36,1.81,0.46-0.87,2.25-2.89,1.39-2.61-2.31,0.77-3.93,3.32-6.2,4.22-2.99,1.17,6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03,0.93,2.62-7.89-9.11-0.01-13.25-3.74-6.08,1.59-4.19-0.81-9.41-0.4-3.41,0.26-6.59,3.39-9.96,2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07,3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55,2.66-14.03,3.52-2.13-5.26-10.81,1.88-15.35-0.78,2.47-8.34-6.94,5.32-1.17-2.14l3.06-2.76z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3079" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M194.03,193.29c-1.54,1.64,1.6,2.4,3.06,4.7,6.5,0.53,16.92-5.61,23.01-3.3,1.32,0.51,0.93,2.99,1.4,4.49,2.74-0.48,5.47-0.95,8.21-1.43,5.58-9.87,14.06,3.95,16.16,3.82,5.84-0.38,14.81-10.05,19.4-2.24,15.24-10.72,5.47,3.85,20.03-3.16,4.96,4.55,2.01-2.02,9.7-0.74,7.41,1.22-12.73,8.57,1.88,2.46l-1.75,1.6c-18.59,11.89-2.14,3.17-4.77,0.17-2.33-2.67-11,8.6-9.5,0.53-4.92,2.52-12.27,5.35-14.27-2.06-2.93,0.86-25.37,8.38-25.86,8.09-2.63-1.52,6.35-8.26,3.53-9.22-6.49-2.2-12.54,10.25-19.74,5.46-9.53-8.18-22.62,7.44-30.5-1.77-1.41-0.11-3.67,0.83-4.21-0.67-0.24-0.65,1.3-1.9,0.69-1.96-0.66-0.06-8.42,5.83-2.63,0.86l6.16-5.63z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3081" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M34.721,222.34c-0.966,2.04,7.341-5.22,5.73-3.63-11.581,11.4-7.123,5.65-5.51,5.06,4.098-1.81,6.492-3.38,5.644-1.66-1.804,0.78,0.873,1.23-1.246,3.62,12.204-7.37-0.007,1.24,6.19-2.55,1.863-0.11,3.206-3.74,4.997-2.99,1.161,0.48-1.222,2.24-2.122,3.12-0.681,2.06-0.202,1.39,5.37-1.43-3.52,3.42,3.648-0.26,4.276-0.59,0.217,0.76-5.146,3.54-3.527,3.38,1.997-0.2,3.773-1.41,5.55-2.34,3.35-1.14-2.705,2.09-3.681,3.46-0.777,1.09,2.294-1.39,3.423-2.11,18.599-11.88-10.243,7.27,6.209-3.23-5.401,5.25,1.921,0.99,2.204,0.87-0.623,0.59-1.44,1.04-1.87,1.79-0.612,1.06,2.255-0.99,3.327-1.59,8.247-4.62-4.596,2.86,1.636,0.19,14.52-8.14-9.442,8.2,6.789-2.22-2.009,1.61-4.23,2.99-6.026,4.83-1.608,1.65,7.447-5.08,6.135-3.18-1.307,1.88-10.001,7.15-0.462,1.12,11.211-5.78-3.206,2.29,4.283,0.13,1.751,1.34,7.189-2.71,2.171,2.17,2.101-0.8,7.554-3.12,7.345-2.9-1.115,1.16-2.434,2.11-3.652,3.16,1.782-0.28,9.839-6.01,10.819-5.44,1.717,0.98-6.346,4.06-1.063,1.89-6.937,3.72,1.745,1.16,2.74,0.72,2.32,0.75-1.718,2.83,5.12-1.91-0.01,6.08,4.04-9.93-2.39,3-1.06,2.12,4.34-1.96,6.38-3.18-2.19,4.21,3.52,0.26,5.19-0.6-6.61,7.31,5.93-5.37,1.82,2.02,9.65-5.22-4.25,5.45,6.97-1.1-3.74,5.01,5.38-4.6,2.25,1.15,7.32-3.77-1.26,2.63,6.84-2.63-12.58,11.94,7.7-5.83,0.2,2.36,2.86-1.15,9.43-6.57,1.67-0.03l-6.9,5.35c6.95-5.83,0-0.41-2.4,0.24,0.68-1.3,3.05-6.19-2.86-0.18,6.87-7.36-5.51,2.98,0.14-2.71-3.26,0.66-3.75,0.6-6.33,1.81-13.1,3.57,4.38-4.27-7.53,1.51,9.73-8.95-6.77,5.07-1.36-2.36-12.346,7.16,18.04-11.6-7.23,3.18-0.175,0.1,0.06-0.4,0.08-0.6,1.21-1.05,2.42-2.09,3.62-3.14-4.163,1.99-2.35-0.23-5.743,1.75-1.165,0.67-3.548,2.65-4.257,0.96-8.644,3.26,4.725-3.4-3.867,0.09-3.794,1.38-3.019,0.34-1.515-2.44-1.416,0.52-5.42,2.12-6.313,1.64-0.614,0.26-5.858-1.05-5.831,0.49-8.999,1.69,9.293-7.07-6.085,1.18,5.718-5.92-15.163,9.77,1.746-3.77-10.077,6.52-3.432,1.43-1.097-1.93-9.675,6.39-5.75,2.68-11.999,6.09-3.664,1.79,0.403-2.54,0.48-2.82-0.382,0.24-14.09,6.85-3.012-0.26-0.467,0.07-1.68,0.57-1.401,0.19,6.205-8.42-8.968,7.27-0.747-1.14-12.336,7.7,1.667-2.12-8.274,3.49,0.558-0.94,1.03-1.94,1.674-2.82,0.564-0.78-11.936-0.7-2.661,1.09-1.911,0.68-3.862,1.27-5.709,2.11,9.332-8.22-14.134,9.34,0.858-2.77-18.557,11.63,6.819-5.14-9.293,4.04,3.826-4.62,1.559-3.43-3.435,0.05,1.334-1.09,5.717-3.47,4.002-3.28-3.353,0.36-9.818,8.33-0.873-0.05,0.394-0.37-1.953,0.88-1.514,0.57l5.907-4.29z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3087" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M31.329,236.03c2.537-2.4,5.546-2.74,4.719-1.75,3.01,1.48,10.636-6.19,7.905,1.56,4.867,0.63,8.805-5.66,13.57-4.96,1.379,0.21-3.032,3.31-1.731,3.81,0.748,0.29,9.716-0.97,11.707-1.79,3.668-1.89,10.847-0.91,8.687,3.2,19.286-9.98,0.387,2.33,15.12-3.28,4.971-2.54,4.368,0.66,8.874,1.59,5.91,1.35,6.77-1.92,12.98-3.92,0.68-0.22-1.15,1.34-0.82,1.97,0.28,0.55,1.24,0.01,1.86,0.02,3.66,1.11,8.9-3.51,9.67,1.11,8.17-5.06,4.14-0.76,11.16-3.9-9.36,5.87,1.05,2.61,1.1,2.6l-5.3,3.85c-1.4,0.41-5.89,2.17-3.25-1.02-3.67,2.12-5.54,1.92-8.31,1.87-5.76,0.93-8.75-1.86-16.35,3.79,4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593,1.71-14.132,2.24,2.767-4.1-5.308-3.1-9.13-1.08,1.614-4.87-11.397,2.25-12.62-0.34-6.456,0.21-12.099,1.23-16.05-2.51-8.437,2.8-7.699-0.5-15.41,3.9,10.308-8.88-4.887,2.83,0.608-2.13l2.125-1.54z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3093" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M31.665,242.47c5.934-4.62,0.021,1.17,3.404,1.37,5.799,0.35,4.995-3.63,4.506,2.53,7.841-0.41,16.603-2.74,24.439-2.42,2.14,0.09,3.798,2.43,5.939,2.45,23.15,0.2,5.518-5.72,20.901,0.77,4.89-0.66,9.746-2.29,14.676-1.98,2.66,0.17,4.61,3.23,7.28,3.37,9.28,0.49,18.29-5.89,27.5-4.6,1.59,0.23,1.21,2.99,1.81,4.48l3.67-2.67c-21.21,6.1-13.59-1.3-29.29,0.11-11.08,0.99-21.377,6.85-32.732,6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936,0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552,2.78-10.769-1.78l5.759-4.18z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3097" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M192.53,223.6c-4.38,4.86,14.98-13.39,2.68-0.94,3.15-0.26-4.79,4.95,3.9-0.92-5.01,4.02,3.43-0.47,3.5-0.49-2.35,3.05-0.78,1.07,2.76-0.73,0.69-0.36-1.82,0.98-1.66,1.85,0.15,0.78,1.2-0.74,1.8-1.12,5.9-3.71-5.12,4.32-4.12,4.74,0.93,0.39,7.23-6.38,3.6-1.28-0.09,0.75,12.08-8.05,10.85-6.45-3.34,4.34-14.4,12.2-3.19,3.94,5.2-3.61,1.82,0.94,1.44,1.5,1.24-0.1,8.85-5.84,1.43,1.56,4.92-3.39,6.26-3.41,3.3-0.21,4.94-2.56,9.76-8.27,4.54-1.43,3.71-1.23,7.61-7.73-0.91,2.07-1.78,2.05,4.38-2.8,6.48-4.38-2.25,5.09,12.77-9.64,1.03,1.62,1.92-0.71,0.46,0.88,2.82,0.04-0.83,1.33,5.77-4.74,4.6-3.16-1.13,1.54-2.68,2.57-4.02,3.85-0.98,0.99-4.09,3.67-2.95,2.97,4.65-2.87,9.06-8.06,4.87-3.33,10.72-8.24-4.03,4.23,4.75-1.61,0.47-0.27,1.79-1.26,1.43-0.8-10.01,12.54,4.23-3.01-0.88,2.75,11.22-6.71-6.63,4.32,6.33-2.95,4.55-3.08-3.04,2.32-2.06,2.59,5.96,1.67-2.45,2.58,1.72,0.21,4.02-2.76,2.49-0.67,4.07-1,10.81-8.29-3.07,3.74,3.39-0.27-2.44,4.64,7.71-6.57,1.63,1.68,0.63,0.49,6.58-3.52,5.64-2.23,10.17-6.66-8.64,6.7,0.84,1.76,4.89-1.65-4.73,4.64,2.59,0.24,1.5,0.85,4.67-1.69,7.75-3.81-13.07,12.89,7.67-4.6-0.03,3.43-7.58,4.77,5.78-4.67,4.85-2.83-1.03,2.05-3.51,2.57-4.71,4.5-3.41,5.49,8.83-8.59,1.86-0.72,7.97-4.27-0.06,1.43,7.24-2.99-1.83,2.29-0.82,2.98,1.15,1.6,1.59,2.01,9.11-7.95,1,1.65-0.52,1.44,4.84-2.87,7.08-3.59-1.39,3.05-7.47,5.83,4.72-1.58l-8.45,7.28c2.45-3.15-3.09,1.34-3.93,0.89-7.62,5.31,1.39-1.81,0.25-1.48-1.61,0.47-4.98,4.67-4.33,2.87,0.2-0.55,0.7-0.86,1.05-1.29-0.67,0.4-5.73,2.17,0.62-3.03-4.89,3.52-10.24,6.7-2.52-0.42-2.57,1.68-17.35,11.31-9.37,4.81,3.51-4.05,1.12-2.03-0.87-1.92,0.95-4.96-6.52,4.65-3.4-0.47,4.43-6.02-7.66,5.66-2.87-0.39-4.58,2.83,0.45-0.06,0.36-1.17-0.21-2.59-0.52,1.34-5.57,4.01-0.41,0.21,1.67-1.31,0.65-1.39,5.39-7.86-14.5,12.11,0.55-2.96-1.48,1.13-3.34,5.03-4.43,3.39-1.09-1.63,2.86-2.43,4.06-3.94,0.01-0.01-13.33,11.9-4.47,2.09-9.54,6.53,12.94-11.22-5.48,1.64,6.23-6.75-4.27,2.48-4.9,1.57,1.47-1.79,6.52-6.06,4.54-5.2-20.39,8.89,3.55,1.47-4.77,2.9-0.2,0.03-4.02,1.9-2.64-0.24-1.04,0.49-7.52,2.41-0.43-2.13-2.7,2.03-8.51,5.13-0.67-1.85-18.54,13.61,3.1-2.71-8.61,4.93-0.73,0.33-1.59,0.07-2.34,0.35-0.86,0.31-2.96,2.34-2.32,1.6,1.49-1.75,3.29-3.11,4.93-4.66-3.52,2.43-5.22,2.67-6.54,3.17,4.7-5.43,0.74-1.25-2.74-0.16,0.71-0.74,3.09-2.29,2.14-2.23-1.74,0.11-6.07,4.77-5.24,2.42,4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91,4.34-3.51-0.5-0.44-5.78,2.72,3.06-3.29-2.97,0.85-0.91,0.62-3.45,2.78-2.71,1.89,1.58-1.92,3.54-3.36,5.31-5.04-12.39,6.32,3.64-3.29-8.06,4.13,3.71-5.7-3.7,2.48-1.29-1.64-0.97-0.27-10.14,5.49-3.39-1.16,3.35-5.02-7.88,5.29-2.61-0.75-5.47,3.81,0.22-1.63-5.97,2.64,5.07-5.18,2.4-2.55-0.5-2.09-0.3,0.17-7.14,4.87-4.35,1.31-2.17,0.96-8.43,5.62-0.75-0.73l2.71-2.33z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3103" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M189.88,233.47c6.83-4.72-7.11,6.88,6.21-1.27-1,1.36-4.38,3.29-3.01,4.06,2.89,1.63,5.64-4.45,8.84-4.4,5.57,0.08-17.28,13.39,4.99,0.97,1.71-0.75,3.3-2.06,5.12-2.25,1.4-0.14,2.45,2.09,3.86,2,3.52-0.2,6.89-3.15,10.37-2.46,0.81,0.15,0.26,1.91,0.39,2.87,8.13,2.83,16.14-1.24,24.42-2.64-4.82,10.25,5.49,2.55,9.53,1.1,2.51-0.17,3.62,0.78,6.5,0.29,2.39,4.41,5.36-3.58,8.72-0.18,17.17-8.07-4.85,6.38,4.89,1.47,1.47-0.2,6.44-3.03,6.12-2.39-0.62,1.25-3.71,3.44-2.5,3.19,3.3-0.67,9.02-7.89,2.83-0.65,25.52-15.75-15.46,7.87,7.45-2.95,0.9-0.61,1.79-1.21,2.68-1.82l-8.22,7.09c-0.56,0.31-1.11,0.62-1.66,0.93,4.68-5.48-1.57,2.12-3.19,1.68-9.88-2.7,10.08-5.42,1.84-3.98-7.26,3.27-0.32-1.9-7.79,2.82-1.46,0.93-3.73,4.64-4.36,2.83-0.67-1.93,2.58-2.82,3.87-4.23-13.98,7.79,9.02-10.96-8.68,1.84,5.1-8.66,2.71-0.78-3.87-0.19-1.63,0.15,3.44-2.3,3.37-4.24-0.12-3.39-8.61,8.64-7.79,4.32,1.93-6.36,0.64,0.59-4.18,0.3-2.07-0.12,19.06-18.1-6.31,2.95,1.77-1.85,5.25-2.76,5.3-5.55,0.03-2.39-3.25,3.43-5.27,3.55-1.24,0.07,2.44-4.61,1.25-4.17-7.39,2.77-6.42,6.93-6.91,1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9,1.45-9.5,7.64-14.32,5.86-1.53-0.57,1.43-3.39,2.15-5.09-2.8,0.42-9.55-0.5-10.99-0.22-2.48,0.48-5.69,5.7-7.04,3.19-2.36-4.4,14.58-11.45-0.67-4.04-2.04-5.73-20.98,12.87-10.61-0.79-13.5,8.85-3.55,0.61-6.34,1.38l2.85-2.46z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3109" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M187.36,243.29c0.89-0.67,3.43-3.62,4.55,0.94,13.37-3.69,27.03-0.73,40.71-2.39,7.85,11.8-5.12-5.04,14.67,0.32,8.66,2.34-9.84,10.52,2.82,9.3,12.35-4.5,6.67-3.44,16.89-4.24,1.99,12.64,15.43-7.73,28.08,1.53l-1.53,1.38c-2.57,0.35-4.74,1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55,0.88-13.75,8.05-21.71,4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91,10.34-31.26,2.68-2.67,0.06-5.35-0.18-8,0.19-3.48,0.48-7.78,5.29-10.34,2.33-2.14-2.5,5.91-7.19,3.88-9.82-2.46-3.2-17.5,7.56-21.86,5.7-2.41-2.35,2.71-6.5-3.45-1.82l3.39-3.05z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <path id="calligraphy-f07-el.svgpath3175" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" d="M111.59,9.6633c0.82,0.0314,1.65,0.0498,2.47,0.0728,5.55,0.2034,11.11,0.243,16.66,0.2849,7.74,0.038,15.48-0.0233,23.22-0.057,5.4-0.1361,10.79,0.055,16.18,0.212,3.48,0.112,6.95,0.1,10.43,0.082,1.55-0.021,3.1-0.03,4.65-0.043,1.35,0.002,2.69,0.006,4.04,0.006,1.34,0.007,2.67-0.004,4.01-0.011,0.94,0.117,1.86-0.089,2.75-0.188l-5.83,4.441c-0.95,0.03-1.9,0.089-2.84,0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36,0.002-2.71,0.006-4.06,0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82,0.043-11.64,0.088-17.45,0.285-0.89,0.024-1.78,0.042-2.68,0.073l6.06-4.3977z" fill-rule="nonzero" transform="translate(10, 2773.5544264) " fill="#000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3051.3298564" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3051.3298564" x="10">ΑνατάΟΞ±ΞΎΞ· & μάζα</tspan> + </text> + <rect id="d0e277" display="none" height="1000px" width="288" y="3056.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e277"/> + </flowRegion> + <flowDiv xml:space="preserve">Αντίθετα ΞΌΞµ το πλάτος ΞΊΞ±ΞΉ τη γωνία, Ξ±Ο…Ο„ΞΟ‚ ΞΏΞΉ Ξ΄ΟΞΏ τελευταίες παΟάμετΟΞΏΞΉ ΞΏΟΞ―Ξ¶ΞΏΟ…Ξ½ Ο€ΟΟ‚ το ΞµΟγαλείο "αισθάνεται" πεΟισσΟτεΟΞΏ παΟΞ¬ επηΟεάζουν την οπτική του Ξξοδο. Γι' Ξ±Ο…Ο„Ο Ξ΄ΞµΞ½ ΞΈΞ± υπάΟχουν ΞµΞΉΞΊΟΞ½ΞµΟ‚ σε αυτήν την ΞµΞ½Οτητα. Απλά δοκιμάστε τες ΞΏΞΉ ίδιοι Ξ³ΞΉΞ± Ξ½Ξ± πάΟετε ΞΌΞΉΞ± ΞΊΞ±Ξ»ΟτεΟΞ· ΞΉΞ΄ΞΞ±.</flowDiv> + </flowRoot> + <rect id="d0e280" display="none" height="1000px" width="288" y="3117.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e280"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-style="italic">ανατάΟΞ±ΞΎΞ·</flowSpan> ΞµΞ―Ξ½Ξ±ΞΉ Ξ· αντίσταση του χαΟΟ„ΞΉΞΏΟ ΟƒΟ„Ξ· μετακίνηση της Ο€ΞΞ½Ξ±Ο‚. Ξ— Ο€Οοεπιλογή ΞµΞ―Ξ½Ξ±ΞΉ στο ελάχιστο (0) ΞΊΞ±ΞΉ Ξ±Οξηση αυτής της παΟΞ±ΞΌΞΟ„ΟΞΏΟ… κάνει το χαΟτί "ολισθηΟΟ": εάν Ξ· μάζα ΞµΞ―Ξ½Ξ±ΞΉ μεγάλη, Ξ· Ο€ΞΞ½Ξ± τείνει Ξ½Ξ± φεΟΞ³ΞµΞΉ στις Ξ±Ο€Οτομες στΟΞΏΟ†ΞΟ‚. Εάν Ξ· μάζα ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞ·Ξ΄ΞΞ½, Ο…Οηλή ανατάΟΞ±ΞΎΞ· κάνει την Ο€ΞΞ½Ξ± Ξ½Ξ± ΞΊΞΏΟ…Ξ½ΞΉΞται πολΟ.</flowDiv> + </flowRoot> + <rect id="d0e285" display="none" height="1000px" width="288" y="3177.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e285"/> + </flowRegion> + <flowDiv xml:space="preserve">Στη φυσική, <flowSpan font-style="italic">Ξ· μάζα</flowSpan> Ο€Οοκαλεί Ξ±Ξ΄Οάνεια. Ξσο πιο μεγάλη Ξ· μάζα του ΞµΟγαλείου καλλιγΟαφίας του Inkscape, Ο„Οσο πεΟισσΟτεΟΞΏ καθυστεΟΞµΞ― πίσω Ξ±Ο€Ο Ο„ΞΏ δείκτη του Ο€ΞΏΞ½Ο„ΞΉΞΊΞΉΞΏΟ ΞΊΞ±ΞΉ Ο„Οσο πεΟισσΟτεΟΞΏ ΞµΞΎΞΏΞΌΞ±Ξ»ΟΞ½ΞµΞΉ Ξ±Ο€Οτομες στΟΞΏΟ†ΞΟ‚ ΞΊΞ±ΞΉ Ξ³ΟήγοΟΞ± Ο„Οαβήγματα στην πινελιά σου. Ξ‘Ο€Ο Ο€Οοεπιλογή αυτή Ξ· τιμή ΞµΞ―Ξ½Ξ±ΞΉ Ξ±Οκετά ΞΌΞΉΞΊΟΞ® (2), Ξτσι Οστε το ΞµΟγαλείο Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ³ΟήγοΟΞΏ ΞΊΞ±ΞΉ ΞΌΞµ ανταπΟΞΊΟιση, αλλά μποΟείτε Ξ½Ξ± αυξήσετε τη μάζα Ξ³ΞΉΞ± Ξ½Ξ± πάΟετε πιο Ξ±ΟΞ³Ξ® ΞΊΞ±ΞΉ πιο μαλακή Ο€ΞΞ½Ξ±. </flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3272.4894094" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3272.4894094" x="10">Ξ Ξ±Οαδείγματα καλλιγΟαφίας</tspan> + </text> + <rect id="d0e297" display="none" height="1000px" width="288" y="3277.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e297"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ¤ΟΟΞ± που ΞΎΞΟετε τις βασικΞΟ‚ δυνατΟτητες του ΞµΟγαλείου, μποΟείτε Ξ½Ξ± Ο€Οοσπαθήσετε Ξ½Ξ± παΟάξετε αληθινή καλλιγΟαφία. Εάν είσθε Ξ½ΞΞΏΟ‚ σε αυτήν την Ο„Ξχνη, πάΟτε ΞΞ½Ξ± ΞΊΞ±Ξ»Ο Ξ²ΞΉΞ²Ξ»Ξ―ΞΏ καλλιγΟαφίας ΞΊΞ±ΞΉ μελετήστε το ΞΌΞµ το Inkscape. Αυτή Ξ· ΞµΞ½Οτητα ΞΈΞ± σας δείξει ΞΌΟΞ½ΞΏ ΞΌΞµΟΞΉΞΊΞ¬ απλά παΟαδείγματα.</flowDiv> + </flowRoot> + <rect id="d0e300" display="none" height="1000px" width="288" y="3338.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e300"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΟΟτα Ξ±Ο€' Ολα, Ξ³ΞΉΞ± Ξ½Ξ± κάνετε Ξ³Οάμματα, Ο‡ΟΞµΞΉΞ±Ξ¶Οσαστε Ξ½Ξ± δημιουΟγήσετε ΞΞ½Ξ± Ξ¶ΞµΟ…Ξ³Ξ¬ΟΞΉ χάΟΞ±ΞΊΞµΟ‚ Ξ³ΞΉΞ± Ξ½Ξ± σας οδηγήσουν. Εάν Ο€ΟΟκειται Ξ½Ξ± Ξ³ΟΞ¬Οετε σε πλάγια Ξ® ΞΌΞµ ενωμΞΞ½Ξ± Ξ³Οάμματα Ξ³Οαφή, Ο€ΟοσθΞστε ΞΌΞµΟΞΉΞΊΞΏΟΟ‚ πλάγιους οδηγοΟΟ‚ κατά μήκος των Ξ΄ΟΞΏ χαΟάκων επίσης, Ο€.Ο‡.: </flowDiv> + </flowRoot> + <path id="calligraphy-f08-el.svgpath3323" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,15.8h290.3" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath3324" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,44.257h290.3" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8580" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M141.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8581" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M166.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8582" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M191.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8583" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M216.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8584" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M241.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f08-el.svgpath8585" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;stroke-dasharray:0.59489660 1.7846897;marker-mid:none;" d="M266.27,60.735l16.19-60.437" display="block" transform="translate(10, 3407.0558384) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <rect id="d0e313" display="none" height="1000px" width="288" y="3480.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e313"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξπειτα εστιάστε Ξτσι Οστε το ΟΟΞΏΟ‚ ΞΌΞµΟ„Ξ±ΞΎΟ Ο„Ο‰Ξ½ χαΟάκων Ξ½Ξ± αντιστοιχεί στην πιο φυσική πεΟιοχή κίνησης του χεΟΞΉΞΏΟ, Ουθμίστε πλάτος ΞΊΞ±ΞΉ γωνία, ΞΊΞ±ΞΉ Ο†ΟΞ³Ξ±ΞΌΞµ!</flowDiv> + </flowRoot> + <rect id="d0e316" display="none" height="1000px" width="288" y="3519.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e316"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΟοφανΟΟ‚ το Ο€ΟΟτο Ο€Οάγμα που ΞΈΞ± Ο€ΟΞπει Ξ½Ξ± κάνετε ως Ξ±ΟχάΟΞΉΞΏΟ‚ καλλιγΟάφος ΞµΞ―Ξ½Ξ±ΞΉ Ξ½Ξ± εξασκήσετε τα βασικά στοιχεία των Ξ³Οαμμάτων β€” κάθετες ΞΊΞ±ΞΉ ΞΏΟΞΉΞ¶Οντιες στελΞχη, στΟΞΏΞ³Ξ³Ο…Ξ»ΞΟ‚ πινελιΞΟ‚, πλάγια στελΞχη. Ξ™Ξ΄ΞΏΟ ΞΌΞµΟΞΉΞΊΞ¬ στοιχεία Ξ³Οαμμάτων Ξ³ΞΉΞ± τη Ξ³Οαφή Uncial:</flowDiv> + </flowRoot> + <path id="calligraphy-f09-el.svgpath8610" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,1.4559h290.3" display="block" transform="translate(10, 3586.5105004) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f09-el.svgpath8611" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,29.913h290.3" display="block" transform="translate(10, 3586.5105004) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f09-el.svgpath8631" d="M28.442,4.8689c5.087-5.4229,10.288-7.0634,10.025,0.7726-0.092,5.9105-0.936,11.822-0.548,17.732,0.431,2.413,0.39,5.042,3.359,4.222,5.238-2.893-6.553,4.514-0.972-0.118l5.917-2.413c-3.013,2.668-6.826,4.113-10.572,5.56-3.052,0.568-3.131-2.153-3.563-4.634-0.402-5.92,0.438-11.839,0.538-17.758,0.242-6.597-4.123-3.8734,3.218-7.2484,0.613-0.2819-2.159,0.9679-1.564,1.2854l-5.838,2.5993z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8642" d="M43.085,3.1675c5.029-2.6743,7.801-5.5588,10.236,0.0497,1.726,5.2046,0.957,10.78,0.864,16.165,0.181,2.744-0.651,5.951,0.584,8.329,2.574,0.536,5.818-1.506-3.001,2.289-1.9,0.818,3.223-2.623,4.597-4.169l5.91-2.432c-3.082,3.522-8.3,8.643-13.244,7.124-1.617-2.281-0.349-5.856-0.686-8.546,0.09-5.353,0.866-10.897-0.823-16.075-2.292-5.2866-7.702-0.9293,1.401-5.3339l-5.838,2.5993z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8644" d="M58.728,5.594c1.01-2.7917,8.7-7.3762,10.789-3.8006,1.195,4.7495,0.688,9.6466,0.492,14.474,0.014,2.959,0.09,5.898-0.069,8.852-0.979,3.346,4.543,1.249,3.903,1.587-8.82,4.649-4.895,2.606-2.966,1.13,2.352-2.079-0.562,0.545,1.547-1.503l5.817-2.647c-2.082,2.1,0.795-0.576-1.53,1.543-2.399,1.891-11.856,9.037-12.51,2.701,0.144-2.954,0.107-5.893,0.069-8.853,0.186-4.793,0.707-9.6475-0.442-14.372-1.713-2.8885-9.439,2.5577,1.488-3.0051,0.407-0.207-1.273,0.8818-0.856,1.068l-5.732,2.8266z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8647" d="M88.988,3.5669h13.962c3.4,0.0526,6.75-1.0978,10.1-0.538l-5.68,2.9135c-3.36-0.4316-6.7,0.6614-10.08,0.5852h-13.965l5.663-2.9607z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8651" d="M88.332,8.4479c4.293,0.9962,8.782,0.3496,13.138,0.0215,3.29-0.2538,6.6-0.3486,9.9-0.3741l-5.67,2.9617c-3.3,0.032-6.592,0.133-9.881,0.39-4.379,0.329-8.824,0.897-13.15-0.038l5.663-2.9611z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8654" d="M87.942,14.723c3.562,0.134,7.098-0.197,10.648-0.427,3.88-0.289,7.77-0.157,11.65-0.44l-5.65,2.977c-3.88,0.271-7.777,0.136-11.656,0.439-3.551,0.235-7.092,0.539-10.655,0.412l5.663-2.961z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8656" d="M86.938,20.302h8.441c3.9-0.105,7.821,0.209,11.711-0.169,1.46-0.132,2.92-0.156,4.39-0.177l-5.67,2.964c-1.46,0.025-2.92,0.054-4.38,0.195-3.887,0.355-7.812,0.036-11.714,0.147h-8.441l5.663-2.96z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8668" d="M130.55,5.003c-2.86-0.364-11.77,3.1282-2-0.5935,0.51-0.194-0.94,0.5466-1.4,0.8466-1.47,0.9694-2.71,2.0912-3.95,3.3363-5.49,6.2106-4.63,15.432,3.43,18.657-2.72,3.812,16.46-2.642,12.96-1.221-7.97,3.241-3.19,1.21-1.11-0.424l5.79-2.701c-6.46,5.084-15.13,9.42-23.43,7.047-8.06-3.225-8.92-12.446-3.43-18.657,4.89-4.9189,11.93-8.8025,18.93-8.9908l-5.79,2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8671" d="M151.47,3.6085c-2.72-0.0444-9.78,3.0733,0.19-1.0704,0.37-0.1531-0.69,0.3941-1.03,0.6108-1.44,0.93-2.67,2.0701-3.86,3.2884-4.68,4.5667-5.34,11.204-0.88,16.1,4.3,4.731,10.11,4.654,15.94,3.481,2.32-0.439,8.75-3.028-0.95,1.062-1.61,0.679,2.81-2.135,3.9-3.496l5.79-2.7c-3.54,4.412-9.13,6.51-14.53,7.835-5.83,1.173-11.64,1.249-15.94-3.481-4.46-4.896-3.8-11.533,0.87-16.1,4.26-4.3396,10.22-7.6532,16.29-8.2304l-5.79,2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8700" d="M152.25,8.0156c3.63-6.2319,15.31-8.2112,21.94-6.2059,7.9,4.4498,7.17,17.466,0.82,22.962-4.61,2.72-9.52,5.15-14.76,6.259l5.79-2.701c10-2.113-6.15,3.298,3.18-0.857,6.35-5.496,7.07-18.513-0.82-22.962-3.07-0.9297-6.07-0.9715-9.23-0.3805-1.05,0.1975-4.05,1.3409-3.12,0.8136,9.12-5.1376,2.85-1.9127,1.99,0.3712l-5.79,2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8705" d="M174.95,7.3185c6.25-7.1109,20.64-9.6534,27.45-2.0885,8.01,13.572-5.76,22.718-17.98,24.819-1.72,0.234-3.4,0.095-5.1-0.212l5.8-2.7c1.69,0.306,3.37,0.445,5.09,0.211,1.47-0.253,5.54-1.947,4.37-1.014-1.08,0.862-2.44,1.301-3.7,1.841-3.45,1.466,4.45-2.192,6.42-5.5,2.67-4.483,1.88-10.446-0.69-14.744-3.24-3.6061-7.44-4.7604-12.24-4.4724-1.45,0.087-5.41,1.6054-4.31,0.6547,1.17-1.0121,2.75-1.4279,4.09-2.1876,1.26-0.7109-4.66,1.9724-3.4,2.6922l-5.8,2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8711" d="M214,6.7046c3.51-2.7111,9.01-8.0683,12.47-3.7249,2.59,4.4358,3.2,9.6463,4.74,14.495,0.72,2.704,2.13,5.133,3.39,7.606-0.93,2.661,4.22,2.169,3.8,2.371-9.13,4.345-5.13,2.475-3.13,1.07,0.32-0.242,0.64-0.484,0.96-0.726l5.8-2.7c-0.33,0.242-0.65,0.483-0.97,0.725-3.55,2.504-10.32,7.893-12.25,1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.886-4.08-0.9852-3.06-1.4765,9.96-4.7933,4.17-2.2166,2.17-0.2002l-5.79,2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8713" d="M237.92,4.3941c-13.77,6.8489,1.62-4.9758,4.47-2.5521,3.15,3.6062,3.38,8.179,4.72,12.538,1.43,3.31,2.72,6.684,4.09,10.022,1.7,5.7,12.34-0.596,1.89,4.235,0.25-0.171,0.5-0.342,0.75-0.513l5.79-2.701c-0.25,0.171-0.5,0.342-0.75,0.513-3.48,1.633-11.15,7.092-13.47,1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9973-2.93-0.1843,4-3.3562,0.17-0.0792-11.41,9.3044-8.47,5.9083l5.79-2.7008z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8725" d="M269.05,5.3873c2.1-2.0986,10.45-7.2855,10.2-2.8943-1.99,5.9246-4.93,11.628-8.52,16.724-1.84,2.52-3.71,5.101-5.25,7.799,1.73,1.173,4.67-0.56,6.57-1.342l-5.79,2.746c-1.9,0.783-4.84,2.516-6.57,1.343,1.54-2.698,3.41-5.279,5.24-7.799,3.6-5.096,6.53-10.8,8.53-16.724,0.04-0.8716-3.01-0.9188-2.24-1.3006,9.54-4.7197,5.48-2.9735,3.62-1.2989l-5.79,2.7469z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <path id="calligraphy-f09-el.svgpath8727" d="M280.52,5.4551c2.1-2.633,7.05-5.9631,9.47-4.456-1.8,7.1986-7.38,13.179-11.15,19.461-0.87,2.437-5.43,7.541-0.6,6.049,0.9-0.133,1.73-0.456,2.57-0.799l-5.68,3.035c-0.84,0.343-1.67,0.666-2.57,0.799-4.83,1.492-0.27-3.612,0.6-6.05,3.77-6.281,9.36-12.261,11.15-19.46-0.61-0.3801-2.76,0.329-2.14-0.0186,9.3-5.1467,5.52-3.6581,4.03-1.5951l-5.68,3.0348z" fill-rule="nonzero" transform="translate(10, 3586.5105004) " display="block" fill="#000"/> + <rect id="d0e329" display="none" height="1000px" width="288" y="3629.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e329"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠολλΞΟ‚ Ο‡Οήσιμες συμβουλΞΟ‚:</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3653.7169126000003)"/> + <rect id="d0e335" display="none" height="1000px" width="258" y="3647.7" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e335"/> + </flowRegion> + <flowDiv xml:space="preserve">Εάν το Ο‡ΞΟΞΉ σας ΞµΞ―Ξ½Ξ±ΞΉ άνετο στην πινακίδα, ΞΌΞ·Ξ½ το μετακινήσετε. Αντίθετα, κυλίστε τον ΞΊΞ±ΞΌΞ²Ξ¬ (πλήκτΟΞ± <flowSpan font-weight="bold">Ctrl+Ξ²Ξλος</flowSpan>) ΞΌΞµ το Ξ±ΟιστεΟΟ ΟƒΞ±Ο‚ Ο‡ΞΟΞΉ μετά το Ο„Ξλος κάθε Ξ³Οάμματος.</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3703.7469816000003)"/> + <rect id="d0e342" display="none" height="1000px" width="258" y="3697.7" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e342"/> + </flowRegion> + <flowDiv xml:space="preserve">Εάν Ξ· τελευταία πινελιά ήταν ΞΊΞ±ΞΊΞ®, απλά Ξ±Ξ½Ξ±ΞΉΟΞστε την (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Ξμως, εάν το σχήμα της ΞµΞ―Ξ½Ξ±ΞΉ ΞΊΞ±Ξ»Ο, αλλά Ξ· ΞΈΞση Ξ® ΞΌΞΞ³ΞµΞΈΞΏΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ ελαφΟΞ¬ ΞµΞΊΟ„ΟΟ‚, ΞµΞ―Ξ½Ξ±ΞΉ ΞΊΞ±Ξ»ΟτεΟΞΏ Ξ½Ξ± μεταβείτε στο επιλογΞΞ± Ο€ΟοσωΟΞΉΞ½Ξ¬ (<flowSpan font-weight="bold">διάστημα</flowSpan>) ΞΊΞ±ΞΉ Οθηση/κλιμάκωση/πεΟιστΟοφή της Οσο Ο‡Οειάζεται (Ο‡ΟησιμοποιΟντας ποντίκι Ξ® πλήκτΟΞ±), Ξπειτα πιΞστε <flowSpan font-weight="bold">διάστημα</flowSpan> ΞΎΞ±Ξ½Ξ¬ Ξ³ΞΉΞ± Ξ½Ξ± επιστΟΞΟετε στο ΞµΟγαλείο καλλιτεχνίας.</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3785.8218976000003)"/> + <rect id="d0e355" display="none" height="1000px" width="258" y="3779.8" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e355"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξχοντας Ξ³ΟΞ¬ΟΞµΞΉ ΞΌΞΉΞ± Ξ»ΞΞΎΞ·, μεταβείτε στον επιλογΞΞ± πάλι Ξ³ΞΉΞ± Ξ½Ξ± Ουθμίσετε την ΞΏΞΌΞΏΞΉΞΏΞΌΞΏΟφία του στελΞχους ΞΊΞ±ΞΉ το διάκενο των Ξ³Οαμμάτων. ΞΞ·Ξ½ το παΟακάνετε Ξ±Ο…Ο„Ο, Ομως. Ξ— καλή καλλιγΟαφία Ο€ΟΞπει Ξ½Ξ± διατηΟΞµΞ― κάποια Ξ±ΞΊΞ±Ξ½Ονιστη ΟΟΞ· χειΟΞΏΞ³Οαφής. Αντισταθείτε στον πειΟΞ±ΟƒΞΌΟ Ξ½Ξ± αντιγΟΞ¬Οετε Ξ±ΞΊΟΞΉΞ²ΟΟ‚ Ξ³Οάμματα ΞΊΞ±ΞΉ στοιχεία Ξ³Οαμμάτων. Ξάθε πινελιά Ο€ΟΞπει Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ αυθεντική.</flowDiv> + </flowRoot> + <rect id="d0e359" display="none" height="1000px" width="288" y="3861.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e359"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ±ΞΉ Ξ½Ξ± ΞΌΞµΟΞΉΞΊΞ¬ πλήΟΞ· παΟαδείγματα σχεδίασης Ξ³Οαμμάτων:</flowDiv> + </flowRoot> + <path id="calligraphy-f10-el.svgpath10059" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,15.825h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10060" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,44.282h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10134" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,90.825h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10135" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,119.28h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10280" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,185.82h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10281" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,214.28h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10452" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,270.82h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10453" stroke-linejoin="miter" style="stroke-dasharray:0.59489660 1.7846897;" d="M10.513,299.28h290.3" display="block" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.59489685" sodipodi:insensitive="true" fill="none"/> + <text id="calligraphy-f10-el.svgtext10638" line-height="120.00000%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" xml:space="preserve" transform="translate(10, 3887.9001788000005) " font-style="normal" sodipodi:linespacing="120.00000%" font-stretch="normal" font-size="6.0000000" font-variant="normal" y="4.5585475" x="141.33449" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10639" y="4.5585475" x="141.33449" role="line">Unicial Ξ³Οαφή</tspan></text> + <text id="calligraphy-f10-el.svgtext10644" line-height="120.00000%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" xml:space="preserve" transform="translate(10, 3887.9001788000005) " font-style="normal" sodipodi:linespacing="120.00000%" font-stretch="normal" font-size="6.0000000" font-variant="normal" y="79.558548" x="134.52438" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10645" y="79.558548" x="134.52438" role="line">Ξ“Οαφή ΞΞ±ΟολιδΟΞ½ (Carolingian)</tspan></text> + <text id="calligraphy-f10-el.svgtext10648" line-height="120.00000%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" xml:space="preserve" transform="translate(10, 3887.9001788000005) " font-style="normal" sodipodi:linespacing="120.00000%" font-stretch="normal" font-size="6.0000000" font-variant="normal" y="172.05855" x="141.78998" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10649" y="172.05855" x="141.78998" role="line">Γοτθική Ξ³Οαφή</tspan></text> + <text id="calligraphy-f10-el.svgtext10652" line-height="120.00000%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" xml:space="preserve" transform="translate(10, 3887.9001788000005) " font-style="normal" sodipodi:linespacing="120.00000%" font-stretch="normal" font-size="6.0000000" font-variant="normal" y="257.05853" x="139.54298" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10653" y="257.05853" x="139.54298" role="line">Ενδιάμεση (BΓΆtarde) Ξ³Οαφή</tspan></text> + <path id="calligraphy-f10-el.svgpath10657" stroke-linejoin="miter" style="stroke-dasharray:0.65820036 1.9746010;" d="M57.076,430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.65820062" sodipodi:insensitive="true" fill="none"/> + <path id="calligraphy-f10-el.svgpath10658" stroke-linejoin="miter" style="stroke-dasharray:0.65820036 1.9746010;" d="M57.075,461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10, 3887.9001788000005) " stroke-dashoffset="0.0000000" stroke="#aeaeae" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.65820062" sodipodi:insensitive="true" fill="none"/> + <text id="calligraphy-f10-el.svgtext10681" line-height="120.00000%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" display="block" xml:space="preserve" transform="translate(10, 3887.9001788000005) " font-style="normal" sodipodi:linespacing="120.00000%" font-stretch="normal" font-size="6.0000000" font-variant="normal" y="359.55853" x="124.28999" font-family="Bitstream Vera Sans" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10682" y="359.55853" x="124.28999" role="line">Διακοσμητική ιταλική Ξ³Οαφή</tspan></text> + <path id="calligraphy-f10-el.svgpath10071" d="M56.566,28.63c12.545-7.048-5.072,5.5-7.647,10.139-1.877,4.847,5.578,1.714,5.35,1.806-9.236,3.702,1.244-1.941,3.786-4.247,0.395-0.382,0.791-0.765,1.186-1.147l5.912-2.757c-0.395,0.382-0.79,0.765-1.186,1.148-4.173,3.783-20.211,16.539-20.96,7.954,4.066-7.324,12.118-12.278,19.471-15.653l-5.912,2.757z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10086" d="M45.263,21.47c2.914-4.191,10.292-8.167,14.4-3.949,5.017,6.646,6.851,14.929,9.933,22.522-0.295,3.139,6.287,0.048,5.075,0.624-9.182,4.37-5.447,2.58-3.345,1.301l5.912-2.757c-2.739,1.666-10.917,7.983-13.555,3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452,9.886-4.856,4.044-2.525,2.785-0.113l-5.912,2.757z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10102" d="M122.06,18.373c-2.93-0.309-11.85,3.332-1.6-0.87,1.77-0.724-2.96,2.549-4.16,4.107-5.97,8.607-0.53,17.464,8.19,19.846-1,1.959,11.43-2.08,10.02-1.438-8.13,3.694-3.74,1.697-1.65-0.148l5.79-2.873c-5.4,4.777-12.81,8.586-19.95,7.332-8.72-2.382-14.16-11.239-8.2-19.846,4.13-5.357,10.86-8.798,17.36-8.983l-5.8,2.873z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10103" d="M124.89,15.5c3.29,0.4,6.64,0.545,9.96,0.66,1.83-0.104,3.6,0.31,5.39,0.61l-5.79,2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10106" d="M133.22,18.993v-0.016c1.9-0.938,3.78-1.928,5.7-2.814,1.23-0.566-0.37,2.687-0.46,4.039-0.26,4.254-0.3,8.527-0.44,12.788-0.63,8.707-0.6,17.39-0.11,26.096,0.23,1.997-0.4,4.236,0.48,5.704-8.32,4.897-3.41,1.494,0.14-0.936l5.69-2.896c-3.72,2.551-7.12,5.261-11.53,6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389,0.11-26.097,0.28-8.503-2.38-16.432,6.6-19.789l-5.7,2.896z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10119" d="M144.58,20.053c3.18-2.209,8.25-4.575,11.19-3.988-3.2,5.245-5.8,10.465-5.9,16.842,0.41,9.359,9.82,9.73,16.42,7.094,6.07-4.059-6.91,4.724,2.57-2.216l5.79-2.804c-4.4,3.215-9.22,5.607-14.15,7.824-6.6,2.637-16.02,2.266-16.42-7.093,0.1-6.377,2.7-11.598,5.9-16.842-4.05-0.81-6.6,2.242,0.39-1.622l-5.79,2.805z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10120" d="M170.33,16.195c1.44-0.014,2.8-0.577,4.15-1.019,1.7,1.369,1.14,4.79,1.18,7.048-0.05,3.785,0.37,7.587,0.15,11.369-0.08,2.237-0.2,4.455-0.39,6.682,0.01,0.471-0.04,0.939-0.06,1.409l-5.73,2.829c0.02-0.469,0.07-0.938,0.06-1.409,0.19-2.226,0.31-4.444,0.39-6.682,0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258,0.52-5.679-1.18-7.048-1.35,0.443-2.71,1.005-4.15,1.019l5.73-2.829z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10125" d="M186.03,17.94c-14.66,6.79-0.05,0.024,0.39-0.198,1.78-0.898-3.61,1.681-5.42,2.5-2.3,1.036,4.55-2.162,6.83-3.222,1.72-0.796-6.86,3.151-5.13,2.389,3.34-1.476,7.54-4.672,11.44-3.185,2.99,2.646,4.35,6.638,5.84,10.244,1.49,3.854,3.3,7.562,5.02,11.313,1.35,3.556,3.04,4.33,6.7,2.924,3.96-2.436-7.11,4.479-2.14,0.493l5.79-2.7c-2.79,2.24-6.18,3.462-9.44,4.907-3.66,1.407-5.35,0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39,0.917-4.92,0.183,2.72-1.361,12.44-5.803-1.39,0.613-1.74,0.807,3.47-1.641,5.21-2.441,2.23-1.02-4.43,2.059-6.62,3.162-0.44,0.224,15.92-7.456-0.4,0.199l5.8-2.701z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10128" d="M195.49,28.425c0-0.009-1.41,0.771-1.41,0.769,11.71-7.73-4.54,3.392-7.47,7.035-4.94,8.515,7.92,1.307,11.01-0.446,5.28-3.605-6.7,5.061-1.87,0.936l5.8-3.809c-3.03,2.583-6.41,4.592-9.73,6.683-3.08,1.752-15.95,8.96-11,0.446,5.35-6.668,13.61-10.972,20.46-15.424l-5.79,3.81z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10130" d="M229.6,45.031c-3.54,0.053-7.11,0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005,3.6-7.759,15.08-11.83,23.37-11.009,5.58,0.962,8.13,5.238,8.82,10.44,0.41,5.416,0.09,10.84,0.26,16.268l-5.53,2.58c-0.18-5.428,0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31,5.847-2.01,6.374-2.46,12.553,3.44,17.006,3.06,2.062,6.62,1.834,10.17,1.781l-5.54,2.58z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10133" d="M242.97,27.259c1.02-4.275,5.02-8.063,8.84-10.053,9.52-6.146,20.14-1.19,22.4,9.973,0.98,10.61-5.37,14.217-13.98,17.744l5.54-2.58c0.23-0.023,0.47-0.046,0.7-0.069-1.56,0.775-3.12,1.55-4.68,2.325-1.07,0.527,2.1-1.189,2.94-2.043,3.22-3.307,4.2-8.351,3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49,0.047-5.57-0.526,1.33-0.831,2.81-1.385,4.21-2.078-3.82,1.99-7.81,5.778-8.84,10.053l-5.53,2.58z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10157" d="M40.751,96.808c12.003-10.547,18.807-7.751,23.457,2.133,2.906,5.939,5.364,14.889,12.816,16.549l-10.49,4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021,3.101-1.584,6.308-2.859,9.468-4.267,1.16-0.517-4.232,1.857-3.177,2.225l-10.491,4.502z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10158" d="M60.484,99.139c-5.016,4.191-10.338,8.261-14.311,13.511-2.045,6.77,11.148,0.49,11.031,0.54-14.379,6.54,0.61-1.59,3.878-4.2l9.653-4.5c-4.791,3.83-36.041,23.5-34.215,12.66,3.973-5.25,9.295-9.32,14.311-13.51l9.653-4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10160" d="M76.131,105.67c5.607-4.91,16.259-6.145,25.359-7.431,3.75-0.515,1.95-0.272,5.4-0.731l-9.065,4.622c-3.456,0.46-1.655,0.21-5.402,0.73-6.312,0.89-29.02,6.17-7.222-1.81l-9.07,4.62z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10168" d="M90.443,103.47c-0.368-3.45-0.08-6.437-3.712-7.587,0.472-1.773-6.528,2.028-5.025,1.219,15.482-8.331-0.45-1.078,3.732,10.348,3.86,7.16,12.362,8.9,18.772,7.64,1.62-0.31,6.06-2.43,4.65-1.61-2.28,1.33-4.65,2.48-6.98,3.71l9.07-4.91c-8.81,4.83-25.71,15.31-34.581,0.08-4.569-12.482,10.267-21.053,19.432-21.387,3.632,1.15,3.344,4.136,3.712,7.584l-9.07,4.913z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10170" d="M124.18,96.235c-2.99-1.721-6.64-1.864-10-1.438,0.79-0.566-2.57,0.791-1.96,0.501,15.75-7.511,4.37-2.057,3.42,6.422,0.14,6.96,5.13,11.4,11.54,12.71,4.56,0.82,9.11,0.8,13.44-0.94l-9.65,4.51c-4.34,1.73-8.88,1.75-13.45,0.93-6.4-1.31-11.39-5.75-11.54-12.71,1.04-9.195,8.88-14.443,17.85-15.924,3.36-0.426,7.01-0.283,10,1.438l-9.65,4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10196" d="M131.54,94.102c3.21-1.478,6.38-3.017,9.61-4.434,0.62-0.271-0.54,1.234-0.76,1.871-0.96,2.754-1.51,5.622-1.98,8.501-1.52,9.51-2.46,19.14-3.61,28.7-0.79,7.79-1.71,15.55-3,23.26l-9.65,4.5c1.29-7.71,2.21-15.47,3-23.26,0.39-3.28,4.01-37.916,6.35-39.071,3.21-1.58,6.46-3.046,9.7-4.569l-9.66,4.502z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10197" d="M130.5,95.845c1.55-3.476,6.95-4.282,10.34-5.557,1.96-0.805,3.94-1.566,5.92-2.295l-6.37,3.322c-1.98,0.728-3.96,1.489-5.92,2.294-8.51,3.198,4.94-4.408,2.4-1.085l-6.37,3.321z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10200" d="M141.34,96.542c3.24-0.834,14.36-10.232,16.1-2.478,0.55,5.907-2.44,11.206-1.93,17.166-2.16,5.13,9.39,2.63,8.51,3.05-14.45,6.79-8.45,4.08-5.05,1.42l9.66-4.5c-4.83,3.78-18.85,14.08-22.77,4.53-0.52-5.96,2.48-11.26,1.93-17.164-1.74-7.776-16.49,3.454,3.2-6.525l-9.65,4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10206" d="M172.22,90.34c4.82-0.44,5.5,3.033,4.84,7.204-1.48,6.636-5.38,16.996,4.69,17.046,2.3-0.25,1.15-0.06,3.46-0.57l-9.65,4.5c-2.32,0.51-1.16,0.32-3.46,0.57-10.07-0.05-6.18-10.41-4.69-17.05,0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10225" d="M131,91.037c3.38,0.443,6.68,1.827,9.69,3.423l-9.65,4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10226" d="M187.01,94.45c7.99-4.14,12.31-7.977,17.58-0.295,4.6,6.065,5.04,15.545,11.78,19.845,1.81,0.93,3.83,1.33,5.8,1.74l-9.65,4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816,1.72-8.707l-9.65,4.501z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10229" d="M193.69,106.08c24.9-12.256-8.64,3.87,0.89,9.1-0.51,1.48,8.85-1.56,8.37-1.35-14.63,6.18-5.9,2.03-2-1.04l9.65-4.5c-7.2,5.67-16.19,12.52-25.68,11.39-8.24-4.53,16.95-20.42,18.42-18.1l-9.65,4.5z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10231" d="M217.97,97.24c2.81-2.34,12.53-10.187,15.46-3.343,1.14,7.243-0.72,14.293-0.61,21.523l-9.23,4.5c-0.11-7.23,1.75-14.28,0.61-21.522-2.72-6.366-13.27,1.792,3.94-6.49,0.38-0.184-1.36,0.658-0.94,0.83l-9.23,4.502z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10239" d="M221.92,103.12c6.4-6.075,16.05-13.123,25.46-13.005,8.04,3.102,7.6,15.625,6.38,21.955-0.24,1.08-0.55,2.14-0.85,3.2l-9.23,4.5c0.3-1.06,0.61-2.12,0.85-3.2,1.22-6.33,1.66-18.851-6.38-21.953-4.24-0.054-13.73,5.127,1.46-2.162,0.71-0.343-9.46,6.059-8.46,6.169l-9.23,4.496z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10251" d="M252.98,97.284c-24.21,12.206,7.75-8.098,16.72-7.653,5.66,3.792,3.43,16.969,2.49,22.759-0.12,0.59-0.24,1.19-0.36,1.79l-9.23,4.65c0.03-0.15,0.34-1.69,0.36-1.78,0.94-5.79,3.17-18.968-2.49-22.76-4.84-0.24-16.56,5.97-1.58-1.659,0.16-0.082-12.91,9.429-15.14,9.309l9.23-4.656z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10259" d="M75.414,30.201c6.417-0.235,12.931-2.82,19.172-4.563,2.748-1.06,5.654-1.454,8.524-2.018l-5.797,2.701c-2.865,0.564-5.771,0.958-8.519,2.018-6.241,1.743-12.755,4.328-19.172,4.563l5.792-2.701z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10279" d="M97.82,25.491c-0.798-2.313-2.421-4.205-4.319-5.921,0.927-3.24-9.829,0.29-8.297-0.312,4.931-1.942,6.034-2.558,3.418-1.212-4.225,2.389-6.979,6.619-8.279,10.788,0.158,3.364,1.866,6.797,4.306,9.388,3.18,2.73,6.654,4.465,11.211,4.179,0.743,0.328,8.09-2.354,6.8-1.932-8.102,2.635-0.97-0.395,1.26-2.357l5.79-2.36c-5.27,4.638-12.362,7.655-19.641,9.01-4.558,0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388,1.299-4.169,4.053-8.398,8.278-10.788,4.283-2.203,11.698-7.026,16.463-3.196,1.897,1.716,3.517,3.608,4.317,5.921l-5.79,2.36z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10286" d="M85.316,170.78c7.295-12.03,10.892-5.5,11.671,3.91,1.743,21.46-11.926,37.32-31.15,42.94l4.895-4.34c16.049-4.68,21.979-13.87,21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04,7.938-7.57,4.376-4.52,3.215-2.42l-4.896,4.33z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10307" d="M109.47,167.23c0.37-0.5-2.08,1.32-1.58,0.96,1.44-1.03,2.83-2.11,4.32-3.05,1.74-1.1-2.69,3.18-3.5,5.06-1.8,4.19-2.67,8.74-2.99,13.26,0.48,11.36,1.91,28.2,16.34,27.4l-5.19,3.73c-14.43,0.8-15.86-16.04-16.34-27.4,0.76-10.65,4.13-18.65,14.13-23.69l-5.19,3.73z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10312" d="M90.239,195.18c4.436-5.06,9.921-6.5,15.841-8.9,0.22-0.08,0.44-0.16,0.66-0.24l-4.89,4.11c-0.23,0.08-0.45,0.16-0.67,0.24-3.849,1.56-16.526,7.48-6.046,0.68l-4.895,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10313" d="M92.127,195.04c2.959-1.39,6.078-2.39,9.183-3.39l-2.283,1.91c-3.107,1.01-6.225,2.01-9.184,3.4l2.284-1.92z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10334" d="M71.284,215.13c2.282-0.05-7.613,2.79-5.706,2.1,6.617-2.38,14.816-6.11,22.025-4.72,6.222,3.84,9.33,8.25,17.357,8.51,0.75-0.02,1.5-0.05,2.26-0.08l-6.01,2.19c-0.75,0.02-1.504,0.05-2.258,0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885,0.28-11.669,1.18-1.359,0.32-5.31,1.73-4,1.25,1.883-0.7,7.542-2.75,5.654-2.07-2.071,0.74-4.136,1.51-6.205,2.27h-0.099l6.005-2.19z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10336" d="M126.64,186.01c0.65,4.49,0.69,9.05,0.49,13.57-0.17,2.51-0.1,5.03-0.18,7.54-0.71,3.13,3.22,3.62,5.3,5.18l-4.9,4.1c-2.08-1.55-6-2.04-5.3-5.17,0.08-2.51,0.02-5.03,0.18-7.54,0.2-4.53,0.16-9.08-0.48-13.57l4.89-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10339" d="M130.21,184.27c2.23,2.35,5.2,3.92,8.04,5.45,0.16,0.1,0.33,0.19,0.49,0.29l-4.9,4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10343" d="M134.6,193.52c-3.65,0.94-16.26,11.73-7.18,4.15-0.5,0.2-0.58,0.72-0.87,1.07l-4.9,4.11c0.29-0.35,0.37-0.87,0.87-1.07,5.1-4.29,10.77-9.74,16.98-12.37l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10353" d="M120.69,198.75c5.53-1.03,11.22-0.65,16.82-0.41,0.3,0.01,0.59,0.02,0.89,0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48,9.24-0.73-4.04,0.41h-6.39z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10357" d="M126.01,216.45c3.57-3.01,7.2-6.09,11.21-8.52l-4.89,4.1c-4.15,2.53-8.36,6.26-1.42,0.31l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10361" d="M144.45,185.31c-0.1,3.99,0.07,7.95,0.41,11.91,0.25,3.21,0.33,6.43,0.25,9.64l-4.9,4.1c0.09-3.21,0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10364" d="M139.51,210.61c5.51-5.7,5.75-2.9,11.44,0.5l-4.9,4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10365" d="M145.17,214.75c2.38-3.73,5.74-4,8.82-6.21l-4.9,4.11c-2.39,1.72-9.34,4.68,0.98-2.01l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10367" d="M147.28,182.79c2.39,1,3.88,3.33,5.68,5.12,0.74,0.61,1.57,1.07,2.4,1.55l-4.9,4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10369" d="M155.95,187.02c-1.32,5.93-1.09,12.18-0.84,18.23,0.45,7.89,0.42,15.82-0.03,23.7-0.04,0.33-0.09,0.66-0.14,0.99l-4.89,4.11c0.04-0.33,0.09-0.66,0.13-0.99,0.46-7.88,0.48-15.81,0.03-23.7-0.24-6.05-0.48-12.3,0.85-18.24l4.89-4.1z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10371" d="M151.84,232.22c8.01-7.56,1.56-1.13-1.16,2.37-0.12,0.18-0.25,0.35-0.38,0.53l-4.89,4.11c0.12-0.18,0.25-0.36,0.38-0.53,3.15-4.07,6.66-7.66,10.94-10.59l-4.89,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10397" d="M160.9,183.84c1.4,0.63,2.65,1.72,3.96,2.59-0.01,0.04,0.6,0.42,0.62,0.43l-4.89,4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10398" d="M165.4,185.53c-0.62,3.57-0.32,7.23-0.15,10.83,0.26,3.28,0.04,6.56,0.16,9.84-0.08,0.73,0.16,1.37,0.34,2.04l-4.68,4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28,0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26,0.15-10.83l4.68-4.35z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10399" d="M161.19,211.22c5.6-5.49,4.08-3.9,8.57-0.51,0.82,0.79,1.71,1.46,2.64,2.11l-4.9,4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11,1.23-7.71l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10400" d="M172.41,183.84c-10.02,9.6-0.75-4.31,4.11,1.77,0.25,0.48,0.75,0.72,1.12,1.07l-4.9,4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6,0.39-1.28,0.11,9.36-8.19,2.97-2.3-0.35,0.31l4.9-4.1z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10401" d="M176.94,186.01c0.47,3.49,0.31,7.06,0.31,10.58-0.06,3.16,0.11,6.33-0.1,9.48-0.28,1.08-0.14,2.03,0.11,3.06l-4.89,4.11c-0.26-1.04-0.39-1.98-0.12-3.06,0.21-3.15,0.04-6.32,0.1-9.48,0-3.52,0.16-7.09-0.31-10.58l4.9-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10403" d="M182.67,188.42c5.59-6.25,3.27-2.15,3.22,3.41-0.06,3.39,0.31,6.77,0.36,10.16,0.09,1.69-0.15,3.65,0.66,5.08,2.57,0.77,4.67,2.32,6.79,3.84,0.2,0.13,0.4,0.26,0.6,0.38l-4.9,3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16,0.05-6.1-0.01-7.49,6.56-11.18l-4.89,3.89z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10404" d="M188.03,184.53c1.81-0.14,3.33,0.02,4.93,0.86,1.15,0.69,2.43,0.94,3.74,1.14l-4.9,4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10409" d="M196.3,186.2c-4.6,3.24,5.4-5.82,2.09-1.73-1.38,1.67-1.33,3.62-1.34,5.68,0.01,2.58,0.01,5.16,0.01,7.75v7.06c-0.07,2.57,0.27,4.43,2.84,5.32,2.09,0.91,3.86,1.35,6.07,0.8l-4.89,4.11c-2.22,0.54-3.98,0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59,0-5.17-0.01-7.76,0.01-2.05-0.04-4,1.34-5.67,2.12-2.61,4.82-4.86,7.71-6.49l-4.9,4.11z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10419" d="M210.37,184.97c0.11,3.62,0.31,7.23,0.35,10.85,0.01,2.71,0,5.41,0,8.11,0.07,1.77-0.31,3.51-0.2,5.26,1.31,1.36,3.32,2.35,5.2,2.94l-4.89,3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74,0.28-3.49,0.21-5.26,0-2.7,0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10420" d="M204.55,183.17c2.14,0.5,4.03,1.99,6.17,2.81l-4.89,4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10437" d="M207.26,191.83c4.84-3-0.14-2.8,10.38-7.77l-4.9,4.52c-1.73,0.82-6.45,4.18-5.01,2.84,1.56-1.44,6.25-5.79,4.69-4.34-6.12,5.66-7.25,6.73-0.26,0.22l-4.9,4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10438" d="M217.04,183.5c1.72-0.23,2.79,0.55,4.06,1.74,0.11,0.09,0.23,0.19,0.35,0.28l-4.89,4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10440" d="M216.59,188.03c7.79-8.26,3.34-0.16,4.8,8.15,0.93,3.8,0.43,7.63,0.17,11.47l-4.9,4.52c0.26-3.84,0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39,5-17.2l-4.9,4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10441" d="M215.28,212.58c3.06-3.13,6.06-7.14,9.29-3.11,0.4,0.69,1,1.15,1.56,1.65l-4.89,4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98,1.65,0.51-5.95l-4.9,4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10442" d="M218.03,191.06c13.3-12.26,0.22-0.2,0.24-0.22,4.34-3.56,5.74-4.97,10.13-7.02l-4.9,4.53c-1.66,0.77-6.33,3.61-4.97,2.31,1.52-1.48,6.26-5.68,4.64-4.35-0.04,0.03-13.05,12.1-0.25,0.22l-4.89,4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10445" d="M228.59,183.5c1.63,0.25,2.91,1.5,4.12,2.65l-4.9,4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10449" d="M232.69,185.86c-0.16,3.48-0.38,6.95-0.25,10.45,0.23,3.03,0.25,6.08,0.25,9.12,0.09,1.27-0.14,2.5-0.33,3.74l-4.9,4.52c0.2-1.23,0.42-2.47,0.33-3.73,0-3.05-0.01-6.09-0.24-9.12-0.13-3.5,0.09-6.97,0.24-10.46l4.9-4.52z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10451" d="M231.64,207.76c1.4,0.3,2.6,1.22,3.84,2.04,0.55,0.32,0.99,0.8,1.47,1.24l-4.9,4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10456" d="M61.797,239.38c-3.815,14.51-9.17,28.23-17.028,40.7-4.475,7-9.893,13.3-16.22,18.65l-4.836,3.67c6.328-5.35,11.746-11.65,16.22-18.65,7.859-12.47,13.213-26.19,17.028-40.71l4.836-3.66z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10461" d="M27.88,298.13c3.428-1.18,7.145-1.56,10.932-1.14,6.697,1.49,12.621,5.49,19.564,4.96,0.609-0.12,1.218-0.24,1.828-0.35l-4.836,3.66c-0.609,0.12-1.219,0.24-1.828,0.36-6.943,0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933,1.15l4.836-3.67z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10471" d="M70.37,235.65c-1.123,13.31-1.161,26.21,2.775,39.7,4.755,14.46,7.667,23.2,22.924,15.48l-7.482,5.67c-15,7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10476" d="M49.366,235.26c-1.336,3.67-0.707,6.56,3.963,6.39,5.784-0.79,10.868-3.47,15.986-5.81l-7.394,5.61c-5.06,2.31-10.093,4.98-15.835,5.69-4.649,0.08-5.251-2.91-3.819-6.5l7.099-5.38z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10481" d="M50.888,271.43c5.189-3.39,10.916-5.06,16.936-6.25,1.036-0.22,2.088-0.35,3.135-0.51l-7.781,5.45c-1.07,0.17-2.145,0.32-3.204,0.56-5.94,1.21-11.632,2.8-16.775,6.14l7.689-5.39z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10489" d="M112.97,269.94c-9.6,10.08-6.81,1.97-14.828,5.15,2.648-1.63,5.248-3.32,7.948-4.88,1.62-0.94-2.48,2.68-3.31,4.23-2.22,4.18-3.21,7.59-1.62,11.95,2.25,7.51,7.65,9.86,16.35,7.64,14.96-7.37-6.7,5.47,1.16,0.15l8.97-5.54c-6,4.06-12.04,8.36-19.08,10.92-8.626,2.18-13.324-0.27-15.583-7.68-3.831-10.45,4.221-17.17,13.973-22.24,6.94-2.73,11.51,4.32-2.69,5.68l8.71-5.38z" fill-rule="nonzero" sodipodi:nodetypes="ccccccccccccc" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10490" d="M114.25,279.99c-0.05,0.03-0.1,0.06-0.15,0.09,2.48-1.73,4.96-3.47,7.45-5.2,0.32-0.22-0.63,0.5-0.95,0.72-3.47,2.43-6.72,4.86-10.27,7.03-1.55,0.95-3.15,1.8-4.67,2.78-0.4,0.25-1.56,1.05-1.18,0.78,11.79-8.31,8.29-5.81,5.77-4.01-2.12,1.64,0.28-0.26-1.09,1.01l-7.74,5.42c0.34-0.32,0.49-0.82,1.02-0.96,4.04-2.9,8.02-5.94,12.3-8.5,1.72-1.03,6.8-4.26,5.17-3.09-18.63,13.35,1.69-1.53,2.02-1.45l-7.68,5.38z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10513" d="M134.96,272.25c-2.56,4.92-3.71,10.85-3.29,16.28,0.44,2.96,2.68,8,6.96,6.75,2-0.59,11.49-6.55,5.37-2.86-1.91,1.15-3.8,2.34-5.71,3.51l8.01-5.1c-6.21,4.03-20.04,16.56-22.51,2.71-0.42-5.47,0.73-11.51,3.48-16.39l7.69-4.9z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10515" d="M138.99,269.73c-2.75,1.78-11.24,6.74-8.24,5.34,3.07-1.43,5.64-3.63,8.46-5.44,6.83-4.39-27.79,17.74,1.24-0.82,1.52-0.97,3.61-0.76,5.32-0.61,3.88,1.24,6.87,2.76,10.88,1.06l-8.45,5.48c-3.98,1.67-6.98,0.12-10.83-1.1-1.76-0.16-6.72,1.53-5.28,0.58,2.64-1.73,10.55-6.96,7.96-5.15-28.11,19.66,17.27-12.79-9.36,6.04l8.3-5.38z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10521" d="M154.57,269.81c-5.81,15.67-7.98,32.12-7.95,48.83,0.07,1.12,0.13,2.25,0.2,3.38l-8.06,5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94,2.08-33.45,8.43-49.15l7.69-5.39z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10538" d="M157.95,276.59c7.83-9.86,11.45-10.87,8.55,1-3.13,8.88-2.53,21.17,8.44,13.55,0.62-0.56,2.4-2.31,1.85-1.67-11.01,13.09,1.59-4.22,3.81-8.16l6.91-7.48c-5.23,9.35-11.27,17.97-19.42,24.71-10.84,7.49-11.57-4.76-8.44-13.54,4.56-18.21-7.27-0.9,4.94-15.6l-6.64,7.19z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10547" d="M181.91,273.02c15.54-9.39,4.17-0.34,4.77,12.75,0.57,8.3,5.56,12.76,13.89,9.09l-8.79,4.84c-8.24,3.62-13.35-0.84-13.93-9.07-0.46-10.85,2.13-17.87,12.58-22.3l-8.52,4.69z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10561" d="M209.34,272.44c0.23-0.15-0.34,0.42-0.47,0.66-0.82,1.51-1.31,3.2-1.81,4.82-1.19,3.86-2,7.71-2.33,11.71-0.04,2.93,0.83,6.84,4.83,6.2,1.61-0.26,5.78-2.83,4.49-1.87-1.77,1.33-3.57,2.65-5.58,3.63-1.99,0.97,3.31-2.89,4.72-4.54,2.91-3.38,5.06-7.15,7-11.08,0.33-0.77,0.65-1.54,0.98-2.31l7.98-5.31c-0.31,0.76-0.62,1.51-0.93,2.27-3.86,8.01-27.84,37.21-31.47,18.33,0.82-10.58,2.8-17.55,12.98-22.68,0,0-8.88,5.69-0.39,0.17z" fill-rule="nonzero" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10564" d="M229.31,270.07c-1.2,7.87-4.67,16.91-1.11,24.62,0.81,2.84,7.86-1.75,5.75-0.62-11.59,6.2-3.68,1.05-0.72-2.84l8-5.06c-4.25,5.63-13.3,16.86-20.91,13.49-3.87-7.64-0.23-16.93,1.29-24.74l7.7-4.85z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10577" d="M241.71,270.16c6.09-2.08,6.95,1.58,7.15,6.73-0.1,6.11-1.19,12.15-1.91,18.2l-7.29,6.52c0.62-6.03,1.61-12.03,1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10582" d="M243.72,286.28c1.89-6.97,10.19-12.77,16.94-16.11,7.49-3.07,5.43,8.37,4.89,12.21-0.67,3.82-1.16,7.71-1.4,11.57l-7.05,6.67c0.13-3.82,0.66-7.67,1.28-11.46,0.54-3.87,2.7-15.43-4.87-12.22-1.91,0.95-3.69,2.04-5.36,3.35-0.4,0.31-1.53,1.33-1.17,0.98,12.28-12.02,4.03-5.35,3.74-1.62l-7,6.63z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10585" d="M270.22,273.76c-12.36,15.35-0.73-2.84,5.43-4.11,3.42,0.86,5.53,1.98,8.85,0.1,0.28-0.18,0.56-0.35,0.84-0.52l-5.98,6.73c-0.28,0.18-0.56,0.35-0.84,0.53-3.29,1.83-5.44,0.71-8.81-0.16-1.24,0.26-4.33,2.79-3.45,1.78,1.83-2.09,3.68-4.15,5.52-6.22,2.5-2.81-9.82,11.45-7.45,8.5l5.89-6.63z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10588" d="M279.45,274.43c12.99-13.55,0.66,0.01,2.16,12.27,1.33,5.76,5.34,9.97,11.49,6.92l-7.21,6.82c-6.1,3-10.21-1.13-11.55-6.86-1.35-10.95,3.55-18.94,12.12-25.79l-7.01,6.64z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10596" d="M211.17,270.68c5.6,2.22,11.9,2.06,17.64,0.4,2.56-0.85,4.86-2.22,7.13-3.63l-6.6,6.48c-2.28,1.42-4.59,2.81-7.16,3.67-5.66,1.64-11.98,1.85-17.43-0.61l6.42-6.31z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath10601" d="M114.63,279.3c-3.27,0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77,0.53,1.51,1.1,2.33,1.55,2.62,1.66,5.28,3.63,8.52,3.41l-8.13,4.69z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3335" d="M89.045,443.38c1.124-5.41,13.385-11.99,19.355-13.77,9.68-1.64,1.02,17.45-0.43,20.34-9.815,17.51-26.848,29.12-45.385,42.7l-4.818,3.14c18.402-13.46,35.497-25.02,45.023-42.46,1.45-2.99,9.58-21.28-0.21-19.93-3.368,0.95-7.36,3.54-7.394,5.98l-6.141,4z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3338" d="M138.8,376.96c-1.9,0.33-9.02,5.09,3.37-2.59,0.61-0.38-1.03,0.91-1.48,1.4-2.7,2.92-3.89,6.29-5.1,9.49-4.4,11.91-7.14,24.05-9.69,36.01-2.38,11.14-4.46,22.27-6.74,33.41-0.32,1.61-0.63,3.21-0.94,4.81l-5.72,3.79c0.42-1.66,0.83-3.33,1.23-5,2.52-11.23,4.86-22.48,7.2-33.71,2.48-11.87,5.16-23.89,9.25-35.72,1.95-5.51,5.55-13.72,14.68-15.9l-6.06,4.01z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3353" d="M118.36,440.1c3.32-2.61,13.57-8.8,3.44-2.48-0.55,0.35,1.1-0.71,1.64-1.06,2.93-1.9,5.82-3.83,8.89-5.41,2.52-1.17,6.33-2.45,8-0.69,1.12,5.26-7.9,9.9-11.22,12-3.81,2.35-7.81,4.23-11.86,5.87-3,1.05-7.41,3.78,1.15-1.59l-5.69,2.99c4.31-2.73,5.6-3.59,9.44-5.06,4.02-1.64,7.96-3.51,11.74-5.86-9.02,5.76,1.85-0.6,1.01-5.02-1.77-1.26-5.02-0.13-7.4,1-5.4,2.86,6.34-4.23-0.07-0.12-2.21,1.42-8.84,5.64-6.64,4.22,7.86-5.1,5.29-3.51,3.39-1.89l-5.82,3.1z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3363" d="M126.6,443.11c-1.12,4.06,10.85,23.55,13,26.63,10.5,11.82,26.08,14.43,43.42,4.58l-3.89,2.96c-17.65,9.9-33.28,7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3372" d="M82.417,437.82c1.28-4.11,7.742-7.02,10.976-8.65,4.414-1.66,1.091,12.34,0.619,14.28-1.259,5-2.412,10.16-4.036,15.13-0.445,1.26,0.108-0.31-0.316,0.93l-5.514,3.35c0.416-1.24-0.117,0.32,0.311-0.93,1.869-5.02,3.197-10.32,4.454-15.38,0.455-1.87,3.605-15.6-0.848-13.88-2.04,1.05-4.789,2.78,3.485-2.32,1.513-0.94-3.257,2.45-3.478,4.02l-5.653,3.45z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3374" d="M159.06,436.59c1.31-1.15,6.38-4.1-4.17,2.85-1.82,1.2,3.53-2.97,4.69-4.93-2.7-3.29-9.73-2.02-13.74,0.14-0.49,0.33-1.94,1.29-1.46,0.97,1.04-0.69,2.03-1.54,3.11-2.07,1.6-0.78-2.78,2.84-3.43,4.59-1.45,3.87,1.57,5.28,4.3,5.49,4.67-0.31,13.87-4.18,10.79,4.47-4.59,9.02-17.46,15.1-25.56,15.46l4.61-3.3c8.44-0.09,13.36-2.96,16.43-9.09,2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81,1.42-12.15,6.33-15.38,4.37-2.34,11.03-3.29,14.21-0.27-1.7,3-7.57,7.83-10.17,8.86l4.82-3.46z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3377" d="M175.35,437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01,0.53,1.89-1.34,2.92-1.8,2.17-0.95-2.97,3.85-3.81,5.96-2.28,5.72-3.98,11.82-5.1,17.61-1,12.43,15.04-3.06,19.23-6.82,0.74-0.69,1.48-1.37,2.23-2.05l4.72-2.81c-0.78,0.71-1.56,1.41-2.34,2.12-4.77,4.26-30.56,27.03-28.74,12.53,2.52-11.02,3.85-21.87,16-28.06,4.04-0.89,5.1,0.69,4.52,4.34l-5.51,3.34z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3384" d="M198.11,433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17,0.45-10.68,4.1,4.46-2.13,1.49-0.61-2.44,2.12-3.28,3.37-2.11,3.14-3.07,6.54-3.88,9.87-0.97,4.53-1.69,9.07-2.76,13.6-0.88,3.19,4.67,1.1,6.62,0.39,3.3-1.56-2.53,1.21-4.17,1.89-1.3,0.54,2.36-1.55,3.42-2.45,2.68-2.25,4.08-5.23,5.39-8.05,1.2-2.84,2.21-5.7,3.49-8.52l6.01-2.77c-1.39,2.84-2.4,5.7-3.62,8.57-3.48,7.8-7.66,10.23-16.48,14.34-2.05,0.73-7.9,2.85-6.86-0.53,1.26-4.58,2.14-9.16,3.07-13.74,1.92-8.15,4.6-13.27,14.59-16.84,3.24-0.46,5.66,0.4,8.65,0.54l-6.25,3.07z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3410" d="M215.04,441.65c1.28-4.62,11.52-9.8,15.21-11.04,5.46-1.02,8.6,0.13,9.12,5.59-0.16,6.06-3.98,13.39-8.69,18.09-5.75,4.75-10.96,8.21-17.54,8.58-0.67,0.01-1.34,0.03-2,0.04l5.06-3.78c0.65,0,1.3-0.01,1.96-0.02,3.17-0.2,6.32-0.93,9.38-2.74,0.36-0.21,1.4-0.94,1.06-0.68-7.28,5.59-4.47,3.33-2.99,2.12,4.91-4.52,8.68-12.06,8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75,0.95-7.57,4.45-0.05-1.14,0.91-0.68-4.6,2.52-4.93,4.7l-5.31,3.76z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3411" d="M201.11,431.79c1.74-1.08,4.36-2.21,6.13-3.24,1.1-0.64-0.62,2.16-0.88,3.25-0.77,3.15-1.41,6.31-2.23,9.46-1.06,3.89-1.69,7.7-2.52,11.58-0.59,2.72-1.36,5.4,2.05,5.86,5.75-1.5,3.15-1.35,8.7-5.33l4.4-2.7c-5.42,3.9-11.57,9.68-18.08,11.33-3.49-0.5-3.64-3.17-3.01-5.98,0.83-3.93,1.59-7.78,2.71-11.71,2.09-7.76,0.82-10.68,8.88-15.83l-6.15,3.31z" fill-rule="nonzero" sodipodi:nodetypes="ccccccccccccc" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3413" d="M237.31,448.93c0.29-1,19.64-12.17,9.63-5.45,3.8-3.04,5.14-5.81,2.95-9.18-0.66-0.83-4.45,0.01-3.38-0.73,7.67-5.31,0.83,1.23-1.11,5.49-2.52,6.04-6.77,17.65,0.67,20.1,5.26,0.43,10.65-2.33,15.53-5.1l-4.44,3.16c-4.98,2.81-10.51,5.63-15.87,5.22-7.43-2.51-3.02-14.29-0.54-20.34,1.72-3.94,9.91-16.96,14.13-11.16,2.17,3.5,0.93,6.2-2.98,9.36-3.12,2.12-6.12,4.39-9.47,6.07-1.47,0.75-5.84,3.05-4.47,2.1,20.53-14.29,4.71-4.03,4.58-2.99l-5.23,3.45z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3416" d="M238.05,448.91c8.57-6.7,17.73-9.98,27.18-7.94,11.02,2.6,18.27,0.36,29.22-6.56l-3.56,2.54c-11.33,7.19-18.67,9.62-30.14,7.11-5.57-1.1-10.31-0.89-16.2,1.6-1.8,0.75-6.89,3.73-5.28,2.59,9.11-6.44,5.47-3.9,4.06-2.74l-5.28,3.4z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3422" d="M85.023,384.91c2.178-1.82,4.349-3.66,6.535-5.46,0.349-0.28-0.49,0.85-0.664,1.31-0.895,2.32-1.38,4.74-1.793,7.09-0.672,3.81-1.218,7.59-1.988,11.41-2.802,14.52-5.211,29.07-8.831,43.61-0.986,3.91-2.527,8.48-2.883,12.28,0.801,3.03,1.522,2.25,4.677,0.33l-5.844,5.18c-3.396,2.1-4.385,3.18-5.365-0.04,0.514-4.06,2.449-8.8,3.59-12.94,3.914-14.64,7.09-29.48,9.385-44.06,1.913-14.22-1.002-15.33,9.699-24.37l-6.518,5.66z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3426" d="M111.38,368.18c-11.977,11.34-22.614,15.89-37.232,15.85-19.492-0.95-41.197-3.81-51.153,17.86l-6.122,4.1c13.359-27.61,41.508-27.32,63.739-26.56,17.548-0.27,16.162,0.58,22.608-5.83l8.16-5.42z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <path id="calligraphy-f10-el.svgpath3433" d="M207.51,437.58c4-4.19,12.75-12.67,13.56-4.8-0.05,12.28-5.98,26.33-9.09,38.77-4.42,18.1-8.31,36.2-17.33,53.76-10.76,18.43-32.81,32.08-51.55,27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3,18.75-37.19,39.33-40.67,1.63-0.12,3.26-0.23,4.88-0.35l-4.91,3.51c-1.56,0.07-3.12,0.14-4.68,0.21-5.03,0.77-13.31,1.77-17.9,4.5-21.58,12.84-14.65,35.86,0.3,43,18.88,4.4,31.51-3.72,41.53-20.45,9.28-17.51,13.06-35.7,17.45-53.81,3-12.05,8.47-26.06,7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38,0.56-1.84,0.16,10.82-7.99,4.82-3.68,2.76-1.16l-6.79,4.5z" fill-rule="nonzero" transform="translate(10, 3887.9001788000005) " display="block" fill="#000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="4466.523968800001" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="4466.523968800001" x="10">ΣυμπΞΟασμα</tspan> + </text> + <rect id="d0e378" display="none" height="1000px" width="288" y="4471.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e378"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— καλλιγΟαφία δεν ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΟΞ½ΞΏ διασκΞδαση. Είναι Ξ²Ξ±ΞΈΞΉΞ¬ πνευματική Ο„Ξχνη που μποΟΞµΞ― Ξ½Ξ± μετασχηματίσει την στάση σας σε κάθε τι που κάνετε ΞΊΞ±ΞΉ Ξ²Ξ»Ξπετε. Το ΞµΟγαλείο καλλιγΟαφίας του Inkscape μποΟΞµΞ― Ξ½Ξ± Ο‡ΟησιμεΟσει ως απλή εισαγωγή. Ξ Ξ±ΟΟλα αυτά ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο ΟΞΌΞΏΟφο Ξ½Ξ± παίξετε ΞΌΞµ Ξ±Ο…Ο„Ο ΞΊΞ±ΞΉ ίσως Ο‡Οήσιμο στην αληθινή σχεδίαση. ΑπολαΟστε το!</flowDiv> + </flowRoot> + <g transform="translate(0, 4541.474750800001)"> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/> + <filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset64" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/> + <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/> + <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/> + <g id="g1515" filter="url(#filter56)" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,53.985559)"> + <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" fill-rule="evenodd" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" fill-rule="evenodd" stroke-width="1pt" fill="#000"/> + </g> + <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" fill="#000"/> + </g> + </g> +</svg> diff --git a/share/tutorials/tutorial-elements.el.svg b/share/tutorials/tutorial-elements.el.svg new file mode 100644 index 000000000..847909612 --- /dev/null +++ b/share/tutorials/tutorial-elements.el.svg @@ -0,0 +1,692 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. --> +<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient841"> + <stop id="stop842" stop-color="#0082ab" offset="0"/> + <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/> + <filter id="filter48" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset56" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/> + <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/> + <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/> + <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/> + <g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-3.296641)"> + <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" fill="#000"/> + </g> + <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff"> + <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::ΣΤΞΙΧΕΞΞ‘</tspan> + </text> + <rect id="d0e10" display="none" height="1000px" width="264" y="36" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e10"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα ΞΈΞ± δείξει τα στοιχεία ΞΊΞ±ΞΉ τις Ξ±ΟΟ‡ΞΟ‚ σχεδίασης που συνήθως διδάσκονται σε Ξ±ΟχάΟΞΉΞΏΟ…Ο‚ σπουδαστΞΟ‚ Ο„Ξχνης Ξ³ΞΉΞ± Ξ½Ξ± καταλάβουν ποικίλες ιδιΟτητες που Ο‡ΟησιμοποιοΟνται στην Ο„Ξχνη. Αυτή δεν ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± πλήΟΞ·Ο‚ λίστα, Ξτσι παΟΞ±ΞΊΞ±Ξ»Ο Ο€ΟοσθΞστε, αφαιΟΞστε ΞΊΞ±ΞΉ συνδυάστε Ξ³ΞΉΞ± Ξ½Ξ± κάνετε Ξ±Ο…Ο„Ο Ο„ΞΏ μάθημα πιο κατανοητΟ.</flowDiv> + </flowRoot> + <rect id="elements-f01-el.svgrect1801" fill-rule="evenodd" transform="translate(10, 106.45624699999999) " height="167.44" width="305.16" stroke="#000" y="0.32084" x="7.5753" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.64164" fill="#e1e1e1"/> + <path id="elements-f01-el.svgpath1721" d="m-40.289,236.82c0,25.429-20.615,46.044-46.044,46.044s-46.044-20.615-46.044-46.044,20.615-46.044,46.044-46.044,46.044,20.615,46.044,46.044z" stroke-opacity="0.33000004" fill-rule="evenodd" fill-opacity="0.30459798" transform="translate(10, 106.45624699999999) matrix(1.353293,-4.258673e-17,4.258673e-17,1.353293,309.8639,-242.9186)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#00F"/> + <path id="elements-f01-el.svgpath1722" d="m-40.289,236.82c0,25.429-20.615,46.044-46.044,46.044s-46.044-20.615-46.044-46.044,20.615-46.044,46.044-46.044,46.044,20.615,46.044,46.044z" stroke-opacity="0.32758598" fill-rule="evenodd" fill-opacity="0.28160897" transform="translate(10, 106.45624699999999) matrix(1.353293,4.258673e-17,4.258673e-17,-1.353293,248.6654,398.0456)" stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.25" fill="#ff00f5"/> + <text id="elements-f01-el.svgtext1752" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" fill-opacity="0.59770101" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="10.000000" font-variant="normal" y="154.377" x="102.01891" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#ff00f7"><tspan id="elements-f01-el.svgtspan1732" fill-opacity="0.59770101" role="line" dx="0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0" y="154.37700" x="102.01891" fill="#ff00f7">Στοιχεία</tspan></text> + <text id="elements-f01-el.svgtext1755" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" fill-opacity="0.60000002" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="10.000000" font-variant="normal" y="154.377" x="168.60974" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#0000ff"><tspan id="elements-f01-el.svgtspan1738" fill-opacity="0.60000002" role="line" dx="0 0 0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0 0 0" y="154.37700" x="168.60974" fill="#0000ff">Ξ‘ΟΟ‡ΞΟ‚</tspan></text> + <text id="elements-f01-el.svgtext1758" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="100.13462" x="90.54583" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1741" role="line" dx="0 0 0 0" dy="0 0 0 0" y="100.13462" x="90.545830">Ξ§ΟΟΞΌΞ±</tspan></text> + <text id="elements-f01-el.svgtext1761" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="32.645866" x="116.87344" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1744" role="line" dx="0 0 0 0" dy="0 0 0 0" y="32.645866" x="116.87344">Ξ“ΟΞ±ΞΌΞΌΞ®</tspan></text> + <text id="elements-f01-el.svgtext1764" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="47.565285" x="95.306877" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1747" role="line" dx="0 0 0 0" dy="0 0 0 0" y="47.565285" x="95.306877">Σχήμα</tspan></text> + <text id="elements-f01-el.svgtext1767" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="83.103767" x="83.459221" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1750" role="line" dx="0 0 0 0 0" dy="0 0 0 0 0" y="83.103767" x="83.459221">Ξ§ΟΟΞΏΟ‚</tspan></text> + <text id="elements-f01-el.svgtext1770" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="114.99348" x="101.17574" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1753" role="line" dx="0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0" y="114.99348" x="101.17574">Υφή</tspan></text> + <text id="elements-f01-el.svgtext1773" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="129.16661" x="118.89227" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1756" role="line" dx="0 0 0 0 0" dy="0 0 0 0 0" y="129.16661" x="118.89227">Τιμή</tspan></text> + <text id="elements-f01-el.svgtext1776" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="65.387245" x="83.459221" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1759" role="line" dx="0 0 0 0" dy="0 0 0 0" y="65.387245" x="83.459221">ΞΞΞ³ΞµΞΈΞΏΟ‚</tspan></text> + <text id="elements-f01-el.svgtext1779" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="34.637756" x="184.08173" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1762" role="line" dx="0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0" y="34.637756" x="184.08173">ΙσοΟΟοπία</tspan></text> + <text id="elements-f01-el.svgtext1782" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="51.614323" x="194.48068" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1765" role="line" dx="0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0" y="51.614323" x="194.48068">Αντίθεση</tspan></text> + <text id="elements-f01-el.svgtext1785" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="71.448875" x="199.68022" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1768" role="line" dx="0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0" y="71.448875" x="199.68022">Ξμφαση</tspan></text> + <text id="elements-f01-el.svgtext1788" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="91.283318" x="199.44937" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1771" role="line" dx="0 0 0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0 0 0" y="91.283318" x="199.44937">Αναλογία </tspan></text> + <text id="elements-f01-el.svgtext1791" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="8.0000000" font-variant="normal" y="111.11781" x="193.78815" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1774" role="line" dx="0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0" y="111.11781" x="193.78815">Ξοτίβο</tspan></text> + <text id="elements-f01-el.svgtext1803" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) scale(1.000025,0.999975)" font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="7.9998040" font-variant="normal" y="129.04839" x="178.64687" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1786" role="line" dx="0 0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0 0" y="129.04839" x="178.64687">Διαβάθμιση</tspan></text> + <text id="elements-f01-el.svgtext1806" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " line-height="100.00000%" xml:space="preserve" font-size="8.0000000" font-style="normal" y="80.613045" x="133.85378" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#ffffff"><tspan id="elements-f01-el.svgtspan1792" role="line" dx="0 0 0 0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0 0 0 0" y="80.613045" x="133.85378" fill="#ffffff">Ξ£Ονθεση</tspan></text> + <text id="elements-f01-el.svgtext1809" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" fill-opacity="0.21476497" sodipodi:linespacing="100.00000%" transform="translate(10, 106.45624699999999) " font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="10.000000" font-variant="normal" y="12.44677" x="12.456144" xmlns:cc="http://creativecommons.org/ns#" font-family="Bitstream Vera Sans" fill="#000000"><tspan id="elements-f01-el.svgtspan1803" fill-opacity="0.21476497" role="line" dx="0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0" y="12.446770" x="12.456144" fill="#000000">ΕπισκΟπηση</tspan></text> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="299.339747" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="299.339747" x="10">Στοιχεία σχεδίασης</tspan> + </text> + <rect id="d0e29" display="none" height="1000px" width="288" y="304.54" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e29"/> + </flowRegion> + <flowDiv xml:space="preserve">Τα πιο κάτω στοιχεία ΞµΞ―Ξ½Ξ±ΞΉ ΞΏΞΉ κατασκευαστικΞΟ‚ ομάδες σχεδίασης.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="334.7155282" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="334.7155282" x="10">Ξ“ΟΞ±ΞΌΞΌΞ®</tspan> + </text> + <rect id="d0e37" display="none" height="1000px" width="288" y="340.22" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e37"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± Ξ³ΟΞ±ΞΌΞΌΞ® ΞΏΟίζεται ως σημείο ΞΌΞµ μήκος ΞΊΞ±ΞΉ κατεΟθυνση, δημιουΟΞ³Ξ·ΞΌΞΞ½ΞΏ Ξ±Ο€Ο ΞΞ½Ξ± σημείο που μετακινείται κατά μήκος της επιφάνειας. ΞΞΉΞ± Ξ³ΟΞ±ΞΌΞΌΞ® μποΟΞµΞ― Ξ½Ξ± ποικίλει σε μήκος, πλάτος, κατεΟθυνση, καμπυλΟτητα ΞΊΞ±ΞΉ Ο‡ΟΟΞΌΞ±. Ξ— Ξ³ΟΞ±ΞΌΞΌΞ® μποΟΞµΞ― Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ δισδιάστατη (ΞΌΞΉΞ± Ξ³ΟΞ±ΞΌΞΌΞ® ΞΌΞΏΞ»Ο…Ξ²ΞΉΞΏΟ ΟƒΞµ χαΟτί), Ξ® υπονοοΟΞΌΞµΞ½Ξ· Ο„Οισδιάστατη.</flowDiv> + </flowRoot> + <g id="elements-f02-el.svgg2037" transform="translate(10, 419.4780292) translate(0.000000,-424.1680)"> + <rect id="elements-f02-el.svgrect1933" height="100.99" width="305.16" stroke="#000" y="424.42" x="7.5753" stroke-width="0.49832" fill="none"/> + <path id="elements-f02-el.svgpath1920" stroke-linejoin="miter" d="M18.77,434.05h76.604" stroke="#000" stroke-linecap="butt" stroke-width="0.94528618pt" fill="none"/> + <path id="elements-f02-el.svgpath1921" stroke-linejoin="miter" d="M18.77,446.55h172.36" sodipodi:nodetypes="cc" stroke="#000" stroke-linecap="butt" stroke-width="0.94528618pt" fill="none"/> + <path id="elements-f02-el.svgpath1922" stroke-linejoin="miter" d="M18.77,461.55h172.36" sodipodi:nodetypes="cc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="4.3719482" fill="none"/> + <path id="elements-f02-el.svgpath2546" stroke-linejoin="miter" d="M19.297,492.2l171.3-21.29" sodipodi:nodetypes="cc" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="4.3719482" fill="none"/> + <path id="elements-f02-el.svgpath2547" stroke-linejoin="miter" d="M19.297,517.2c57.102-7.1,74.428-38.92,171.3-21.29" sodipodi:nodetypes="cz" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="4.3719482" fill="none"/> + <path id="elements-f02-el.svgpath2548" d="M298.43,428.15l-93.59,52.33,16-0.15,80.64-52.31-3.05,0.13z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#000"/> + <path id="elements-f02-el.svgpath2550" d="M302.27,428.15l-71.58,52.33,14.71-0.15,61.88-52.31-5.01,0.13z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#000"/> + <path id="elements-f02-el.svgpath2551" d="M307.64,433.78l-60.48,66.22-0.1-15.79,60.57-55.54,0.01,5.11z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#000"/> + <path id="elements-f02-el.svgpath2552" d="M307.64,440.1l-60.48,79.04-0.1-15.79,60.57-68.36,0.01,5.11z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" fill="#000"/> + </g> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="544.9701092" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="544.9701092" x="10">Σχήμα</tspan> + </text> + <rect id="d0e56" display="none" height="1000px" width="288" y="550.47" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e56"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉΞ± επίπεδη ΞΌΞΏΟφή δημιουΟγείται Οταν ΞµΞ½ΞµΟΞ³ΞΟ‚ Ξ® υπονοοΟΞΌΞµΞ½ΞµΟ‚ Ξ³ΟΞ±ΞΌΞΌΞΟ‚ συναντΟνται ΞΊΞ±ΞΉ πεΟικλείουν ΞΞ½Ξ± Ο‡ΟΟΞΏ. ΞΞΉΞ± αλλαγή στο Ο‡ΟΟΞΌΞ± Ξ® την Ξ±Ο€ΟΟ‡Οωση μποΟΞµΞ― Ξ½Ξ± ΞΏΟίσει ΞΞ½Ξ± σχήμα. Τα σχήματα μποΟΞΏΟΞ½ Ξ½Ξ± διαιΟΞµΞΈΞΏΟΞ½ σε πολλοΟΟ‚ Ο„Οπους: γεωμετΟΞΉΞΊΞ¬ (τετΟάγωνα, Ο„Οίγωνα, ΞΊΟκλους) ΞΊΞ±ΞΉ ΞΏΟΞ³Ξ±Ξ½ΞΉΞΊΞ¬ (Ξ±Ξ½Ομαλα στο πεΟΞ―Ξ³ΟΞ±ΞΌΞΌΞ±).</flowDiv> + </flowRoot> + <g id="elements-f03-el.svgg2063" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10, 619.1007552) translate(0.000000,-611.9634)" stroke="#000"> + <rect id="elements-f03-el.svgrect1943" height="100.99" width="305.16" y="612.21" x="7.5753" stroke-width="0.49832" fill="none"/> + <path id="elements-f03-el.svgpolygon1952" d="M97.81,689.54,79.405,758.23,29.124,707.94z" fill-rule="evenodd" transform="matrix(0.707107,-0.707107,0.707107,0.707107,-391.8439,213.7036)" stroke-width="1pt" fill="#000"/> + <rect id="elements-f03-el.svgrect1953" fill-rule="evenodd" height="65.282" width="65.282" y="628.75" x="28.147" stroke-width="1pt" fill="#000"/> + <path id="elements-f03-el.svgpath1954" d="m175.45,733.14c0,14.808-12.004,26.812-26.812,26.812s-26.812-12.004-26.812-26.812,12.004-26.812,26.812-26.812,26.812,12.004,26.812,26.812z" fill-rule="evenodd" transform="matrix(1.195652,0.000000,0.000000,1.195652,83.87780,-215.1965)" stroke-width="1pt" fill="#000"/> + </g> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="744.5928352" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="744.5928352" x="10">ΞΞΞ³ΞµΞΈΞΏΟ‚</tspan> + </text> + <rect id="d0e75" display="none" height="1000px" width="288" y="750.09" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e75"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ξ±Ξ½Ξ±Ο†ΞΟεται στις ποικιλίες στις αναλογίες των αντικειμΞνων, Ξ³ΟΞ±ΞΌΞΌΟΞ½ Ξ® σχημάτων. ΥπάΟχει ΞΌΞΉΞ± ποικιλία ΞΌΞµΞ³ΞµΞΈΟΞ½ στα αντικείμενα είτε Ο€Οαγματικά είτε φανταστικά.</flowDiv> + </flowRoot> + <rect id="elements-f04-el.svgrect1955" transform="translate(10, 797.4434802) " height="100.99" width="305.16" stroke="#000" y="0.24915" x="7.5753" stroke-width="0.49832" fill="none"/> + <text id="elements-f04-el.svgtext3148" style="writing-mode:lr-tb;text-anchor:start;" font-family="Bitstream Vera Sans" font-weight="bold" sodipodi:linespacing="100.00000%" transform="translate(10, 797.4434802) scale(0.999982,1.000018)" font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="122.30419" font-variant="normal" y="95.748199" x="76.186218" stroke-width="3.0000000pt" fill="#000000"><tspan id="elements-f04-el.svgtspan3149" role="line" dx="0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0" y="95.748199" x="76.186218" fill="#000000">ΞΕΓΑΛΞ</tspan></text> + <text id="elements-f04-el.svgtext3154" style="writing-mode:lr-tb;text-anchor:start;" font-family="Bitstream Vera Sans" font-weight="bold" sodipodi:linespacing="100.00000%" transform="translate(10, 797.4434802) scale(0.999982,1.000018)" font-style="normal" font-stretch="normal" xml:space="preserve" line-height="100.00000%" font-size="10.076638" font-variant="normal" y="95.652267" x="50.097645" stroke-width="3.0000000pt" fill="#000000"><tspan id="elements-f04-el.svgtspan3155" role="line" dx="0 0 0 0 0 0 0 0 0 0 0 0" dy="0 0 0 0 0 0 0 0 0 0 0 0" y="95.652267" x="50.097645" fill="#000000">ΞΌΞΉΞΊΟΟ</tspan></text> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="922.9355601999999" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="922.9355601999999" x="10">Ξ§ΟΟΞΏΟ‚</tspan> + </text> + <rect id="d0e94" display="none" height="1000px" width="288" y="928.44" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e94"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ§ΟΟΞΏΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ Ξ· ΞΊΞµΞ½Ξ® Ξ® ανοικτή πεΟιοχή μεταξΟ, Ξ³ΟΟΟ‰, πάνω Ξ±Ο€Ο, κάτω Ξ±Ο€Ο Ξ® ΞΌΞσα στα αντικείμενα. Σχήματα ΞΊΞ±ΞΉ ΞΌΞΏΟΟ†ΞΟ‚ δημιουΟΞ³ΞΏΟνται Ξ±Ο€Ο Ο„ΞΏ Ο‡ΟΟΞΏ Ξ³ΟΟΟ‰ ΞΊΞ±ΞΉ ΞΌΞσα τους. Ξ Ο‡ΟΟΞΏΟ‚ αποκαλείται συχνά Ο„Οισδιάστατος Ξ® δισδιάστατος. ΠθετικΟΟ‚ Ο‡ΟΟΞΏΟ‚ γεμίζεται Ξ±Ο€Ο ΞΞ½Ξ± σχήμα Ξ® ΞΌΞΏΟφή. Ξ Ξ±ΟνητικΟΟ‚ Ο‡ΟΟΞΏΟ‚ πεΟιβάλλει ΞΞ½Ξ± σχήμα Ξ® ΞΌΞΏΟφή.</flowDiv> + </flowRoot> + <rect id="elements-f05-el.svgrect1991" transform="translate(10, 997.1713431999999) " height="100.99" width="305.16" stroke="#000" y="0.24914" x="7.5753" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="none"/> + <rect id="elements-f05-el.svgrect2044" fill-rule="evenodd" transform="translate(10, 997.1713431999999) " height="90.929" width="100.6" y="3.9333" x="36.104" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <path id="elements-f05-el.svgpath2606" d="m175.45,733.14c0,14.808-12.004,26.812-26.812,26.812s-26.812-12.004-26.812-26.812,12.004-26.812,26.812-26.812,26.812,12.004,26.812,26.812z" fill-rule="evenodd" transform="translate(10, 997.1713431999999) matrix(1.543479,0.000000,0.000000,1.543479,6.849864,-1082.759)" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <path id="elements-f05-el.svgpath2607" d="m175.45,733.14c0,14.808-12.004,26.812-26.812,26.812s-26.812-12.004-26.812-26.812,12.004-26.812,26.812-26.812,26.812,12.004,26.812,26.812z" fill-rule="evenodd" transform="translate(10, 997.1713431999999) matrix(1.543479,0.000000,0.000000,1.543479,-142.8356,-1082.759)" xmlns:cc="http://creativecommons.org/ns#" fill="#FFF"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="1122.6634232" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="1122.6634232" x="10">Ξ§ΟΟΞΌΞ±</tspan> + </text> + <rect id="d0e113" display="none" height="1000px" width="288" y="1128.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e113"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ§ΟΟΞΌΞ± ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ αντιληπτικΟΟ‚ χαΟακτήΟΞ±Ο‚ ΞΌΞΉΞ±Ο‚ επιφάνειας ΟƒΟμφωνα ΞΌΞµ το μήκος ΞΊΟματος του Ξ±Ξ½Ξ±ΞΊΞ»ΟΞΌΞµΞ½ΞΏΟ… φωτΟΟ‚ Ξ±Ο€Ο Ξ±Ο…Ο„Ο. Το Ο‡ΟΟΞΌΞ± Ξχει Ο„ΟΞµΞΉΟ‚ διαστάσεις: ΑΠΞΧΡΩΣΗ (άλλη ΞΌΞΉΞ± Ξ»ΞΞΎΞ· Ξ³ΞΉΞ± Ο‡ΟΟΞΌΞ±, που δείχνεται Ξ±Ο€Ο Ο„ΞΏ ΟΞ½ΞΏΞΌΞ± του Οπως ΞΊΟΞΊΞΊΞΉΞ½ΞΏ Ξ® ΞΊΞ―Ο„ΟΞΉΞ½ΞΏ), ΤΙΞΞ— (Ξ· φωτεινΟτητα του Ξ® σκοτεινΟτητα), Ξ•ΞΤΑΣΗ (Ξ· λαμπΟΟτητά του Ξ® μουντάδα του).</flowDiv> + </flowRoot> + <defs id="elements-f06-el.svgdefs3"> + <linearGradient id="elements-f06-el.svglinearGradient2620" y2="2135.3" gradientUnits="userSpaceOnUse" y1="2135.3" gradientTransform="matrix(1.735401,0.000000,0.000000,0.576236,0.000000,-1179.712)" x2="180.35" x1="4.2216" inkscape:collect="always"> + <stop id="elements-f06-el.svgstop2554" stop-color="#F00" offset="0"/> + <stop id="elements-f06-el.svgstop2555" stop-color="#e2ff00" offset="0.16503"/> + <stop id="elements-f06-el.svgstop2556" stop-color="#24ff00" offset="0.27659"/> + <stop id="elements-f06-el.svgstop2557" stop-color="#00e8ff" offset="0.51113"/> + <stop id="elements-f06-el.svgstop2558" stop-color="#1500ff" offset="0.76521"/> + <stop id="elements-f06-el.svgstop2559" stop-color="#ff00ed" offset="1"/> + <stop id="elements-f06-el.svgstop2560" stop-color="#F00" offset="1"/> + </linearGradient> + </defs> + <rect id="elements-f06-el.svgrect2045" fill-rule="evenodd" transform="translate(10, 1207.4259241999998) " height="100.99" width="305.16" stroke="#000" y="0.24916" x="7.5753" stroke-width="0.49832" fill="url(#elements-f06-el.svglinearGradient2620)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="1332.9180041999998" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="1332.9180041999998" x="10">Υφή</tspan> + </text> + <rect id="d0e132" display="none" height="1000px" width="288" y="1338.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e132"/> + </flowRegion> + <flowDiv xml:space="preserve">Υφή ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ Ο„ΟΟπος επαφής ΞΌΞΉΞ± επιφάνειας (Ο„ΟΞχουσα υφή) Ξ® Ο€ΟΟ‚ μποΟΞµΞ― Ξ½Ξ± φαίνεται (υπονοοΟΞΌΞµΞ½Ξ· υφή). ΞΞΉ Ο…Ο†ΞΟ‚ πεΟΞΉΞ³Οάφονται ΞΌΞµ Ξ»ΞΞΎΞµΞΉΟ‚ Οπως σκληΟΞ®, μεταξΞΞ½ΞΉΞ± Ξ® γεμάτος Ξ²Οτσαλα.</flowDiv> + </flowRoot> + <defs id="elements-f07-el.svgdefs3"> + <pattern id="elements-f07-el.svgpattern2172" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2655" patternTransform="matrix(0.25,0,0,0.25,0,0)"/> + <pattern id="elements-f07-el.svgpattern2169" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2664" patternTransform="matrix(0.193713,0.134586,-0.134586,0.193713,0,0)"/> + <pattern id="elements-f07-el.svgpattern2166" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2666" patternTransform="matrix(3.602221e-2,-6.290160e-2,6.290160e-2,3.602221e-2,0,0)"/> + <pattern id="elements-f07-el.svgpattern2650" width="24" patternUnits="userSpaceOnUse" patternTransform="matrix(0.25,0,0,0.25,0,0)" height="24"> + <path id="elements-f07-el.svgpath2649" d="M-0.25,24.25l24.5-24.5" stroke="#000" stroke-linecap="butt" stroke-width="1.25" fill="none"/> + </pattern> + <pattern id="elements-f07-el.svgpattern2655" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2650" patternTransform="matrix(0.234375,0.000000,0.000000,0.234375,0,0)"/> + <pattern id="elements-f07-el.svgpattern2664" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2655" patternTransform="matrix(0.193713,0.134586,-0.134586,0.193713,0,0)"/> + <pattern id="elements-f07-el.svgpattern2666" inkscape:collect="always" xlink:href="#elements-f07-el.svgpattern2664" patternTransform="matrix(3.602221e-2,-6.290160e-2,6.290160e-2,3.602221e-2,0,0)"/> + </defs> + <rect id="elements-f07-el.svgrect2067" transform="translate(10, 1385.7686491999998) " height="100.99" width="305.16" stroke="#000" y="0.24922" x="7.5753" stroke-width="0.49832" fill="none"/> + <rect id="elements-f07-el.svgrect2652" transform="translate(10, 1385.7686491999998) " height="54.241" width="304.83" y="0.83906" x="7.4039" fill="url(#elements-f07-el.svgpattern2172)"/> + <rect id="elements-f07-el.svgrect2663" transform="translate(10, 1385.7686491999998) " height="54.241" width="304.83" y="23.339" x="7.4039" fill="url(#elements-f07-el.svgpattern2169)"/> + <rect id="elements-f07-el.svgrect2665" transform="translate(10, 1385.7686491999998) " height="54.241" width="304.83" y="46.636" x="7.4039" fill="url(#elements-f07-el.svgpattern2166)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="1511.2607291999998" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="1511.2607291999998" x="10">Τιμή</tspan> + </text> + <rect id="d0e151" display="none" height="1000px" width="288" y="1516.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e151"/> + </flowRegion> + <flowDiv xml:space="preserve">Τιμή ΞµΞ―Ξ½Ξ±ΞΉ Ο€Οσο ΟƒΞΊΞΏΟ„ΞµΞΉΞ½Ο Ξ® Ο†Ο‰Ο„ΞµΞΉΞ½Ο Ξ΄ΞµΞ―Ο‡Ξ½ΞµΞΉ κάτι. Πετυχαίνουμε αλλαγΞΟ‚ στην τιμή σε Ο‡ΟΟΞΌΞ± Ο€ΟοσθΞτοντας ΞΌΞ±ΟΟΞΏ Ξ® άσπΟΞΏ στο Ο‡ΟΟΞΌΞ±. Ξ— φωτοσκίαση Ο‡Οησιμοποιεί τιμΞΟ‚ στη σχεδίαση ΞΌΞµ Ξ΄ΟαματικΞΟ‚ αντιθΞσεις φωτΟΟ‚ ΞΊΞ±ΞΉ σκΟτους σε ΞΌΞΉΞ± ΟƒΟνθεση. </flowDiv> + </flowRoot> + <defs id="elements-f08-el.svgdefs3"> + <linearGradient id="elements-f08-el.svglinearGradient2224" y2="5730.5" gradientUnits="userSpaceOnUse" y1="5730.5" gradientTransform="matrix(3.700601,0.000000,0.000000,0.270226,0.000000,-1539.931)" x2="81.905" x1="4.2527" inkscape:collect="always"> + <stop id="elements-f08-el.svgstop1081" stop-color="#7d4ad2" stop-opacity="0.532296" offset="0"/> + <stop id="elements-f08-el.svgstop1082" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="elements-f08-el.svglinearGradient2227" y2="5808.1" gradientUnits="userSpaceOnUse" y1="5808.1" gradientTransform="matrix(3.700601,0.000000,0.000000,0.270226,0.000000,-1539.931)" x2="81.905" x1="4.2527" inkscape:collect="always"> + <stop id="elements-f08-el.svgstop1078" stop-color="#ff2ee1" stop-opacity="0.529229" offset="0"/> + <stop id="elements-f08-el.svgstop1079" stop-color="#000" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="elements-f08-el.svglinearGradient2230" y2="5885.8" gradientUnits="userSpaceOnUse" y1="5885.8" gradientTransform="matrix(3.700601,0.000000,0.000000,0.270226,0.000000,-1539.931)" x2="81.905" x1="4.2527" inkscape:collect="always"> + <stop id="elements-f08-el.svgstop1057" stop-color="#0082ab" stop-opacity="0" offset="0"/> + <stop id="elements-f08-el.svgstop1058" stop-color="#000" offset="1"/> + </linearGradient> + <linearGradient id="elements-f08-el.svglinearGradient2233" y2="6002.3" gradientUnits="userSpaceOnUse" y1="6002.3" gradientTransform="matrix(3.700601,0.000000,0.000000,0.270226,0.000000,-1539.931)" x2="81.905" x1="4.2527" inkscape:collect="always"> + <stop id="elements-f08-el.svgstop842" stop-color="#0082ab" offset="0"/> + <stop id="elements-f08-el.svgstop1842" stop-color="#0082ab" stop-opacity="0.5" offset="0.35"/> + <stop id="elements-f08-el.svgstop1843" stop-color="#0082ab" stop-opacity="0.22" offset="0.63"/> + <stop id="elements-f08-el.svgstop843" stop-color="#0082ab" stop-opacity="0" offset="1"/> + </linearGradient> + </defs> + <rect id="elements-f08-el.svgrect2122" transform="translate(10, 1574.7471371999998) " height="100.99" width="305.16" stroke="#000" y="0.24881" x="7.5753" stroke-width="0.49832" fill="none"/> + <rect id="elements-f08-el.svgrect2151" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1574.7471371999998) " height="20.984" width="287.36" y="71.546" x="15.738" fill="url(#elements-f08-el.svglinearGradient2233)"/> + <rect id="elements-f08-el.svgrect2152" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1574.7471371999998) " height="20.984" width="287.36" y="50.563" x="15.738" fill="url(#elements-f08-el.svglinearGradient2230)"/> + <rect id="elements-f08-el.svgrect2156" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1574.7471371999998) " height="20.984" width="287.36" y="29.579" x="15.738" fill="url(#elements-f08-el.svglinearGradient2227)"/> + <rect id="elements-f08-el.svgrect2157" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1574.7471371999998) " height="20.984" width="287.36" y="8.5956" x="15.738" fill="url(#elements-f08-el.svglinearGradient2224)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1701.0392171999997" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1701.0392171999997" x="10">Ξ‘ΟΟ‡ΞΟ‚ σχεδίασης</tspan> + </text> + <rect id="d0e171" display="none" height="1000px" width="288" y="1706.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e171"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ Ξ±ΟΟ‡ΞΟ‚ Ο‡ΟησιμοποιοΟΞ½ τα στοιχεία σχεδίασης Ξ³ΞΉΞ± δημιουΟΞ³Ξ―Ξ± ΞΌΞΉΞ±Ο‚ ΟƒΟνθεσης.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="1746.9456241999997" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="1746.9456241999997" x="10">ΙσοΟΟοπία</tspan> + </text> + <rect id="d0e179" display="none" height="1000px" width="288" y="1752.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e179"/> + </flowRegion> + <flowDiv xml:space="preserve">ΙσοΟΟοπία ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞΉΞ± αίσθηση οπτικής ΞΉΟƒΟτητας στο σχήμα, ΞΌΞΏΟφή, τιμή, Ο‡ΟΟΞΌΞ± ΞΊΞ». Ξ— ισοΟΟοπία μποΟΞµΞ― Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ συμμετΟΞΉΞΊΞ® Ξ® ΞΏΞΌΞΏΞΉΟΞΌΞΏΟφα ισοΟΟοπημΞΞ½Ξ· Ξ® Ξ±ΟƒΟΞΌΞΌΞµΟ„ΟΞ· ΞΊΞ±ΞΉ Ξ±Ξ½ΞΏΞΌΞΏΞΉΟΞΌΞΏΟφα ισοΟΟοπημΞΞ½Ξ·. Αντικείμενα, τιμΞΟ‚, Ο‡ΟΟματα, Ο…Ο†ΞΟ‚, σχήματα, ΞΌΞΏΟΟ†ΞΟ‚, ΞΊΞ»., μποΟΞΏΟΞ½ Ξ½Ξ± Ο‡ΟησιμοποιηθοΟΞ½ στη δημιουΟΞ³Ξ―Ξ± ισοΟΟοπίας σε ΞΌΞΉΞ± ΟƒΟνθεση.</flowDiv> + </flowRoot> + <rect id="elements-f09-el.svgrect2170" transform="translate(10, 1831.7081251999996) " height="100.99" width="305.16" stroke="#000" y="0.24922" x="7.5753" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="none"/> + <path id="elements-f09-el.svgrect2562" d="M160.08,0.2492v100.99-100.99z" sodipodi:nodetypes="ccc" transform="translate(10, 1831.7081251999996) " stroke="#000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49831799" fill="none"/> + <path id="elements-f09-el.svgpath2564" d="m55.207,1809.3c0,11.466-9.2954,20.762-20.762,20.762-11.466,0-20.762-9.2954-20.762-20.762,0-11.466,9.2954-20.762,20.762-20.762,11.466,0,20.762,9.2954,20.762,20.762z" fill-rule="evenodd" transform="translate(10, 1831.7081251999996) matrix(0.823529,0.000000,0.000000,0.823529,65.31271,-1470.539)" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <path id="elements-f09-el.svgpath2565" d="m55.207,1809.3c0,11.466-9.2954,20.762-20.762,20.762-11.466,0-20.762-9.2954-20.762-20.762,0-11.466,9.2954-20.762,20.762-20.762,11.466,0,20.762,9.2954,20.762,20.762z" fill-rule="evenodd" transform="translate(10, 1831.7081251999996) matrix(1.681818,0.000000,0.000000,1.681818,-14.99221,-3007.499)" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <path id="elements-f09-el.svgpath2566" d="m55.207,1809.3c0,11.466-9.2954,20.762-20.762,20.762-11.466,0-20.762-9.2954-20.762-20.762,0-11.466,9.2954-20.762,20.762-20.762,11.466,0,20.762,9.2954,20.762,20.762z" fill-rule="evenodd" transform="translate(10, 1831.7081251999996) matrix(0.823529,0.000000,0.000000,0.823529,240.2315,-1414.138)" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <path id="elements-f09-el.svgpath2567" d="m55.207,1809.3c0,11.466-9.2954,20.762-20.762,20.762-11.466,0-20.762-9.2954-20.762-20.762,0-11.466,9.2954-20.762,20.762-20.762,11.466,0,20.762,9.2954,20.762,20.762z" fill-rule="evenodd" transform="translate(10, 1831.7081251999996) matrix(1.681818,0.000000,0.000000,1.681818,163.0391,-3001.225)" xmlns:cc="http://creativecommons.org/ns#" fill="#000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="1957.2002451999997" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="1957.2002451999997" x="10">Αντίθεση</tspan> + </text> + <rect id="d0e198" display="none" height="1000px" width="288" y="1962.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e198"/> + </flowRegion> + <flowDiv xml:space="preserve">Αντίθεση ΞµΞ―Ξ½Ξ±ΞΉ Ξ· παΟάθεση αντιτιθΞμενων στοιχείων</flowDiv> + </flowRoot> + <rect id="elements-f10-el.svgrect2578" fill-rule="evenodd" transform="translate(10, 1988.8760263999998) " height="100.99" width="152.52" stroke="#000" y="0.24905" x="159.95" stroke-width="0.49832" fill="#000"/> + <rect id="elements-f10-el.svgrect2579" fill-rule="evenodd" transform="translate(10, 1988.8760263999998) " height="58.64" width="88.56" y="21.426" x="191.93" fill="#FFF"/> + <rect id="elements-f10-el.svgrect2574" fill-rule="evenodd" transform="translate(10, 1988.8760263999998) " height="100.99" width="152.52" stroke="#000" y="0.24905" x="7.4506" stroke-width="0.49832" fill="#c8c8c8"/> + <rect id="elements-f10-el.svgrect2576" fill-rule="evenodd" transform="translate(10, 1988.8760263999998) " height="58.64" width="88.56" y="21.426" x="39.433" fill="#d4d4d4"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="2114.3681063999998" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="2114.3681063999998" x="10">Ξμφαση</tspan> + </text> + <rect id="d0e217" display="none" height="1000px" width="288" y="2119.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e217"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξμφαση Ο‡Οησιμοποιείται Οστε κάποια ΞΌΞΟΞ· των καλλιτεχνικΟΞ½ ΞµΟγασιΟΞ½ Ξ½Ξ± ξεχωΟΞ―Ξ¶ΞΏΟ…Ξ½ ΞΊΞ±ΞΉ Ξ½Ξ± Ο„ΟΞ±Ξ²ΞΏΟΞ½ την Ο€Οοσοχή σας. Το ΞΊΞΞ½Ο„ΟΞΏ του ενδιαφΞΟοντος Ξ® σημείο εστίασης ΞµΞ―Ξ½Ξ±ΞΉ ΞΏ ΞΈΞση που ΞΌΞΉΞ± δουλειά Ξλκει το μάτι σας Ο€ΟΟτα.</flowDiv> + </flowRoot> + <rect id="elements-f11-el.svgrect2584" fill-rule="evenodd" transform="translate(10, 2177.8545144) " height="100.99" width="152.52" stroke="#000" y="0.24905" x="159.95" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="#c8c8c8"/> + <rect id="elements-f11-el.svgrect2585" fill-rule="evenodd" transform="translate(10, 2177.8545144) " height="58.64" width="88.56" y="21.426" x="191.93" xmlns:cc="http://creativecommons.org/ns#" fill="#d4d4d4"/> + <rect id="elements-f11-el.svgrect2582" fill-rule="evenodd" transform="translate(10, 2177.8545144) " height="100.99" width="152.52" stroke="#000" y="0.24905" x="7.4506" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="#c8c8c8"/> + <rect id="elements-f11-el.svgrect2583" fill-rule="evenodd" transform="translate(10, 2177.8545144) " height="58.64" width="88.56" y="21.426" x="39.433" xmlns:cc="http://creativecommons.org/ns#" fill="#d4d4d4"/> + <path id="elements-f11-el.svgpath2587" d="m68.891,2183c0,6.2545-5.0702,11.325-11.325,11.325-6.2544,0-11.325-5.0702-11.325-11.325,0-6.2544,5.0702-11.325,11.325-11.325,6.2544,0,11.325,5.0702,11.325,11.325z" fill-rule="evenodd" transform="translate(10, 2177.8545144) translate(210.2272,-2115.132)" xmlns:cc="http://creativecommons.org/ns#" fill="#F00"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="2303.3465944" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="2303.3465944" x="10">Αναλογία</tspan> + </text> + <rect id="d0e236" display="none" height="1000px" width="288" y="2308.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e236"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— αναλογία πεΟΞΉΞ³Οάφει το ΞΌΞΞ³ΞµΞΈΞΏΟ‚, τοποθεσία Ξ® ποσΟτητα ΞµΞ½ΟΟ‚ Ο€Οάγματος συγκΟΞΉΞ½ΟΞΌΞµΞ½ΞΏΟ… ΞΌΞµ ΞΞ½Ξ± άλλο.</flowDiv> + </flowRoot> + <defs id="elements-f12-el.svgdefs3"> + <linearGradient id="elements-f12-el.svglinearGradient1516"> + <stop id="elements-f12-el.svgstop1517" stop-color="#f7f7f7" stop-opacity="0.0000000" offset="0"/> + <stop id="elements-f12-el.svgstop1518" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="elements-f12-el.svglinearGradient1752"> + <stop id="elements-f12-el.svgstop1753" stop-color="#556d4a" offset="0"/> + <stop id="elements-f12-el.svgstop1754" stop-color="#778670" stop-opacity="0.97175139" offset="0.64778"/> + <stop id="elements-f12-el.svgstop1755" stop-color="#8b9f82" offset="1"/> + </linearGradient> + <linearGradient id="elements-f12-el.svglinearGradient1514"> + <stop id="elements-f12-el.svgstop1515" stop-color="#484848" offset="0"/> + <stop id="elements-f12-el.svgstop1631" stop-color="#929292" offset="0.68667"/> + <stop id="elements-f12-el.svgstop1516" stop-color="#d8d8d8" offset="1"/> + </linearGradient> + <linearGradient id="elements-f12-el.svglinearGradient1756"> + <stop id="elements-f12-el.svgstop1757" stop-color="#495942" offset="0"/> + <stop id="elements-f12-el.svgstop1758" stop-color="#778670" stop-opacity="0.97254902" offset="0.32111"/> + <stop id="elements-f12-el.svgstop1759" stop-color="#a9c19e" offset="1"/> + </linearGradient> + <linearGradient id="elements-f12-el.svglinearGradient1806"> + <stop id="elements-f12-el.svgstop1807" stop-color="#000" stop-opacity="0.40784314" offset="0"/> + <stop id="elements-f12-el.svgstop3276" stop-color="#000" stop-opacity="0.079096042" offset="0.64778"/> + <stop id="elements-f12-el.svgstop1808" stop-color="#000" stop-opacity="0.0000000" offset="1"/> + </linearGradient> + <radialGradient id="elements-f12-el.svgradialGradient2163" fx="24.82" fy="130.39" cx="24.826" xlink:href="#elements-f12-el.svglinearGradient1806" gradientUnits="userSpaceOnUse" cy="176.56" r="51.668" inkscape:collect="always"/> + <radialGradient id="elements-f12-el.svgradialGradient2165" fx="41.757" fy="144.16" cx="24.826" xlink:href="#elements-f12-el.svglinearGradient1806" gradientUnits="userSpaceOnUse" cy="176.56" r="51.668" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2167" y2="565.31" xlink:href="#elements-f12-el.svglinearGradient1756" gradientUnits="userSpaceOnUse" y1="705.08" gradientTransform="scale(1.883162,0.531022)" x2="181.28" x1="112.6" inkscape:collect="always"/> + <radialGradient id="elements-f12-el.svgradialGradient2169" fx="453.19" fy="224.16" cx="451.74" xlink:href="#elements-f12-el.svglinearGradient1514" gradientUnits="userSpaceOnUse" cy="224.67" r="25.301" gradientTransform="scale(0.579628,1.725246)" inkscape:collect="always"/> + <radialGradient id="elements-f12-el.svgradialGradient2171" fx="629.09" fy="224.52" cx="629.56" xlink:href="#elements-f12-el.svglinearGradient1514" gradientUnits="userSpaceOnUse" cy="225.72" r="14.903" gradientTransform="scale(0.562112,1.779006)" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2173" y2="605.24" xlink:href="#elements-f12-el.svglinearGradient1756" gradientUnits="userSpaceOnUse" y1="297.57" gradientTransform="scale(1.205886,0.829266)" x2="326.31" x1="287.56" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2175" y2="74.428" xlink:href="#elements-f12-el.svglinearGradient1752" gradientUnits="userSpaceOnUse" y1="49.943" gradientTransform="scale(0.998217,1.001787)" x2="131.6" x1="88.666" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2177" y2="336.11" xlink:href="#elements-f12-el.svglinearGradient1752" gradientUnits="userSpaceOnUse" y1="336.11" gradientTransform="scale(1.179368,0.847912)" x2="253.38" x1="187.35" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2179" y2="45.005" gradientUnits="userSpaceOnUse" y1="53.278" gradientTransform="scale(0.856613,1.167389)" x2="131.12" x1="122.69" inkscape:collect="always"> + <stop id="elements-f12-el.svgstop1627" stop-color="#FFF" stop-opacity="0.0000000" offset="0"/> + <stop id="elements-f12-el.svgstop1628" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="elements-f12-el.svglinearGradient2181" y2="64.209" xlink:href="#elements-f12-el.svglinearGradient1806" gradientUnits="userSpaceOnUse" y1="77.593" gradientTransform="scale(0.731690,1.366700)" x2="130.81" x1="129.26" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2183" y2="65.691" xlink:href="#elements-f12-el.svglinearGradient1806" gradientUnits="userSpaceOnUse" y1="77.259" gradientTransform="scale(0.726403,1.376647)" x2="172.7" x1="172.47" inkscape:collect="always"/> + <radialGradient id="elements-f12-el.svgradialGradient2185" fx="30.803" fy="141.29" cx="24.826" xlink:href="#elements-f12-el.svglinearGradient1806" gradientUnits="userSpaceOnUse" cy="176.56" r="51.668" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2187" y2="84.428" xlink:href="#elements-f12-el.svglinearGradient1516" gradientUnits="userSpaceOnUse" y1="97.763" gradientTransform="scale(0.958107,1.043724)" x2="162.73" x1="156.13" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2189" y2="103.88" xlink:href="#elements-f12-el.svglinearGradient1516" gradientUnits="userSpaceOnUse" y1="135.07" gradientTransform="scale(0.978488,1.021985)" x2="115.21" x1="110.17" inkscape:collect="always"/> + <linearGradient id="elements-f12-el.svglinearGradient2191" y2="91.336" xlink:href="#elements-f12-el.svglinearGradient1516" gradientUnits="userSpaceOnUse" y1="123.45" gradientTransform="scale(1.035315,0.965890)" x2="130.72" x1="121.02" inkscape:collect="always"/> + <radialGradient id="elements-f12-el.svgradialGradient2193" cx="64.959" gradientUnits="userSpaceOnUse" cy="71.937" r="34.085" gradientTransform="scale(0.945443,1.057705)" inkscape:collect="always"> + <stop id="elements-f12-el.svgstop2729" stop-color="#f7f7f7" stop-opacity="0.0000000" offset="0"/> + <stop id="elements-f12-el.svgstop2731" stop-color="#fbfbfb" stop-opacity="0.073446326" offset="0.45062"/> + <stop id="elements-f12-el.svgstop2730" stop-color="#FFF" stop-opacity="0.78531075" offset="1"/> + </radialGradient> + <linearGradient id="elements-f12-el.svglinearGradient2195" y2="42.421" xlink:href="#elements-f12-el.svglinearGradient1516" gradientUnits="userSpaceOnUse" y1="74.473" gradientTransform="scale(0.946100,1.056971)" x2="54.702" x1="52.397" inkscape:collect="always"/> + </defs> + <rect id="elements-f12-el.svgrect2588" fill-rule="evenodd" transform="translate(10, 2345.5572394) " height="100.99" width="152.52" stroke="#000" y="1.658" x="159.95" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="#FFF"/> + <rect id="elements-f12-el.svgrect2590" fill-rule="evenodd" transform="translate(10, 2345.5572394) " height="100.99" width="152.52" stroke="#000" y="1.658" x="7.4506" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="#FFF"/> + <g id="elements-f12-el.svgg2952" xmlns:cc="http://creativecommons.org/ns#" fill-rule="evenodd" transform="translate(10, 2345.5572394) matrix(0.519885,0.000000,0.000000,0.519885,27.07745,-1681.325)"> + <path id="elements-f12-el.svgpath3277" d="m82.055,175.84c0,31.007-25.136,56.143-56.143,56.143s-56.143-25.136-56.143-56.143,25.136-56.143,56.143-56.143,56.143,25.136,56.143,56.143z" fill-opacity="0.75" transform="matrix(0.966739,0.000000,0.000000,0.233544,113.9646,3337.076)" stroke-width="1pt" fill="url(#elements-f12-el.svgradialGradient2163)"/> + <path id="elements-f12-el.svgpath1809" d="m82.055,175.84c0,31.007-25.136,56.143-56.143,56.143s-56.143-25.136-56.143-56.143,25.136-56.143,56.143-56.143,56.143,25.136,56.143,56.143z" fill-opacity="0.75" transform="matrix(1.080927,0.000000,0.000000,0.286993,162.8851,3326.394)" stroke-width="1pt" fill="url(#elements-f12-el.svgradialGradient2165)"/> + <g id="elements-f12-el.svgg1682" transform="matrix(1.201983,0.000000,0.000000,1.201983,73.32285,3220.770)"> + <path id="elements-f12-el.svgpath1623" d="M298.95,267.7c0.1-1.13,2.05-2.51,3.01-1.83l15.29,10.75c1.45,1.01,2.1,3,2.19,4.72l1.37,27.27c0.07,1.5-2.41,3.26-3.83,2.62l-18.58-8.39c-1.77-0.8-2.35-3.37-2.18-5.25l2.73-29.89z" sodipodi:nodetypes="czzzzzzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#586051"/> + <path id="elements-f12-el.svgpath1531" d="M368.79,386.45l1.29,23.74-70.24-9.67c-2.21-0.3-1.35,11.79-10.68,17.31-7.16,4.23-15.15,4.47-20.87,0.51l-33.08-22.91-81.04-5.68c-3.58-0.25-1.54,14.15-12.1,21.72-40.79,19.51-55.309-31-44.158-38.57l-19.198-13.8,138.92-1.44,41.03-41.75,108.69,37.43,1.44,33.11z" sodipodi:nodetypes="cczzzczccccccc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke="#000" stroke-width="1.9235025pt" fill="#393939"/> + <path id="elements-f12-el.svgpath1545" d="M316.47,281.56l0.17,16.96c0.01,1.21-1.59,2.28-2.8,2.31l-5.6,0.13c-1.24,0.03-3.05-0.82-3.11-2.06l-0.81-16.71c-0.06-1.32,1.48-2.73,2.8-2.81l6.23-0.39c1.35-0.08,3.11,1.22,3.12,2.57z" sodipodi:nodetypes="czzzzzzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#292e23"/> + <path id="elements-f12-el.svgpath1624" d="M322.3,279.99l-1.01,36.73,34.03,11.46-3.37-7.42,0.34-6.74,3.71-2.69,8.42,2.69-1.35-7.75-14.49-9.09v23.58h-2.69l-16.85-9.43-2.02-6.74-0.34-16.18,4.38-2.02-8.76-6.4z" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#a5ae9d"/> + <path id="elements-f12-el.svgpath2869" d="M85.571,349.63l2.545-39.7,8.652-8.65,123.68-12.73,24.43,3.56,124.62,52-1.15,5.92-78.18,19.45-3.05-34.61-7.12-9.67-24.44-5.6-20.86,38.17-152.18-0.51,3.054-7.63z" sodipodi:nodetypes="cccccccccccccc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2167)"/> + <path id="elements-f12-el.svgpath2870" d="M263.26,431.93c-6.98,1.18-14.53,1.24-22.46,0.15-5.76-7.21-13.05-21.33-11.79-48.45,1.21-26.05,9.72-39.05,16.88-45.2,4.65-3.63,18.19-1.47,20.36,0,5.41,4.71,14.93,28.96,14.25,49.88-0.67,20.56-11.7,41.36-17.24,43.62z" sodipodi:nodetypes="cczcczc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#8b8b8b"/> + <path id="elements-f12-el.svgpath1495" d="M263.2,339.62c-7.62,0.97-13.72,20.57-14.25,43.26-0.53,23.06,7.06,45,14.31,45.43,6.89,0.4,16.78-19.82,16.95-41.44,0.17-21.98-9.04-48.26-17.01-47.25z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#5b5b5b"/> + <path id="elements-f12-el.svgpath1494" d="M255.56,386.27c0-9.33,3.8-27.55,10.18-27.99,6.74-0.47,8.66,20.19,8.66,29.52s-4.08,25.28-8.66,26.47c-4.91,1.27-10.18-18.67-10.18-28z" fill-opacity="0.75000000" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svgradialGradient2169)"/> + <path id="elements-f12-el.svgpath2873" d="M260.46,366.29c2.1,0.36,8.28,6.24,7.92,21.96-0.36,15.35-5.82,16.55-7.92,16.19s-4.68-11.99-4.68-18.35,2.58-20.16,4.68-19.8z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#d9d9d9"/> + <path id="elements-f12-el.svgpath1506" d="M354.64,427.87c-4.16,0.71-8.67,0.75-13.4,0.09-3.45-4.37-7.79-12.92-7.04-29.35,0.72-15.78,5.8-23.65,10.07-27.38,2.78-2.2,10.86-0.89,12.16,0,3.22,2.86,8.91,17.54,8.5,30.21-0.4,12.46-6.99,25.06-10.29,26.43z" sodipodi:nodetypes="cczcczc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="0.60128736pt" fill="#707070"/> + <path id="elements-f12-el.svgpath1505" d="M355.09,371.95c-4.34,0.59-7.82,12.46-8.12,26.21-0.3,13.97,4.03,27.25,8.16,27.51,3.92,0.25,9.55-12,9.65-25.1,0.1-13.31-5.15-29.23-9.69-28.62z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#545454"/> + <path id="elements-f12-el.svgpath1504" d="M350.74,400.21c0-5.65,2.17-16.69,5.8-16.96,3.84-0.28,4.93,12.23,4.93,17.89,0,5.65-2.32,15.31-4.93,16.03-2.8,0.77-5.8-11.31-5.8-16.96z" fill-opacity="0.75000000" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svgradialGradient2171)"/> + <path id="elements-f12-el.svgpath1507" d="M353.53,388.11c1.2,0.22,4.72,3.78,4.51,13.3-0.2,9.3-3.31,10.02-4.51,9.81-1.2-0.22-2.66-7.27-2.66-11.12s1.46-12.21,2.66-11.99z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#b6b6b6"/> + <path id="elements-f12-el.svgpath2878" d="M88.431,312.31c0.129-2.55,3.218-4.8,5.758-5.04l124.16-11.51c3.25-0.31,7.96,2.49,7.92,5.75l-0.36,27.72c-0.05,3.82-3.73,8.55-7.56,8.63l-125.6,2.88c-2.998,0.07-5.55-4.2-5.398-7.2l1.08-21.23z" sodipodi:nodetypes="czzzzzzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#5f7161"/> + <path id="elements-f12-el.svgpath2879" d="M99.947,322.39c0.183-4.38,3.663-9.78,7.913-9.72,4.44,0.06,4.86,5.88,4.68,9s-2.58,9.78-6.65,9.72c-4.08-0.06-6.115-4.8-5.943-9z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#aeb89b"/> + <path id="elements-f12-el.svgpath2880" d="M194.6,316.27c0-5.61,4.44-11.14,9.18-11.52,4.91-0.39,9.19,4.65,9.53,9.18,0.36,4.71-1.92,13.11-8.45,13.68-6.36,0.55-10.26-5.55-10.26-11.34z" sodipodi:nodetypes="czzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#aeb89b"/> + <path id="elements-f12-el.svgpath2881" d="M234.19,340.98l4.07-41.74,9.16-4.07,122.15,50.89v42.25l-4.45-2.29,0.13-23.67-10.06-5.85c-3.61-2.1-7.23,5.66-7.82,9.8l-2.39,16.6-56.33-11.9-2.55-39.7-30.54-13.23c-9.58-4.15-22.39,33.3-21.37,22.91z" sodipodi:nodetypes="ccccccczzccczz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2173)"/> + <path id="elements-f12-el.svgpath2882" d="M230.12,364.39l-7.13-1.53-148.62-1.53,1.018-10.18,144.55-3.05,12.72,1.02,10.69-28.5c2.34-6.23,12.77-9.36,18.83-6.62l15.78,7.13c7.38,3.33,12.71,12.28,13.23,20.35l1.53,23.42,25.96,7.12-2.04,6.62-28.5-5.09-2.04-27.49c-0.46-6.22-1.2-15.33-7.12-17.3l-13.74-4.58c-4.84-1.61-11.69,2.78-13.24,7.63l-10.69,33.6-11.19-1.02z" sodipodi:nodetypes="cccccczzzzcccczzzzcc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#4d4d4d"/> + <path id="elements-f12-el.svgpath1533" d="M325.65,309.57l16.14,0.22,0.72,9.36,3.96,1.8c0.7,0.32,1.44-1.03,1.44-1.8l0.03-17.49c0.01-2.32-2.11-4.33-3.96-5.75l-16.62-12.87c-1.46-1.13-5.51-0.75-5.4,1.08l1.17,19.69c0.12,2.09,0.42,5.73,2.52,5.76z" sodipodi:nodetypes="ccczzzzzzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#505947"/> + <path id="elements-f12-el.svgpath1535" d="M91.387,44.457l-1.999,15.67-0.526,3.894,30.778,10.309-2.35-14.139-25.195-16.744-0.708,1.01zm0.406,3.353c0.01-0.418,0.662-0.965,1.015-0.74l5.634,3.601c0.533,0.341,0.809,1.053,0.879,1.682l1.119,9.969c0.06,0.549-0.776,1.25-1.289,1.047l-6.734-2.662c-0.643-0.255-0.908-1.183-0.891-1.875l0.267-11.022zm9.677,6.434c-0.06-0.576,0.91-1.388,1.38-1.053l6.37,4.52,1.29,2.042,0.59,6.334c0.05,0.532-0.29,1.624-0.78,1.401l-6.46-2.969c-0.73-0.336-1.49-1.033-1.57-1.832l-0.82-8.443zm10.42,6.097c-0.02-0.386,0.5-1.037,0.82-0.825l3.22,2.113c0.53,0.347,0.99,0.946,1.07,1.574l0.74,5.648c0.06,0.45-0.48,1.204-0.9,1.023l-3.67-1.602c-0.66-0.288-0.85-1.25-0.9-1.97l-0.38-5.961z" sodipodi:nodetypes="cccccccczzzzzzzzczcczzzzzczzzzzzzz" transform="translate(11.66552,18.45222)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2175)"/> + <path id="elements-f12-el.svgpath1534" d="M220.96,288.71l66.16-2.64,7.13-29.07,4.58,0.52-7.13,43.31,5.6,4.22-3.56,7.93-51.92-21.1-20.86-3.17z" sodipodi:nodetypes="ccccccccc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2177)"/> + <path id="elements-f12-el.svgpath1532" d="M189.56,286.04l3.24-7.92,24.11,11.52,72.34-1.44,6.84-30.59-2.52-3.24-102.21,14.75-10.8,18.36,9-1.44z" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#545b4d"/> + <path id="elements-f12-el.svgpath1529" d="M117.13,299.49l2.29-4.32c1.58-2.99,6.04-3.5,9.41-3.82l59.3-5.6c7.29-0.69,15.67-1.84,21.88,2.04,6.22,3.88,5.67,2.39,4.07,2.54l-96.95,9.16z" sodipodi:nodetypes="czzzzzc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#415b42"/> + <path id="elements-f12-el.svgpath1530" d="M365.19,306.19c1.5,1.1-0.11-6.52-1.62-7.61l-61.18-44.27c-3.56-2.58-8.24-4.59-12.59-3.96l-94.66,13.68c-3.71,0.53-6.35,5.6-6.81,8.26-0.49,2.79,4.3-2.71,7.71-3.17l97.53-12.95c1.59-0.21,0.59,3.97,2.16,4.32l3.24,0.72c0.94,0.21,1.73-2.01,2.52-1.44l63.7,46.42z" sodipodi:nodetypes="czzzzzzzzzzz" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#d6d6d6"/> + <path id="elements-f12-el.svgpath1544" d="M306.46,282.19l0.76,16.29,6.62,0.25,0.76-16.79-8.14,0.25z" fill-opacity="0.89528793" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#FFF"/> + <path id="elements-f12-el.svgpath1547" d="M311,300.26v2.25l-13.94-0.28,0.21,3.29,14.51-1.38h0.85v-0.82-3.06h-1.63z" sodipodi:nodetypes="ccccccccc" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.6250000"/> + <path id="elements-f12-el.svgpath1625" d="M101.8,54.873c-0.18-2.29,3.17,3.677,4.67,5.073,1.49,1.397,4.46,1.506,4.3,3.307l-0.3,3.342-8.03-3.709-0.64-8.013z" fill-opacity="0.75000000" sodipodi:nodetypes="czzccz" transform="translate(11.66552,18.45222)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2179)"/> + <path id="elements-f12-el.svgpath1632" d="M117.51,314.97c0.19-2.61,2.49-5.77,5.1-5.96l61.31-4.25c2.6-0.18,5.59,2.92,5.54,5.53l-0.43,21.29c-0.06,3.23-4.43,5.91-7.66,5.96l-59.61,0.85c-2.71,0.04-5.73-3.26-5.53-5.96l1.28-17.46z" sodipodi:nodetypes="czzzzzzzz" fill-opacity="0.62303662" transform="matrix(0.377833,-2.395712e-2,2.395712e-2,0.377833,-16.04194,-27.91078)" stroke-width="1.0000000pt" fill="#474747"/> + <path id="elements-f12-el.svgpath970" d="M88.814,111.37c-2.608,0.61-5.46,0.81-8.482,0.59-2.352-2.59-5.442-7.74-5.616-18.023-0.168-9.869,2.736-14.985,5.296-17.482,1.669-1.485,6.837-0.993,7.692-0.488,2.156,1.652,6.335,10.583,6.579,18.504,0.237,7.789-3.432,15.909-5.469,16.899z" sodipodi:nodetypes="cczcczc" transform="translate(5.000000,17.50000)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2181)"/> + <path id="elements-f12-el.svgpath1556" d="M123.21,107.85c-1.56,0.37-3.26,0.5-5.07,0.36-1.4-1.57-3.25-4.7-3.36-10.921-0.1-5.978,1.63-9.076,3.15-10.586,1-0.899,4.08-0.598,4.59-0.292,1.29,1.002,3.79,6.414,3.94,11.212,0.15,4.717-2.04,9.637-3.25,10.227z" sodipodi:nodetypes="cczcczc" transform="translate(5.000000,17.50000)" stroke-width="0.60128736pt" fill="url(#elements-f12-el.svglinearGradient2183)"/> + </g> + <path id="elements-f12-el.svgpath1714" d="m82.055,175.84c0,31.007-25.136,56.143-56.143,56.143s-56.143-25.136-56.143-56.143,25.136-56.143,56.143-56.143,56.143,25.136,56.143,56.143z" fill-opacity="0.75" transform="matrix(1.080927,0.000000,0.000000,0.286993,146.7630,3332.854)" stroke-width="1pt" fill="url(#elements-f12-el.svgradialGradient2185)"/> + </g> + <text id="elements-f12-el.svgtext1232" font-family="helvetica" xml:space="preserve" transform="translate(10, 2345.5572394) " font-size="5.1805081" y="109.55157" x="7.0871472" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt"><tspan id="elements-f12-el.svgtspan1233">Τυχαίο ΞΌΟ…Ομήγκι & 4x4</tspan></text> + <text id="elements-f12-el.svgtext1235" font-family="helvetica" xml:space="preserve" transform="translate(10, 2345.5572394) " font-size="1.2781800" y="111.84713" x="7.7085347" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0000000pt"><tspan id="elements-f12-el.svgtspan1236">ΕικΟΞ½Ξ± SVG που δημιουΟγήθηκε Ξ±Ο€Ο Ο„ΞΏΞ½ Andrew Fitzsimon</tspan><tspan id="elements-f12-el.svgtspan2442" y="113.44485" x="7.7085347" role="line">Ξ ΟοσφοΟΞ¬ της βιβλιοθήκης Open Clip Art</tspan><tspan id="elements-f12-el.svgtspan2444" y="115.04258" x="7.7085347" role="line">http://www.openclipart.org/</tspan><tspan id="elements-f12-el.svgtspan2950" y="116.64030" x="7.7085347" sodipodi:role="line"/></text> + <g id="elements-f12-el.svgg2864" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10, 2345.5572394) matrix(1.120145,0.000000,0.000000,1.120145,-199.5482,-2562.726)"> + <path id="elements-f12-el.svgpath924" d="M147.45,91.908l-16.76-7.699,28.54-4.076,2.26,3.17" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke="#000" stroke-width="4.5308385" fill="none"/> + <path id="elements-f12-el.svgpath923" d="M155.46,108.55l4.98,18.12,14.49-24.46" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke="#000" stroke-width="4.5308385" fill="none"/> + <path id="elements-f12-el.svgpath909" d="M97.069,145.26s-17.933-7.68-25.939,4.81c-8.005,12.49-10.247,28.82-4.163,35.22,6.085,6.41,25.939,1.92,30.102-6.4,4.161-8.33,8.321-25.3,6.401-29.46-1.92-4.17-6.401-4.17-6.401-4.17z" fill-rule="evenodd" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt" fill="#7c5a08"/> + <path id="elements-f12-el.svgpath1569" d="M142.42,138.79l-0.53,0.11-15.21,3.31-4.77-5.9-3.23,2.96,7.25,5.42,0.41,0.22,0.45-0.11,15.07-3.28,18.6,12.4,0.39,0.25,0.5-0.06,21.72-2.94-0.11-0.95-21.47,1.31-18.63-12.43-0.44-0.31z" fill-rule="evenodd" sodipodi:nodetypes="ccccccccccccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath1568" d="M85.38,67.643l-1.952,4.074,0.372,9.661,0.024,0.396,0.256,0.279,8.636,9.568c-0.003,0.395-0.046,5.802-0.046,11.709,0,3.06,0.011,6.15,0.046,8.52,0.018,1.19,0.038,2.18,0.07,2.93,0.016,0.38,0.025,0.69,0.047,0.94,0.011,0.12,0.029,0.24,0.046,0.34,0.017,0.11-0.001,0.17,0.14,0.45,0.081,0.16,0.136,0.24,0.256,0.44s0.268,0.47,0.466,0.79c0.396,0.64,0.942,1.52,1.583,2.54,1.28,2.04,2.95,4.7,4.609,7.33,3.317,5.26,6.587,10.41,6.587,10.41l1.44,1.13s-2.89-7.44-6.21-12.7c-1.66-2.63-3.332-5.27-4.611-7.31-0.639-1.02-1.167-1.91-1.559-2.54-0.196-0.32-0.376-0.56-0.489-0.75-0.069-0.11-0.063-0.13-0.093-0.18-0.005-0.04-0.018-0.08-0.024-0.14-0.016-0.19-0.031-0.46-0.046-0.82-0.031-0.71-0.052-1.71-0.07-2.88-0.035-2.36-0.047-5.45-0.047-8.5,0-6.108,0.047-12.128,0.047-12.128v-0.419l-0.279-0.303-8.66-9.544-0.539-13.293z" fill-rule="evenodd" sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" transform="matrix(0.372559,0.000000,0.000000,0.372559,189.9867,2308.318)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath1567" d="M109.23,147.27l-1.13,9.51-0.05,0.17v0.19,10.82l-10.541,22.61-0.084,0.19-0.028,0.22-2.502,28.56v0.28l0.111,0.31,5.644,14.26,1.94,1.77-5.109-16.7,2.447-28,10.542-22.69,0.14-0.25v-0.28-10.93l3.33-10.68-4.71,0.64z" fill-rule="evenodd" sodipodi:nodetypes="ccccccccccccccccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath919" d="M129.57,103.15c0.1,3.86,0.38,4.98,1.92,6.73l9.61,10.89c1.53,1.73,4.09,2.07,6.89,0.8,2.99-1.37,9.47-9.66,10.72-14.25,1.28-4.69,2.34-12.624,0.16-14.254-2.07-1.554-9.53-3.935-15.21-1.121-5.74,2.845-14.18,7.195-14.09,11.205z" fill-rule="evenodd" sodipodi:nodetypes="czzzzzzz" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt"/> + <path id="elements-f12-el.svgpath1143" d="M134.56,103.96c-1.39-9.251,20.81-17.574,24.05-9.713,3.23,7.863-6.71,21.963-11.1,23.583s-11.64-5.14-12.95-13.87z" fill-opacity="0.75000000" sodipodi:nodetypes="cczz" fill-rule="evenodd" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2187)"/> + <path id="elements-f12-el.svgpath1571" d="M63.391,136.26l-0.501,0.5-18.324,18.33-12.556,5.11-0.04,0.89,13.597-3.61,0.334-0.08,0.25-0.26,18.046-18.07,34.178,5.27,0.584-2.48-34.873-5.43-0.695-0.17z" fill-rule="evenodd" sodipodi:nodetypes="ccccccccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath1572" d="M51.299,101.69l-0.81,0.43,6.339,10.4,0.306,0.5,0.556,0.11,14.932,2.69,0.139,0.03h0.112l23.941-0.41-1.669,15.76-0.111,1.09,1.057,0.27,8.589,2.28,2.48-3.15-9.373-1.32,1.696-16.1,0.167-1.45-1.446,0.03-25.276,0.44-14.237-2.58-7.392-9.02z" fill-rule="evenodd" sodipodi:nodetypes="ccccccccccccccccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath1570" d="M123.72,70.14l-0.52,0.111,0.47,8.787v0.055l-2.22,13.875-0.03,0.112-3.56,13.76-9.42,15.69-0.28,0.47,0.17,0.56,1.13,6.57,4.26-0.76-2.78-6.04,9.2-15.35,0.11-0.16,0.03-0.17,3.64-14.042v-0.056-0.055l2.28-14.042,0.03-0.139-0.03-0.139-2.48-9.037z" fill-rule="evenodd" sodipodi:nodetypes="ccccccccccccccccccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="2.8750000" fill="#3e3e3e"/> + <path id="elements-f12-el.svgpath925" d="M159.23,101.1s5.44-0.68,5.89-7.248" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke="#000" stroke-width="2.1321594pt" fill="none"/> + <path id="elements-f12-el.svgpath926" d="M151.99,91.135s0.45-3.623,8.15-2.717" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke="#000" stroke-width="2.1321594pt" fill="none"/> + <path id="elements-f12-el.svgpath911" d="M89.283,144.02c1.308-1.63,10.028-4.84,11.947-4.2,1.92,0.64,0.79-8.65,9.44-10.89,6.38-4.73,3.34-9.35,6.51-13.2,0.91-2.26,8.2-8.47,14.17-6.69,6.11,1.82,9.91,11.57,6.07,17.65s-6.73,4.8-6.73,4.8,1.28,4.17-6.08,6.41c-7.37,2.24-6.73,6.72-6.73,6.72s-4.8,5.77-9.92,4.49c-5.13-1.28-3.52,3.71-4.66,5.02l-14.017-10.11z" fill-rule="evenodd" sodipodi:nodetypes="cccczccccccc" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt" fill="#3c2b00"/> + <path id="elements-f12-el.svgpath1730" d="M104.63,140.76c-2.94-3.6,4.74-12.92,10.63-8.34,5.88,4.58,3.6,12.59-1.31,13.9-4.9,1.31-6.31-1.88-9.32-5.56z" fill-opacity="0.75000000" sodipodi:nodetypes="cccz" fill-rule="evenodd" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2189)"/> + <path id="elements-f12-el.svgpath1733" d="M117.87,120.81c-1.28-2.45,0.66-5.64,2.95-7.35,2.29-1.72,8.14-4.15,10.79-2.95,2.64,1.2,5.58,7.2,5.07,10.14-0.52,2.94-5.05,7.49-8.18,7.52s-9.35-4.9-10.63-7.36z" fill-opacity="0.75000000" sodipodi:nodetypes="czzzzz" fill-rule="evenodd" transform="matrix(0.311908,0.000000,0.000000,0.311908,184.8265,2289.170)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2191)"/> + <path id="elements-f12-el.svgpath2381" d="M43.043,81.71s-5.562,15.032,0.059,19.91c5.445,4.72,19.409,6.16,27.361-10.861,7.951-17.021-18.303-32.734-27.42-9.049z" fill-opacity="0.75000000" sodipodi:nodetypes="czzc" fill-rule="evenodd" transform="matrix(0.372559,0.000000,0.000000,0.372559,189.9867,2308.318)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svgradialGradient2193)"/> + <path id="elements-f12-el.svgpath910" d="M58.62,74.099c-6.02,0.577-10.181,9.231-12.36,16.012-1.21,0.518-1.048-6.826-0.53-8.036,0.519-1.209,2.323-7.98,5.205-9.962,2.765-1.9,6.655-2,9.677-0.916,2.994,1.073,3.766,2.351-1.992,2.902z" fill-opacity="0.75000000" sodipodi:nodetypes="ccczzz" fill-rule="evenodd" transform="matrix(0.372559,0.000000,0.000000,0.372559,189.9867,2308.318)" stroke-width="1.0000000pt" fill="url(#elements-f12-el.svglinearGradient2195)"/> + </g> + <use id="elements-f12-el.svguse1" xlink:href="#elements-f12-el.svgg2864" transform="translate(10, 2345.5572394) matrix(1.758560,0.000000,0.000000,1.758560,137.3274,-45.69108) translate(-10, -2345.5572394)" height="3146.2500" width="320.00000" y="0.0000000" x="0.0000000" xmlns:cc="http://creativecommons.org/ns#"/> + <use id="elements-f12-el.svguse7" xlink:href="#elements-f12-el.svgg2952" transform="translate(10, 2345.5572394) matrix(0.250000,0.000000,0.000000,0.250000,251.8760,41.63700) translate(-10, -2345.5572394)" height="3146.2500" width="320.00000" y="0.0000000" x="0.0000000" xmlns:cc="http://creativecommons.org/ns#"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="2484.8788794" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="2484.8788794" x="10">Ξοτίβο</tspan> + </text> + <rect id="d0e255" display="none" height="1000px" width="288" y="2490.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e255"/> + </flowRegion> + <flowDiv xml:space="preserve">Το μοτίβο δημιουΟγείται επαναλαμβάνοντας ΞΞ½Ξ± στοιχείο (Ξ³ΟΞ±ΞΌΞΌΞ®, σχήμα Ξ® Ο‡ΟΟΞΌΞ±) ΞΎΞ±Ξ½Ξ¬ ΞΊΞ±ΞΉ ΞΎΞ±Ξ½Ξ¬.</flowDiv> + </flowRoot> + <defs id="elements-f13-el.svgdefs3"> + <pattern id="elements-f13-el.svgpattern2289" inkscape:collect="always" xlink:href="#elements-f13-el.svgpattern3032" patternTransform="matrix(1.180948,0.332239,-0.332239,1.180948,43.37934,31.64300)"/> + <pattern id="elements-f13-el.svgpattern3032" stroke-linejoin="miter" fill-opacity="0.75000000" fill-rule="evenodd" stroke-linecap="butt" height="39.359000" width="49.643104" stroke="#bdbb00" patternUnits="userSpaceOnUse" patternTransform="matrix(1.180948,0.332239,-0.332239,1.180948,43.37934,2476.965)" fill="#FF0"> + <path id="elements-f13-el.svgpath3027" stroke-width="1.8799459pt" d="M43.213,2505.2l-7.183-6-7.605,0.3,6.496-8.2-9.211-12.5h15.103l10.167-6.8,0.392,11,10.446,11.1-13.977-0.9-4.628,12z" inkscape:flatsided="false" transform="matrix(0.508520,0.156062,-0.156062,0.508520,394.1261,-1261.834)" inkscape:randomized="0.19700000" inkscape:rounded="0.0000000"/> + <path id="elements-f13-el.svgpath3028" stroke-width="2.4481573" d="M75.59,2486.6l-11.505-7.1-6.802,9.8,0.153-13.8-6.962-0.5,11.085-3.7,2.057-12.1,3.636,10.7,8.088-3.8-4.787,8.3,5.037,12.2z" inkscape:flatsided="false" transform="matrix(0.510585,1.662537e-3,-1.662537e-3,0.510585,13.69621,-1254.911)" inkscape:randomized="0.19700000" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000"/> + <path id="elements-f13-el.svgpath3029" stroke-width="1.5591273" d="M62.847,2516l-4.701-3.6-6.425,7.2,0.97-9.4-6.89-7.6,7.921-1.4,3.985-6.3,3.592,8.8,8.624-1.1-6.097,9.7-0.979,3.7z" inkscape:flatsided="false" transform="matrix(0.801727,2.612812e-3,-2.612812e-3,0.801727,-0.502632,-1983.714)" inkscape:randomized="0.19700000" stroke-miterlimit="4.0000000" inkscape:rounded="0.0000000"/> + <path id="elements-f13-el.svgpath3030" stroke-width="1.8799459pt" d="M33.995,2474l-13.291-16.5-12.869,4.6,9.6643-15.1-5.192-11.7,14.254,5.7,10.458-8.1-1.665,14.8,14.235,3.6-16.742,6.6,1.148,16.1z" inkscape:flatsided="false" transform="matrix(0.435729,-0.305106,0.305106,0.435729,-744.6589,-1031.678)" inkscape:randomized="0.19700000" inkscape:rounded="0.0000000"/> + <path id="elements-f13-el.svgpath3031" stroke-width="1.8799459pt" d="M12.4,2503.1l-9.0646-2.3-6.6401,5.6-3.354-10.9-12.632-2.3,14.957-6.1-2.5394-12,11.15,5.8,8.394,0.5-2.7638,7.8,2.4928,13.9z" inkscape:flatsided="false" transform="matrix(0.164915,-0.505720,0.505720,0.164915,-1249.948,-402.1810)" inkscape:randomized="0.19700000" inkscape:rounded="0.0000000"/> + </pattern> + </defs> + <rect id="elements-f13-el.svgrect3038" transform="translate(10, 2527.1946614000003) " height="100.75" width="305.3" y="0.35476" x="7.4959" fill="url(#elements-f13-el.svgpattern2289)"/> + <rect id="elements-f13-el.svgrect3018" transform="translate(10, 2527.1946614000003) " height="100.61" width="304.98" y="0.32448" x="7.6676" fill="none"/> + <rect id="elements-f13-el.svgrect2174" transform="translate(10, 2527.1946614000003) " height="100.99" width="305.16" stroke="#000" y="0.24929" x="7.5753" stroke-width="0.49832" fill="none"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="7.5" y="2652.6867414000003" x="10" font-family="Sans" font-style="italic" fill="#000000"> + <tspan y="2652.6867414000003" x="10">Διαβάθμιση</tspan> + </text> + <rect id="d0e274" display="none" height="1000px" width="288" y="2658.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e274"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— διαβάθμιση του ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ ΞΊΞ±ΞΉ της κατεΟθυνσης παΟάγει Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞ® Ο€Οοοπτική. Ξ— διαβάθμιση του Ο‡ΟΟματος Ξ±Ο€Ο Ξ¶ΞµΟƒΟ„Ο ΟƒΞµ ΞΊΟΟΞΏ ΞΊΞ±ΞΉ Ο„ΟΞ½ΞΏΟ… Ξ±Ο€Ο ΟƒΞΊΞΏΟΟΞΏ σε Ξ±Ξ½ΞΏΞΉΞΊΟ„Ο Ο€Ξ±Οάγει Ξ±ΞΟΞΉΞ½Ξ· Ο€Οοοπτική. Ξ— διαβάθμιση μποΟΞµΞ― Ξ½Ξ± Ο€ΟοσθΞσει ενδιαφΞΟΞΏΞ½ ΞΊΞ±ΞΉ κίνηση σε ΞΞ½Ξ± σχήμα. ΞΞΉΞ± διαβάθμιση Ξ±Ο€Ο ΟƒΞΊΞΏΟΟΞΏ σε Ξ±Ξ½ΞΏΞΉΞΊΟ„Ο ΞΈΞ± Ο€ΟΞΏΞΊΞ±Ξ»Ξσει την κίνηση του ΞΌΞ±Ο„ΞΉΞΏΟ ΞΊΞ±Ο„Ξ¬ μήκος ΞµΞ½ΟΟ‚ σχήματος.</flowDiv> + </flowRoot> + <defs id="elements-f14-el.svgdefs3"> + <linearGradient id="elements-f14-el.svglinearGradient3164"> + <stop id="elements-f14-el.svgstop3165" stop-color="#000" offset="0"/> + <stop id="elements-f14-el.svgstop3167" stop-color="#FFF" offset="1"/> + </linearGradient> + <linearGradient id="elements-f14-el.svglinearGradient2331" y2="7689.7" xlink:href="#elements-f14-el.svglinearGradient3164" gradientUnits="userSpaceOnUse" y1="7559" gradientTransform="matrix(2.804661,0.000000,0.000000,0.356549,0.000000,-2631.734)" x2="55.787" x1="55.984" inkscape:collect="always"/> + <linearGradient id="elements-f14-el.svglinearGradient2334" y2="7340.2" xlink:href="#elements-f14-el.svglinearGradient3164" gradientUnits="userSpaceOnUse" y1="7497" gradientTransform="matrix(2.804661,0.000000,0.000000,0.356549,0.000000,-2631.734)" x2="55.984" x1="55.984" inkscape:collect="always"/> + <linearGradient id="elements-f14-el.svglinearGradient2337" y2="2897.7" xlink:href="#elements-f14-el.svglinearGradient3164" gradientUnits="userSpaceOnUse" y1="2898.4" gradientTransform="matrix(1.073093,0.000000,0.000000,0.931885,0.000000,-2631.734)" x2="316.21" x1="182.07" inkscape:collect="always"/> + <linearGradient id="elements-f14-el.svglinearGradient2340" y2="2874.8" xlink:href="#elements-f14-el.svglinearGradient3164" gradientUnits="userSpaceOnUse" y1="2874.8" gradientTransform="matrix(1.073093,0.000000,0.000000,0.931885,0.000000,-2631.734)" x2="-14.463" x1="114.03" inkscape:collect="always"/> + </defs> + <rect id="elements-f14-el.svgrect3127" transform="translate(10, 2737.5625234000004) " height="100.99" width="305.16" stroke="#000" y="0.24891" x="7.5753" stroke-width="0.49832" fill="none"/> + <rect id="elements-f14-el.svgrect3129" fill-rule="evenodd" transform="translate(10, 2737.5625234000004) " height="23.974" width="72.439" stroke="#000" stroke-miterlimit="4" y="38.759" x="123.93" stroke-width="1.25" fill="#000"/> + <path id="elements-f14-el.svgpath3130" stroke-linejoin="miter" d="M7.7108,0.4123l116.17,38.318v24.182l-116.17,38.318" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="translate(10, 2737.5625234000004) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.50000000" fill="url(#elements-f14-el.svglinearGradient2340)"/> + <path id="elements-f14-el.svgpath3133" stroke-linejoin="miter" d="M196.38,62.912v-24.182l116.17-38.318v100.82l-116.17-38.318z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2737.5625234000004) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.50000000" fill="url(#elements-f14-el.svglinearGradient2337)"/> + <path id="elements-f14-el.svgpath3145" stroke-linejoin="miter" d="M312.55,0.4123h-304.84l116.17,38.318h72.5l116.17-38.318z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2737.5625234000004) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.50000000" fill="url(#elements-f14-el.svglinearGradient2334)"/> + <path id="elements-f14-el.svgpath3147" stroke-linejoin="miter" d="M312.55,101.23h-304.84l116.17-38.318h72.5l116.17,38.318z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2737.5625234000004) " stroke="#000" stroke-linecap="butt" stroke-miterlimit="4.0000000" stroke-width="0.50000000" fill="url(#elements-f14-el.svglinearGradient2331)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2863.8546034000005" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2863.8546034000005" x="10">Ξ£Ονθεση</tspan> + </text> + <rect id="d0e294" display="none" height="1000px" width="288" y="2869.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e294"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠσυνδυασμΟΟ‚ ξεχωΟιστΟΞ½ στοιχείων Ξ³ΞΉΞ± το ΟƒΟ‡Ξ·ΞΌΞ±Ο„ΞΉΟƒΞΌΟ ΞµΞ½ΟΟ‚ συνΟλου.</flowDiv> + </flowRoot> + <defs id="elements-f15-el.svgdefs3"> + <pattern id="elements-f15-el.svgpattern2540" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2585" patternTransform="matrix(1.791325e-2,1.217899e-2,-1.217899e-2,1.791325e-2,7.869785,48.26800)"/> + <pattern id="elements-f15-el.svgpattern2530" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2605" patternTransform="matrix(6.881172e-2,2.278502e-2,-2.278502e-2,6.881172e-2,2.539170,57.95400)"/> + <pattern id="elements-f15-el.svgpattern2527" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3708" patternTransform="matrix(3.406157e-3,-4.621636e-2,4.621636e-2,3.406157e-3,82.30269,104.9810)"/> + <pattern id="elements-f15-el.svgpattern2524" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3713" patternTransform="matrix(4.788509e-2,4.961648e-2,-4.961648e-2,4.788509e-2,10.78534,68.53900)"/> + <pattern id="elements-f15-el.svgpattern2521" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3712" patternTransform="matrix(-1.387339e-2,2.871778e-2,2.871778e-2,1.387339e-2,181.6024,17.65300)"/> + <pattern id="elements-f15-el.svgpattern2518" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3710" patternTransform="matrix(1.387339e-2,2.871778e-2,-2.871778e-2,1.387339e-2,-14.53532,25.89300)"/> + <pattern id="elements-f15-el.svgpattern2514" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1878" patternTransform="matrix(4.788509e-2,4.961648e-2,-4.961648e-2,4.788509e-2,176.9535,68.53900)"/> + <pattern id="elements-f15-el.svgpattern2511" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1880" patternTransform="matrix(1.387339e-2,2.871778e-2,-2.871778e-2,1.387339e-2,151.6328,25.89300)"/> + <pattern id="elements-f15-el.svgpattern2508" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1887" patternTransform="matrix(2.154722e-2,6.550186e-2,-6.550186e-2,2.154722e-2,207.2501,17.43600)"/> + <pattern id="elements-f15-el.svgpattern2505" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1879" patternTransform="matrix(-1.387339e-2,2.871778e-2,2.871778e-2,1.387339e-2,347.7705,17.65300)"/> + <pattern id="elements-f15-el.svgpattern2502" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1884" patternTransform="matrix(-1.224270e-3,6.894402e-2,-6.894402e-2,-1.224270e-3,143.8084,-3.970000)"/> + <pattern id="elements-f15-el.svgpattern2489" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1889" patternTransform="matrix(-1.437973e-3,8.097856e-2,-8.097856e-2,-1.437973e-3,161.8816,-4.179000)"/> + <pattern id="elements-f15-el.svgpattern3516" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2410" patternTransform="matrix(1.791325e-2,1.217899e-2,-1.217899e-2,1.791325e-2,7.869785,2842.633)"/> + <pattern id="elements-f15-el.svgpattern2585" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3516" patternTransform="matrix(1.791325e-2,1.217899e-2,-1.217899e-2,1.791325e-2,7.869785,2840.002)"/> + <pattern id="elements-f15-el.svgpattern2399" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2397" patternTransform="matrix(3.602221e-2,-6.290160e-2,6.290160e-2,3.602221e-2,5.039169,2849.688)"/> + <pattern id="elements-f15-el.svgpattern2403" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2399" patternTransform="matrix(6.881172e-2,2.278502e-2,-2.278502e-2,6.881172e-2,5.039169,2849.688)"/> + <pattern id="elements-f15-el.svgpattern2605" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2403" patternTransform="matrix(6.881172e-2,2.278502e-2,-2.278502e-2,6.881172e-2,2.539170,2849.688)"/> + <pattern id="elements-f15-el.svgpattern1880" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3710" patternTransform="matrix(1.387339e-2,2.871778e-2,-2.871778e-2,1.387339e-2,151.6328,2817.627)"/> + <pattern id="elements-f15-el.svgpattern1887" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1884" patternTransform="matrix(2.154722e-2,6.550186e-2,-6.550186e-2,2.154722e-2,207.2501,2809.170)"/> + <pattern id="elements-f15-el.svgpattern3708" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3706" patternTransform="matrix(3.406157e-3,-4.621636e-2,4.621636e-2,3.406157e-3,82.30269,2896.715)"/> + <pattern id="elements-f15-el.svgpattern3710" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3708" patternTransform="matrix(1.387339e-2,2.871778e-2,-2.871778e-2,1.387339e-2,-14.53532,2817.627)"/> + <pattern id="elements-f15-el.svgpattern3712" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3710" patternTransform="matrix(-1.387339e-2,2.871778e-2,2.871778e-2,1.387339e-2,181.6024,2809.387)"/> + <pattern id="elements-f15-el.svgpattern1879" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3712" patternTransform="matrix(-1.387339e-2,2.871778e-2,2.871778e-2,1.387339e-2,347.7705,2809.387)"/> + <pattern id="elements-f15-el.svgpattern3180" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3176" patternTransform="matrix(3.111259e-2,-4.850659e-2,-4.850659e-2,-3.111259e-2,139.5469,2993.389)"/> + <pattern id="elements-f15-el.svgpattern2598" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3180" patternTransform="matrix(2.588574e-2,-4.035758e-2,-4.035758e-2,-2.588574e-2,110.3458,3027.344)"/> + <pattern id="elements-f15-el.svgpattern3178" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3176" patternTransform="matrix(8.058895e-2,-4.848785e-2,-4.848785e-2,-8.058895e-2,-100.9765,2912.705)"/> + <pattern id="elements-f15-el.svgpattern2599" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3178" patternTransform="matrix(6.705017e-2,-4.034199e-2,-4.034199e-2,-6.705017e-2,-89.77020,2960.215)"/> + <pattern id="elements-f15-el.svgpattern3176" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3173" patternTransform="matrix(4.937844e-2,-2.970946e-2,-2.970946e-2,-4.937844e-2,65.70686,2891.160)"/> + <pattern id="elements-f15-el.svgpattern3181" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3176" patternTransform="matrix(4.937844e-2,-2.970946e-2,-2.970946e-2,-4.937844e-2,107.0526,2920.398)"/> + <pattern id="elements-f15-el.svgpattern2596" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3181" patternTransform="matrix(4.108296e-2,-2.471833e-2,-2.471833e-2,-4.108296e-2,83.31043,2966.615)"/> + <pattern id="elements-f15-el.svgpattern2650" width="24.565119" patternUnits="userSpaceOnUse" patternTransform="matrix(0.235877,0.000000,0.000000,0.235877,23.89020,1385.940)" height="24.565200"> + <path id="elements-f15-el.svgpath2649" stroke-linejoin="miter" d="M0.625,23.94l23.315-23.315" stroke="#000" stroke-linecap="butt" stroke-width="1.0000000pt" fill="none"/> + </pattern> + <pattern id="elements-f15-el.svgpattern2655" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2650" patternTransform="matrix(0.235877,0.000000,0.000000,0.235877,7.403921,1355.414)"/> + <pattern id="elements-f15-el.svgpattern2664" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2655" patternTransform="matrix(0.193713,0.134586,-0.134586,0.193713,7.403921,1377.914)"/> + <pattern id="elements-f15-el.svgpattern2666" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2664" patternTransform="matrix(3.602221e-2,-6.290160e-2,6.290160e-2,3.602221e-2,7.403921,1401.211)"/> + <pattern id="elements-f15-el.svgpattern2397" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2666" patternTransform="matrix(3.602221e-2,-6.290160e-2,6.290160e-2,3.602221e-2,5.039169,2839.013)"/> + <pattern id="elements-f15-el.svgpattern2410" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2397" patternTransform="matrix(1.791325e-2,1.217899e-2,-1.217899e-2,1.791325e-2,7.869785,2889.957)"/> + <pattern id="elements-f15-el.svgpattern3173" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern2410" patternTransform="matrix(4.937844e-2,2.970946e-2,-2.970946e-2,4.937844e-2,7.869785,2842.513)"/> + <pattern id="elements-f15-el.svgpattern3182" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3173" patternTransform="matrix(4.937844e-2,2.970946e-2,-2.970946e-2,4.937844e-2,50.08138,2871.272)"/> + <pattern id="elements-f15-el.svgpattern2597" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3182" patternTransform="matrix(4.108296e-2,2.471833e-2,-2.471833e-2,4.108296e-2,35.91026,2925.742)"/> + <pattern id="elements-f15-el.svgpattern3695" fill-rule="evenodd" height="205.67261" width="291.92533" patternUnits="userSpaceOnUse" patternTransform="matrix(6.389029e-2,6.620037e-2,-6.620037e-2,6.389029e-2,11.88013,2864.769)"> + <path id="elements-f15-el.svgpath3658" fill="#F00" d="M233.64,85.643c-6.25,0-11.28,14.887-11.56,33.437-12.96-12.19-26.33-18.76-30.62-14.47-4.01,4.01,1.57,15.98,12.22,28.1-16,1.06-28.32,5.57-28.32,11.21,0,5.93,13.51,10.64,30.69,11.38-12.3,13.01-18.9,26.5-14.59,30.81,4.31,4.32,17.79-2.31,30.81-14.62,0.73,17.18,5.45,30.68,11.37,30.68,5.61,0,10.08-12.12,11.19-27.93,13.08,12.42,26.7,19.11,31.03,14.78,4.55-4.55-2.85-19.29-16.5-32.94-0.24-0.24-0.48-0.39-0.72-0.62,18.47-0.32,33.29-5.3,33.29-11.54,0-5.97-13.7-10.73-31.07-11.4,10.54-12.06,16.05-23.92,12.07-27.91-3.99-3.99-15.82,1.56-27.88,12.1-0.68-17.379-5.43-31.067-11.41-31.067z"/> + <path id="elements-f15-el.svgpath3667" sodipodi:rx="20.394436" sodipodi:ry="20.394436" sodipodi:type="arc" d="M-117.27,2856.2a20.394,20.394,0,1,0,-40.79,0,20.394,20.394,0,1,0,40.79,0z" stroke-opacity="0.40331492" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(371.3076,-2712.318)" stroke="#000" sodipodi:cy="2856.2305" sodipodi:cx="-137.66243" stroke-miterlimit="4.0000000" stroke-width="1.8750000" fill="#cfe300"/> + <path id="elements-f15-el.svgpath3671" fill="#c70600" d="M213.45,13.665c-4.69-4.1332-18.31,3.714-30.78,17.445-1.67-17.715-7.36-31.485-13.42-31.102-5.65,0.3577-9.37,13.025-9.4,29.156-12.71-9.773-24.93-14.535-28.66-10.299-3.92,4.447,3.1,16.911,15.51,28.822-17.83,1.636-31.71,7.387-31.32,13.471,0.38,6.089,14.87,10.026,32.78,9.396-10.81,13.382-16.2,26.627-11.75,30.546,4.21,3.7,15.57-2.436,26.86-13.566,1.6,17.976,7.4,31.996,13.52,31.606,6.42-0.41,10.61-16.36,9.39-35.623-0.02-0.336-0.1-0.61-0.13-0.944,14.07,11.977,28.48,18.027,32.6,13.35,3.95-4.48-3.18-17.102-15.77-29.093,15.88-2.08,27.86-7.335,27.5-12.964-0.35-5.629-12.9-9.289-28.91-9.354,10.98-13.483,16.46-26.899,11.98-30.847z"/> + <path id="elements-f15-el.svgpath3672" sodipodi:rx="20.394436" sodipodi:ry="20.394436" sodipodi:type="arc" d="M-117.27,2856.2a20.394,20.394,0,1,0,-40.79,0,20.394,20.394,0,1,0,40.79,0z" stroke-opacity="0.40331492" stroke-linejoin="miter" stroke-linecap="butt" transform="matrix(0.750308,0.661089,-0.661089,0.750308,2166.439,-1994.659)" stroke="#000" sodipodi:cy="2856.2305" sodipodi:cx="-137.66243" stroke-miterlimit="4.0000000" stroke-width="1.8750000" fill="#d3e900"/> + <path id="elements-f15-el.svgpath3673" fill="#ffd400" d="M98.08,13.665c-4.691-4.1333-18.306,3.713-30.78,17.445-1.666-17.715-7.356-31.485-13.413-31.102-5.658,0.3577-9.38,13.025-9.405,29.156-12.71-9.773-24.928-14.535-28.66-10.299-3.918,4.447,3.098,16.911,15.505,28.822-17.828,1.635-31.704,7.387-31.319,13.471,0.38489,6.088,14.875,10.026,32.787,9.396-10.813,13.381-16.2,26.627-11.752,30.546,4.204,3.7,15.569-2.436,26.863-13.566,1.598,17.976,7.394,31.996,13.511,31.606,6.42-0.41,10.612-16.36,9.395-35.623-0.022-0.336-0.102-0.61-0.126-0.944,14.063,11.977,28.473,18.027,32.594,13.35,3.95-4.48-3.18-17.102-15.766-29.093,15.876-2.081,27.856-7.335,27.496-12.964-0.35-5.629-12.89-9.289-28.907-9.354,10.98-13.483,16.457-26.899,11.977-30.847z"/> + <path id="elements-f15-el.svgpath3674" sodipodi:rx="20.394436" sodipodi:ry="20.394436" sodipodi:type="arc" d="M-117.27,2856.2a20.394,20.394,0,1,0,-40.79,0,20.394,20.394,0,1,0,40.79,0z" stroke-opacity="0.40331492" stroke-linejoin="miter" stroke-linecap="butt" transform="matrix(0.750308,0.661089,-0.661089,0.750308,2051.071,-1994.659)" stroke="#000" sodipodi:cy="2856.2305" sodipodi:cx="-137.66243" stroke-miterlimit="4.0000000" stroke-width="1.8750000" fill="#d3e900"/> + <path id="elements-f15-el.svgpath3675" fill="#ffd400" d="M159.88,100.19c-4.69-4.132-18.3,3.71-30.78,17.45-1.66-17.719-7.35-31.489-13.41-31.106-5.66,0.358-9.38,13.025-9.4,29.156-12.713-9.77-24.931-14.53-28.663-10.3-3.918,4.45,3.097,16.91,15.505,28.82-17.829,1.64-31.704,7.39-31.32,13.47,0.385,6.09,14.876,10.03,32.788,9.4-10.813,13.38-16.2,26.63-11.753,30.55,4.204,3.7,15.57-2.44,26.863-13.57,1.6,17.97,7.39,31.99,13.51,31.6,6.42-0.4,10.61-16.36,9.4-35.62-0.03-0.33-0.11-0.61-0.13-0.94,14.06,11.98,28.47,18.03,32.59,13.35,3.95-4.48-3.18-17.1-15.76-29.09,15.87-2.08,27.85-7.34,27.5-12.97-0.36-5.63-12.9-9.29-28.91-9.35,10.98-13.48,16.46-26.9,11.97-30.85z"/> + <path id="elements-f15-el.svgpath3676" sodipodi:rx="20.394436" sodipodi:ry="20.394436" sodipodi:type="arc" d="M-117.27,2856.2a20.394,20.394,0,1,0,-40.79,0,20.394,20.394,0,1,0,40.79,0z" stroke-opacity="0.40331492" stroke-linejoin="miter" stroke-linecap="butt" transform="matrix(0.750308,0.661089,-0.661089,0.750308,2112.875,-1908.133)" stroke="#000" sodipodi:cy="2856.2305" sodipodi:cx="-137.66243" stroke-miterlimit="4.0000000" stroke-width="1.8750000" fill="#d3e900"/> + </pattern> + <pattern id="elements-f15-el.svgpattern3706" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3695" patternTransform="matrix(4.136665e-2,4.286235e-2,-4.286235e-2,4.136665e-2,10.33947,2863.228)"/> + <pattern id="elements-f15-el.svgpattern3713" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3706" patternTransform="matrix(4.788509e-2,4.961648e-2,-4.961648e-2,4.788509e-2,10.78534,2860.273)"/> + <pattern id="elements-f15-el.svgpattern1878" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern3713" patternTransform="matrix(4.788509e-2,4.961648e-2,-4.961648e-2,4.788509e-2,176.9535,2860.273)"/> + <pattern id="elements-f15-el.svgpattern1884" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1878" patternTransform="matrix(-1.224270e-3,6.894402e-2,-6.894402e-2,-1.224270e-3,143.8084,2787.764)"/> + <pattern id="elements-f15-el.svgpattern1889" inkscape:collect="always" xlink:href="#elements-f15-el.svgpattern1884" patternTransform="matrix(-1.437973e-3,8.097856e-2,-8.097856e-2,-1.437973e-3,161.8816,2787.555)"/> + <linearGradient id="elements-f15-el.svglinearGradient2533" y2="7705.3" gradientUnits="userSpaceOnUse" y1="7363.3" gradientTransform="matrix(2.670812,0.000000,0.000000,0.374418,0.000000,-2791.734)" x2="57.76" x1="59.412" inkscape:collect="always"> + <stop id="elements-f15-el.svgstop1807" stop-color="#000" stop-opacity="0.40784314" offset="0"/> + <stop id="elements-f15-el.svgstop3276" stop-color="#000" stop-opacity="0.079096042" offset="0.64778"/> + <stop id="elements-f15-el.svgstop1808" stop-color="#000" stop-opacity="0.0000000" offset="1"/> + </linearGradient> + <linearGradient id="elements-f15-el.svglinearGradient2536" y2="4923" gradientUnits="userSpaceOnUse" y1="4976.3" gradientTransform="matrix(1.739219,0.000000,0.000000,0.574971,0.000000,-2791.734)" x2="76.655" x1="56.535" inkscape:collect="always"> + <stop id="elements-f15-el.svgstop1515" stop-color="#484848" offset="0"/> + <stop id="elements-f15-el.svgstop1631" stop-color="#929292" offset="0.68667"/> + <stop id="elements-f15-el.svgstop1516" stop-color="#d8d8d8" offset="1"/> + </linearGradient> + <linearGradient id="elements-f15-el.svglinearGradient2543" y2="7122.1" gradientUnits="userSpaceOnUse" y1="7033.7" gradientTransform="matrix(2.510466,0.000000,0.000000,0.398332,0.000000,-2791.734)" x2="61.152" x1="61.152" inkscape:collect="always"> + <stop id="elements-f15-el.svgstop2371" stop-color="#0c0099" offset="0"/> + <stop id="elements-f15-el.svgstop2372" stop-color="#0069ff" offset="1"/> + </linearGradient> + <linearGradient id="elements-f15-el.svglinearGradient2546" y2="4937.7" gradientUnits="userSpaceOnUse" y1="5033.1" gradientTransform="matrix(1.743346,0.000000,0.000000,0.573610,0.000000,-2791.734)" x2="62.071" x1="60.736" inkscape:collect="always"> + <stop id="elements-f15-el.svgstop2607" stop-color="#565c3b" offset="0"/> + <stop id="elements-f15-el.svgstop2609" stop-color="#9e96d0" offset="1"/> + </linearGradient> + <linearGradient id="elements-f15-el.svglinearGradient2549" y2="6566.2" gradientUnits="userSpaceOnUse" y1="6776.9" gradientTransform="matrix(2.341667,0.000000,0.000000,0.427046,0.000000,-2791.734)" x2="67.973" x1="67.973" inkscape:collect="always"> + <stop id="elements-f15-el.svgstop2363" stop-color="#00990f" offset="0"/> + <stop id="elements-f15-el.svgstop2366" stop-color="#00ff1a" offset="1"/> + </linearGradient> + </defs> + <rect id="elements-f15-el.svgrect2359" fill-rule="evenodd" transform="translate(10, 2904.2063224000003) " height="55.704" width="305.45" y="45.539" x="7.5522" xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svglinearGradient2549)"/> + <path id="elements-f15-el.svgpath2373" d="M175.12,48.594l-3.4,52.836h-157.19l160.59-52.836z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svglinearGradient2546)"/> + <rect id="elements-f15-el.svgrect1734" fill-rule="evenodd" transform="translate(10, 2904.2063224000003) " height="48.419" width="305.16" y="0.11732" x="7.5753" xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svglinearGradient2543)"/> + <rect id="elements-f15-el.svgrect2396" transform="translate(10, 2904.2063224000003) " height="52.932" width="304.85" y="48.268" x="7.8698" xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2540)"/> + <path id="elements-f15-el.svgpath2382" stroke-linejoin="miter" style="stroke-dasharray:5.0000000 2.5000000;" d="M103.54,100.43l70.72-50.836" sodipodi:nodetypes="cc" transform="translate(10, 2904.2063224000003) " stroke-dashoffset="0.0000000" stroke="#b0af00" stroke-linecap="butt" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.2500000" fill="none"/> + <path id="elements-f15-el.svgpath2384" stroke-linejoin="miter" d="M175.12,48.594l-3.4,52.836h-157.19l160.59-52.836z" sodipodi:nodetypes="cccc" transform="translate(10, 2904.2063224000003) " stroke="url(#elements-f15-el.svglinearGradient2536)" stroke-linecap="butt" stroke-miterlimit="4.0000000" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.37500000" fill="none"/> + <path id="elements-f15-el.svgpath2387" d="M66.375,5.766l-29.375,21.344-10.656-10.688-18.782,15.032-0.0313,17h126.44,4.47,173.59l-0.03-38.594-15.5,14-22.06-2.5-18.6-12-15.75,18.906-25.18-13.219-23.29,18.875-21.4-5.656-33.66,18.75-32.84-25.25-10.658,10.688-26.687-26.688z" fill-rule="evenodd" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svglinearGradient2533)"/> + <path id="elements-f15-el.svgrect2398" d="M12.724,100.91l156.86-0.85,3.14-51.436-160,52.286z" sodipodi:nodetypes="cccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2530)"/> + <path id="elements-f15-el.svgpath3707" d="M75.087,78.225l66.733-19.439-4.97-3.222-9.95,2.604-12.87,6.372-4.12-6.99-8.49,5.518-7.037-7.592-8.492,5.518-9.95-3.222-11.406,6.974-8.493-4.679-4.122-7.592-11.406,5.518-4.123-6.136-11.406,2.604-9.949,2.605-7.0365-3.222-0.8208,16.812,12.237-3.273,6.41,5.467,2.04,12.751,19.521-17.841,0.583,14.208,9.323-1.816,9.324-6.187,8.47,4.26z" sodipodi:nodetypes="ccccccccccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2527)"/> + <path id="elements-f15-el.svgrect3704" d="M7.5099,67.447v34.993l16.378-3.679,21.136-10.237,16.366-3.082,6.826-7.851,6.827-0.697,13.981-3.083,6.827-0.697,16.369-5.467,16.36-3.082-28.55,7.217-3.709-11.453-36.691-0.347,6.525,13.962-15.926-6.683-10.867-6.683-17.302-1.352-14.55,8.221z" sodipodi:nodetypes="ccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2524)"/> + <path id="elements-f15-el.svgpath3711" d="M151.66,54.474l-11.57-1.502-9.34,2.087-29.24,9.225-14.914,1.587-5.471-11.023-17.833,2.69-9.945-0.472-21.599-3.386-24.062-1.474,0.4461-4.122,16.927-1.032,5.597,1.029,4.566-0.002,6.627,1.029,4.566-1.032,6.627-2.062,5.596,1.029,5.596,2.058,6.627-1.031,4.566-1.032,5.597,1.028,6.626,1.029,5.082-1.032,5.081-1.032,5.597-0.001,5.63,1.017,6.66-0.013,5.11-0.528,6.14,1.532,5.12-1.558,4.08,0.501,8.17-0.026,7.65,1.004,11.77-1.056,8.69,1.004-20.77,5.567z" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2521)"/> + <path id="elements-f15-el.svgpath3709" d="M7.686,55.504l17.229-0.472,11.401,8.267,23.056,0.985,12.859-0.473,15.772-4.843,15.767,6.811,9.95-0.473,13.36-3.386,28.18-8.684-3.02-4.146-31.86,6.154-16.4-1.056-22.592-0.026-15.672-4.906-16.702,1.274-11.772,3.58-16.408-6.207-12.288,1.004-0.8602,6.597z" sodipodi:nodetypes="cccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2518)"/> + <rect id="elements-f15-el.svgrect2179" transform="translate(10, 2904.2063224000003) " height="100.99" width="305.16" stroke="#000" y="0.24891" x="7.5753" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.49832" fill="none"/> + <path id="elements-f15-el.svgpath1875" d="M173.68,67.447l-2.48,32.511,36.22,1.282,105.46-0.31-2.25-33.283-15.88-3.082-32.26-4.236-36.69-0.347-13.32,13.962,1.44-19.084-28.23-1.722-9.86,3.608-2.15,10.701z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2514)"/> + <path id="elements-f15-el.svgpath1877" d="M173.85,55.504l17.23-0.472,11.4,8.267,13.14,0.985,12.86-0.473,25.69-4.843,5.85,6.811,19.87-0.473,13.36-3.386,18.26-8.684-3.02-4.146-21.94,6.154-16.4-1.056-22.59-0.026-15.68-4.906-16.7,1.274-11.77,3.58-16.41-6.207-12.29,1.004-0.86,6.597z" sodipodi:nodetypes="cccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2511)"/> + <path id="elements-f15-el.svgpath1885" d="M230.21,62.78l6.2,6.384,44.52,10.788,31.49,11.254-1.54-23.111,1.27-12.171-62.03,5.828-19.91,1.028z" sodipodi:nodetypes="cccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2508)"/> + <path id="elements-f15-el.svgpath1876" d="M306.26,52.972l-9.34,2.087-29.24,9.225-14.92,1.587-5.47-13.503-17.83,5.17-9.94-0.472-21.6-3.386-24.07-1.474,0.45-4.122,16.93-1.032,5.59,1.029,4.57-0.002,6.63,1.029,4.56-1.032,6.63-2.062,5.6,1.029,5.59,2.058,6.63-1.031,4.57-1.032,5.59,1.028,6.63,1.029,5.08-1.032,5.08-1.032,5.6-0.001,5.63,1.017,6.66-0.013,5.11-0.528,6.14,1.532,5.12-1.558,4.08,0.501,8.17-0.026-4.23,5.017z" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2505)"/> + <path id="elements-f15-el.svgpath1883" d="M173.87,62.414l-0.46,21.414,20.91-1.348,23.19-1.005,7.47-3.487-0.9-23.709-39.61-0.571-10.6,8.706z" sodipodi:nodetypes="cccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2502)"/> + <path id="elements-f15-el.svgpath3143" stroke-linejoin="round" d="M198.16,59.687v10.019l47.91,27.683,1.09-20.324-49-17.378z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2904.2063224000003) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0557491pt" fill="#845206"/> + <path id="elements-f15-el.svgpath3144" stroke-linejoin="round" d="M246.07,97.389l1.09-20.689,43.34-11.978v19.6l-44.43,13.067z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2904.2063224000003) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0557491pt" fill="#734805"/> + <path id="elements-f15-el.svgpath3141" stroke-linejoin="round" d="M195.95,58.853l17.52-12.248,56.2,5.412-24.68,25.771-49.04-18.935z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2904.2063224000003) " stroke="#000" stroke-linecap="round" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0557491pt" fill="#950f06"/> + <path id="elements-f15-el.svgpath3517" stroke-linejoin="round" d="M256.02,94.521l0.64-14.679,25.6-7.074v14.036l-26.24,7.717z" fill-rule="evenodd" sodipodi:nodetypes="ccccc" transform="translate(10, 2904.2063224000003) " stroke="#000" stroke-linecap="butt" xmlns:cc="http://creativecommons.org/ns#" stroke-width="0.62352548pt" fill="#8a5606"/> + <path id="elements-f15-el.svgpath3142" stroke-linejoin="round" d="M270.03,52.017l22.86,12.705-47.54,13.066,24.68-25.771z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="translate(10, 2904.2063224000003) " stroke="#000" stroke-linecap="round" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.0557491pt" fill="#7f3e06"/> + <g id="elements-f15-el.svgg2600" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10, 2904.2063224000003) translate(0.000000,-2863.636)"> + <path id="elements-f15-el.svgrect3172" sodipodi:nodetypes="ccccc" fill="url(#elements-f15-el.svgpattern2597)" d="M196.36,2926.7v11l47.76,27.6,2.68-20.7-50.44-17.9z"/> + <path id="elements-f15-el.svgpath3175" sodipodi:nodetypes="ccccc" fill="url(#elements-f15-el.svgpattern2596)" d="M246.72,2963.6l-1.23-17.9,44.25-12.4v17.3l-43.02,13z"/> + <path id="elements-f15-el.svgpath3177" sodipodi:nodetypes="ccccc" fill="url(#elements-f15-el.svgpattern2599)" d="M196.31,2925.2l17.82-11.5,53.31,6.4-21,22.8-50.13-17.7z"/> + <path id="elements-f15-el.svgpath3179" sodipodi:nodetypes="cccc" fill="url(#elements-f15-el.svgpattern2598)" d="M247.23,2943.6l22.68-24.9,21.72,12.6-44.4,12.3z"/> + </g> + <path id="elements-f15-el.svgpath1888" d="M194.7,68.832l-6.72,24.773,15.43,4.409,11.91-0.853,11.03,3.529,16.3,0.03,28.12-2.06,21.9-9.481-5.44-4.001-2.72-1.562-3.6,0.192-4.47,3.26-1.85,1.507-4.56,2.137-8.07,2.137-7.19-1.37-8.95,5.644-1.93-4.878-3.57,0.008-4.45-1.747-0.06-4.377-2.69-4.377-7.27,3.537-4.63-2.601-1.13-7.862-3.56-1.954-3.56,0.676-2.73,3.105-3.72-4.31-6.35-1.317-5.47-2.194z" sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" transform="translate(10, 2904.2063224000003) " xmlns:cc="http://creativecommons.org/ns#" fill="url(#elements-f15-el.svgpattern2489)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3031.4450724000003" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3031.4450724000003" x="10">ΒιβλιογΟαφία</tspan> + </text> + <rect id="d0e313" display="none" height="1000px" width="288" y="3036.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e313"/> + </flowRegion> + <flowDiv xml:space="preserve">Αυτή ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞµΟΞΉΞΊΞ® βιβλιογΟαφία που Ο‡Οησιμοποιήθηκε Ξ³ΞΉΞ± το χτίσιμο Ξ±Ο…Ο„ΞΏΟ Ο„ΞΏΟ… ΞµΞ³Ξ³Οάφου.</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3071.3557174000002)"/> + <rect id="d0e319" display="none" height="1000px" width="258" y="3065.4" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e319"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://sanford-artedventures.com/study/study.html</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3089.1604049000002)"/> + <rect id="d0e326" display="none" height="1000px" width="258" y="3083.2" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e326"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://www.makart.com/resources/artclass/EPlist.html</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3106.9025924000002)"/> + <rect id="d0e333" display="none" height="1000px" width="258" y="3100.9" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e333"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://www.princetonol.com/groups/iad/Files/elements2.htm</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3133.7339994000004)"/> + <rect id="d0e340" display="none" height="1000px" width="258" y="3127.7" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e340"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://oswego.org/staff/bpeterso/web/elements_and_principles.htm</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3162.3388434000003)"/> + <rect id="d0e347" display="none" height="1000px" width="258" y="3156.3" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e347"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://www.johnlovett.com/test.htm</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3180.1435309000003)"/> + <rect id="d0e354" display="none" height="1000px" width="258" y="3174.1" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e354"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://digital-web.com/articles/elements_of_design/</flowSpan> +</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 3198.1083747000002)"/> + <rect id="d0e361" display="none" height="1000px" width="258" y="3192.1" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e361"/> + </flowRegion> + <flowDiv xml:space="preserve"><flowSpan font-weight="bold" font-family="Sans">http://digital-web.com/articles/principles_of_design/</flowSpan> +</flowDiv> + </flowRoot> + <rect id="d0e368" display="none" height="1000px" width="288" y="3210.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e368"/> + </flowRegion> + <flowDiv xml:space="preserve">Special thanks to Linda Kim (<flowSpan font-weight="bold" font-family="Sans">http://www.redlucite.org</flowSpan>) for helping me (<flowSpan font-weight="bold" font-family="Sans">http://www.rejon.org/</flowSpan>) with this tutorial. Also, thanks to the Open Clip Art Library (<flowSpan font-weight="bold" font-family="Sans">http://www.openclipart.org/</flowSpan>) and the graphics people have submitted to that project.</flowDiv> + </flowRoot> + <g transform="translate(0, 3259.8486895)"> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/> + <filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset64" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/> + <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/> + <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/> + <g id="g1515" filter="url(#filter56)" fill-rule="evenodd" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,53.985559)"> + <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" fill="#000"/> + </g> + </g> +</svg> diff --git a/share/tutorials/tutorial-tips.el.svg b/share/tutorials/tutorial-tips.el.svg new file mode 100644 index 000000000..916a6052d --- /dev/null +++ b/share/tutorials/tutorial-tips.el.svg @@ -0,0 +1,684 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. --> +<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient841"> + <stop id="stop842" stop-color="#0082ab" offset="0"/> + <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/> + <filter id="filter48" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset56" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/> + <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/> + <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/> + <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/> + <g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-3.296641)"> + <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" fill="#000"/> + </g> + <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff"> + <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::</tspan> + </text> + <rect id="d0e12" display="none" height="1000px" width="264" y="36" x="35"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e12"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‘Ο…Ο„Ο Ο„ΞΏ μάθημα ΞΈΞ± παΟουσιάσει ποικίλες συμβουλΞΟ‚ ΞΊΞ±ΞΉ ΞΊΟλπα που ΞΏΞΉ Ο‡Οήστες ΞΞΌΞ±ΞΈΞ±Ξ½ ΞΌΞσα Ξ±Ο€Ο Ο„Ξ· Ο‡Οήση του Inkscape ΞΊΞ±ΞΉ ΞΌΞµΟΞΉΞΊΞ¬ "ΞΊΟΟ…ΞΌΞΌΞΞ½Ξ±" χαΟακτηΟιστικά που μποΟΞΏΟΞ½ Ξ½Ξ± σας βοηθήσουν Ξ½Ξ± επιταχΟνετε τις ΞµΟγασίες παΟαγωγής.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="100.47031" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="100.47031" x="10">Ακτινική τοποθΞτηση ΞΌΞµ ΞΊΞ»ΟΞ½ΞΏΟ…Ο‚ πλακιδίου</tspan> + </text> + <rect id="d0e21" display="none" height="1000px" width="288" y="105.67" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e21"/> + </flowRegion> + <flowDiv xml:space="preserve">Είναι ΞµΟκολο Ξ½Ξ± δείτε τη Ο‡Οήση του διαλΟΞ³ΞΏΟ… <flowSpan font-family="Sans">παΟάθεση ΞΊΞ»Ονων</flowSpan> Ξ³ΞΉΞ± ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ± πλΞγματα ΞΊΞ±ΞΉ μοτίβα. Αλλά τι γίνεται εάν Ο‡Οειάζεσθε <flowSpan font-style="italic">ακτινική</flowSpan> τοποθΞτηση, Οπου τα αντικείμενα ΞΌΞΏΞΉΟάζονται ΞΞ½Ξ± ΞΊΞΏΞΉΞ½Ο ΞΊΞΞ½Ο„ΟΞΏ πεΟιστΟοφής; Είναι επίσης δυνατΟ!</flowDiv> + </flowRoot> + <rect id="d0e30" display="none" height="1000px" width="288" y="155.66" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e30"/> + </flowRegion> + <flowDiv xml:space="preserve">Εάν το Ξ±ΞΊΟ„ΞΉΞ½ΞΉΞΊΟ ΟƒΞ±Ο‚ μοτίβο Ο‡Οειάζεται Ξ½Ξ± Ξχει ΞΌΟΞ½ΞΏ 3, 4, 6, 8 Ξ® 12 στοιχεία, Ο„Οτε μποΟείτε Ξ½Ξ± δοκιμάσετε τις συμμετΟΞ―ΞµΟ‚ P3, P31M, P3M1, P4, P4M, P6 Ξ® P6M. ΑυτΞΟ‚ ΞΈΞ± δουλΞΟΞΏΟ…Ξ½ ΟΞΌΞΏΟφα Ξ³ΞΉΞ± νιφάδες ΞΊΞ±ΞΉ τα παΟΟΞΌΞΏΞΉΞ±. ΞΞΉΞ± πιο Ξ³ΞµΞ½ΞΉΞΊΞ® ΞΌΞθοδος, Ομως, ΞµΞ―Ξ½Ξ±ΞΉ Ξ· Ξ±ΞΊΟλουθη.</flowDiv> + </flowRoot> + <rect id="d0e33" display="none" height="1000px" width="288" y="205.65" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e33"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕπιλΞξτε τη συμμετΟΞ―Ξ± P1 (απλή μετατΟπιση) ΞΊΞ±ΞΉ Ξπειτα <flowSpan font-style="italic">αντιστάθμιση</flowSpan> Ξ³ΞΉΞ± αυτήν την μετατΟπιση πηγαίνοντας στην ΞΊΞ±ΟΟ„Ξλα <flowSpan font-family="Sans">μετατΟπιση</flowSpan> ΞΊΞ±ΞΉ ΞΏΟίζοντας <flowSpan font-family="Sans">Ξ±Ξ½Ξ¬ Ξ³ΟΞ±ΞΌΞΌΞ®/μετατΟπιση Y</flowSpan> and <flowSpan font-family="Sans">Ξ±Ξ½Ξ¬ στήλη/μετατΟπιση X</flowSpan> ΞΊΞ±ΞΉ τις δυο στο -100%. Ξ¤ΟΟΞ± Ολοι ΞΏΞΉ ΞΊΞ»ΟΞ½ΞΏΞΉ ΞΈΞ± στοιβαχθοΟΞ½ Ξ±ΞΊΟΞΉΞ²ΟΟ‚ στην ΞΊΞΏΟυφή της Ξ±Οχικής. Ξ‘Ο…Ο„Ο Ο€ΞΏΟ… ΞΌΞΞ½ΞµΞΉ Ξ½Ξ± Ξ³Ξ―Ξ½ΞµΞΉ ΞµΞ―Ξ½Ξ±ΞΉ Ξ½Ξ± πάτε στην ΞΊΞ±ΟΟ„Ξλα <flowSpan font-family="Sans">πεΟιστΟοφή</flowSpan> ΞΊΞ±ΞΉ Ξ½Ξ± ΞΏΟίσετε κάποια γωνία πεΟιστΟοφής Ξ±Ξ½Ξ¬ στήλη, Ξπειτα δημιουΟγήστε το μοτίβο ΞΌΞµ ΞΌΞ―Ξ± Ξ³ΟΞ±ΞΌΞΌΞ® ΞΊΞ±ΞΉ πολλαπλΞΟ‚ στήλες. Ξ .Ο‡., ΞΉΞ΄ΞΏΟ ΞΞ½Ξ± μοτίβο φτιαγμΞΞ½ΞΏ Ξ±Ο€Ο ΞΌΞΉΞ± ΞΏΟΞΉΞ¶Οντια Ξ³ΟΞ±ΞΌΞΌΞ®, ΞΌΞµ Ο„Οιάντα στήλες, ΞΌΞµ κάθε στήλη πεΟιστΟΞµΞΌΞΌΞΞ½Ξ· κατά 6 ΞΌΞΏΞ―ΟΞµΟ‚:</flowDiv> + </flowRoot> + <path id="tips-f01-el.svgpath25" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" d="M81.5,58.9h117.5" inkscape:tile-w="117.80000" transform="translate(10, 327.473774) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" inkscape:tile-h="0.30000001" stroke-miterlimit="4.0000000" inkscape:tile-cx="160.25000" inkscape:tile-cy="346.50000" stroke-width="0.30000001" fill="none"/> + <use id="tips-f01-el.svguse55" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.994522,0.104528,-0.104528,0.994522,6.925170,-14.33743) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse56" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.978148,0.207912,-0.207912,0.978148,15.31072,-27.87239) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse57" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.951057,0.309017,-0.309017,0.951057,25.06545,-40.45673) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse58" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.913545,0.406737,-0.406737,0.913545,36.08194,-51.95277) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse59" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.866025,0.500000,-0.500000,0.866025,48.23990,-62.23401) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse60" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.809017,0.587785,-0.587785,0.809017,61.40597,-71.18799) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse61" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.743145,0.669131,-0.669131,0.743145,75.43562,-78.71674) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse62" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.669131,0.743145,-0.743145,0.669131,90.17562,-84.73774) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse63" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.587785,0.809017,-0.809017,0.587785,105.4642,-89.18526) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse64" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.500000,0.866025,-0.866025,0.500000,121.1340,-92.01010) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse65" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.406737,0.913545,-0.913545,0.406737,137.0132,-93.18140) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse66" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.309017,0.951057,-0.951057,0.309017,152.9274,-92.68676) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse67" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.207912,0.978148,-0.978148,0.207912,168.7031,-90.53114) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse68" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(0.104528,0.994522,-0.994522,0.104528,184.1673,-86.73846) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse69" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,199.1500,-81.35000) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse70" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.104528,0.994522,-0.994522,-0.104528,213.4874,-74.42481) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse71" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.207912,0.978148,-0.978148,-0.207912,227.0224,-66.03933) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse72" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.309017,0.951057,-0.951057,-0.309017,239.6068,-56.28455) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse73" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.406737,0.913545,-0.913545,-0.406737,251.1028,-45.26806) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse74" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.500000,0.866025,-0.866025,-0.500000,261.3840,-33.11010) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse75" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.587785,0.809017,-0.809017,-0.587785,270.3380,-19.94403) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse76" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.669131,0.743145,-0.743145,-0.669131,277.8668,-5.914380) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse77" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.743145,0.669131,-0.669131,-0.743145,283.8877,8.825618) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse78" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.809017,0.587785,-0.587785,-0.809017,288.3353,24.11421) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse79" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.866025,0.500000,-0.500000,-0.866025,291.1601,39.78401) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse80" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.913545,0.406737,-0.406737,-0.913545,292.3314,55.66320) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse81" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.951057,0.309017,-0.309017,-0.951057,291.8368,71.57745) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse82" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.978148,0.207912,-0.207912,-0.978148,289.6811,87.35318) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <use id="tips-f01-el.svguse83" xlink:href="#tips-f01-el.svgpath25" transform="translate(10, 327.473774) matrix(-0.994522,0.104528,-0.104528,-0.994522,285.8885,102.8173) translate(-10, -327.473774)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/> + <rect id="d0e61" display="none" height="1000px" width="288" y="457.27" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e61"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± πάΟετε ΞΌΞΉΞ± πλάκα ΟολογιοΟ, Ο‡ΟΞµΞΉΞ±Ξ¶Οσαστε Ξ½Ξ± ΞΊΟΟετε Ξ® απλά Ξ½Ξ± επικαλΟΟετε το ΞΊΞµΞ½Ο„ΟΞΉΞΊΟ ΞΌΞΟΞΏΟ‚ ΞΌΞµ ΞΞ½Ξ± Ξ»ΞµΟ…ΞΊΟ ΞΊΟκλο (Ξ³ΞΉΞ± Ο€Οάξεις boole σε ΞΊΞ»ΟΞ½ΞΏΟ…Ο‚, αποσυνδΞστε τους Ο€ΟΟτα).</flowDiv> + </flowRoot> + <rect id="d0e64" display="none" height="1000px" width="288" y="496.62" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e64"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ ΞΉΞΏ ενδιαφΞΟοντα εφΠμποΟΞΏΟΞ½ Ξ½Ξ± δημιουΟΞ³Ξ·ΞΈΞΏΟΞ½ Ο‡ΟησιμοποιΟντας Ξ³ΟΞ±ΞΌΞΌΞΟ‚ ΞΊΞ±ΞΉ στήλες. Ξ™Ξ΄ΞΏΟ ΞΞ½Ξ± μοτίβο ΞΌΞµ 10 στήλες ΞΊΞ±ΞΉ 8 Ξ³ΟΞ±ΞΌΞΌΞΟ‚, ΞΌΞµ πεΟιστΟοφή 2 ΞΌΞΏΞΉΟΟΞ½ Ξ±Ξ½Ξ¬ Ξ³ΟΞ±ΞΌΞΌΞ® ΞΊΞ±ΞΉ 18 ΞΌΞΏΞΉΟΟΞ½ Ξ±Ξ½Ξ¬ στήλη. Ξάθε ομάδα Ξ³ΟΞ±ΞΌΞΌΟΞ½ ΞµΞ΄Ο ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞ―Ξ± "στήλη", Ξτσι ΞΏΞΉ ομάδες ΞµΞ―Ξ½Ξ±ΞΉ 18 ΞΌΞΏΞ―ΟΞµΟ‚ ΞΌΞµΟ„Ξ±ΞΎΟ Ο„ΞΏΟ…Ο‚. ΞΞσα σε κάθε στήλη, ΞΏΞΉ ατομικΞΟ‚ Ξ³ΟΞ±ΞΌΞΌΞΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ ΞΌΞ±ΞΊΟΞΉΞ¬ Ξ΄ΟΞΏ ΞΌΞΏΞ―ΟΞµΟ‚.</flowDiv> + </flowRoot> + <path id="tips-f02-el.svgpath92" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" d="M72.5,71.65h143" inkscape:tile-w="143.30000" transform="translate(10, 575.886588) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" inkscape:tile-h="0.30000001" stroke-miterlimit="4.0000000" inkscape:tile-cx="164.00000" inkscape:tile-cy="543.50000" stroke-width="0.30000001" fill="none"/> + <use id="tips-f02-el.svguse1473" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.999657,2.617695e-2,-2.617695e-2,0.999657,1.924910,-3.745086) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1474" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.998630,5.233596e-2,-5.233596e-2,0.998630,3.947230,-7.437965) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1475" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.996917,7.845910e-2,-7.845910e-2,0.996917,6.065500,-11.07739) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1476" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.994522,0.104528,-0.104528,0.994522,8.278530,-14.65955) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1477" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.991445,0.130526,-0.130526,0.991445,10.58424,-18.18274) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1478" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.987688,0.156434,-0.156434,0.987688,12.98172,-21.64461) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1479" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.983255,0.182236,-0.182236,0.983255,15.46808,-25.04208) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1480" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.951057,0.309017,-0.309017,0.951057,29.18885,-40.99141) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1481" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.942641,0.333807,-0.333807,0.942641,32.17667,-43.95868) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1482" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.933580,0.358368,-0.358368,0.933580,35.24138,-46.84623) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1483" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.923880,0.382683,-0.382683,0.923880,38.38095,-49.65217) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1484" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.913545,0.406737,-0.406737,0.913545,41.59183,-52.37582) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1485" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.902585,0.430511,-0.430511,0.902585,44.87392,-55.01397) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1486" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.891007,0.453990,-0.453990,0.891007,48.22376,-57.56504) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1487" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.878817,0.477159,-0.477159,0.878817,51.63863,-60.02816) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1488" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.809017,0.587785,-0.587785,0.809017,69.61669,-70.95716) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1489" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.793353,0.608761,-0.608761,0.793353,73.37512,-72.85554) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1490" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.777146,0.629320,-0.629320,0.777146,77.18198,-74.65460) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1491" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.760406,0.649448,-0.649448,0.760406,81.03440,-76.35361) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1492" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.743145,0.669131,-0.669131,0.743145,84.93020,-77.95106) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1493" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.725374,0.688355,-0.688355,0.725374,88.86650,-79.44634) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1494" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.707107,0.707107,-0.707107,0.707107,92.84060,-80.83745) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1495" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.688355,0.725374,-0.725374,0.688355,96.85030,-82.12436) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1496" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.587785,0.809017,-0.809017,0.587785,117.3249,-86.96326) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1497" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.566406,0.824126,-0.824126,0.566406,121.4861,-87.60718) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1498" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.544639,0.838671,-0.838671,0.544639,125.6626,-88.14188) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1499" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.522499,0.852640,-0.852640,0.522499,129.8520,-88.56700) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1500" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.500000,0.866025,-0.866025,0.500000,134.0508,-88.88270) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1501" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.477159,0.878817,-0.878817,0.477159,138.2564,-89.08796) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1502" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.453990,0.891007,-0.891007,0.453990,142.4656,-89.18356) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1503" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.430511,0.902585,-0.902585,0.430511,146.6768,-89.16850) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1504" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.309017,0.951057,-0.951057,0.309017,167.6443,-87.44306) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1505" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.284015,0.958820,-0.958820,0.284015,171.8011,-86.77010) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1506" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.258819,0.965926,-0.965926,0.258819,175.9385,-85.98768) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1507" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.233445,0.972370,-0.972370,0.233445,180.0541,-85.09770) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1508" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.207912,0.978148,-0.978148,0.207912,184.1447,-84.10004) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1509" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.182236,0.983255,-0.983255,0.182236,188.2082,-82.99550) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1510" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.156434,0.987688,-0.987688,0.156434,192.2414,-81.78604) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1511" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(0.130526,0.991445,-0.991445,0.130526,196.2412,-80.47010) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1512" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,215.6500,-72.35000) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1513" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-2.617695e-2,0.999657,-0.999657,-2.617695e-2,219.3950,-70.42517) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1514" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-5.233596e-2,0.998630,-0.998630,-5.233596e-2,223.0879,-68.40298) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1515" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-7.845910e-2,0.996917,-0.996917,-7.845910e-2,226.7273,-66.28453) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1516" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.104528,0.994522,-0.994522,-0.104528,230.3096,-64.07158) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1517" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.130526,0.991445,-0.991445,-0.130526,233.8331,-61.76595) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1518" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.156434,0.987688,-0.987688,-0.156434,237.2945,-59.36826) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1519" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.182236,0.983255,-0.983255,-0.182236,240.6922,-56.88192) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1520" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.309017,0.951057,-0.951057,-0.309017,256.6413,-43.16115) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1521" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.333807,0.942641,-0.942641,-0.333807,259.6088,-40.17333) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1522" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.358368,0.933580,-0.933580,-0.358368,262.4962,-37.10862) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1523" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.382683,0.923880,-0.923880,-0.382683,265.3021,-33.96905) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1524" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.406737,0.913545,-0.913545,-0.406737,268.0261,-30.75817) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1525" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.430511,0.902585,-0.902585,-0.430511,270.6643,-27.47608) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1526" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.453990,0.891007,-0.891007,-0.453990,273.2149,-24.12624) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1527" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.477159,0.878817,-0.878817,-0.477159,275.6780,-20.71137) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1528" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.587785,0.809017,-0.809017,-0.587785,286.6070,-2.733510) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1529" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.608761,0.793353,-0.793353,-0.608761,288.5057,1.025120) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1530" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.629320,0.777146,-0.777146,-0.629320,290.3045,4.831980) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1531" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.649448,0.760406,-0.760406,-0.649448,292.0034,8.684401) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1532" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.669131,0.743145,-0.743145,-0.669131,293.6010,12.58018) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1533" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.688355,0.725374,-0.725374,-0.688355,295.0964,16.51657) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1534" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.707107,0.707107,-0.707107,-0.707107,296.4873,20.49058) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1535" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.725374,0.688355,-0.688355,-0.725374,297.7741,24.50044) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1536" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.809017,0.587785,-0.587785,-0.809017,302.6135,44.97581) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1537" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.824126,0.566406,-0.566406,-0.824126,303.2572,49.13771) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1538" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.838671,0.544639,-0.544639,-0.838671,303.7919,53.31061) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1539" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.852640,0.522499,-0.522499,-0.852640,304.2170,57.50440) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1540" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.866025,0.500000,-0.500000,-0.866025,304.5327,61.70160) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1541" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.878817,0.477159,-0.477159,-0.878817,304.7380,65.90736) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1542" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.891007,0.453990,-0.453990,-0.891007,304.8336,70.11673) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1543" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.902585,0.430511,-0.430511,-0.902585,304.8185,74.32639) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1544" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.951057,0.309017,-0.309017,-0.951057,303.0931,95.29267) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1545" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.958820,0.284015,-0.284015,-0.958820,302.4201,99.45188) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1546" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.965926,0.258819,-0.258819,-0.965926,301.6377,103.5896) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1547" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.972370,0.233445,-0.233445,-0.972370,300.7477,107.7029) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1548" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.978148,0.207912,-0.207912,-0.978148,299.7500,111.7972) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1549" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.983255,0.182236,-0.182236,-0.983255,298.6455,115.8555) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1550" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.987688,0.156434,-0.156434,-0.987688,297.4360,119.8908) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <use id="tips-f02-el.svguse1551" xlink:href="#tips-f02-el.svgpath92" transform="translate(10, 575.886588) matrix(-0.991445,0.130526,-0.130526,-0.991445,296.1201,123.8925) translate(-10, -575.886588)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/> + <rect id="d0e77" display="none" height="1000px" width="288" y="731.19" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e77"/> + </flowRegion> + <flowDiv xml:space="preserve">Στα παΟαπάνω παΟαδείγματα, Ξ· Ξ³ΟΞ±ΞΌΞΌΞ® πεΟιστΟάφηκε Ξ³ΟΟΟ‰ Ξ±Ο€Ο Ο„ΞΏ ΞΊΞΞ½Ο„ΟΞΏ της. Αλλά τι γίνεται εάν ΞΈΞλετε το ΞΊΞΞ½Ο„ΟΞΏ Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ ΞΞΎΟ‰ Ξ±Ο€Ο Ο„ΞΏ σχήμα σας; Απλά δημιουΟγήστε ΞΞ½Ξ± Ξ±ΟΟατο (χωΟΞ―Ο‚ Ξ³Ξμισμα, χωΟΞ―Ο‚ πινελιά) ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ που ΞΈΞ± μποΟΞΏΟσε Ξ½Ξ± ΞΊΞ±Ξ»ΟΟΞµΞΉ το σχήμα σας ΞΊΞ±ΞΉ του οποίου το ΞΊΞΞ½Ο„ΟΞΏ ΞµΞ―Ξ½Ξ±ΞΉ στο σημείο που Ο‡Οειάζεσθε, ομαδοποιήστε το σχήμα ΞΊΞ±ΞΉ το ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞΏ ΞΌΞ±Ξ¶Ξ― ΞΊΞ±ΞΉ Ξπειτα Ο‡Οησιμοποιήστε <flowSpan font-family="Sans">δημιουΟΞ³Ξ―Ξ± παΟατιθΞμενων ΞΊΞ»Ονων</flowSpan> σε αυτήν την ομάδα. Ξτσι μποΟείτε Ξ½Ξ± κάνετε ΟΞΌΞΏΟφες "ΞµΞΊΟήξεις" Ξ® "αστεΟοσκΟΞ½ΞµΟ‚" ΞΌΞµ τυχαία κλιμάκωση, πεΟιστΟοφή ΞΊΞ±ΞΉ ίσως αδιαφάνεια:</flowDiv> + </flowRoot> + <g id="tips-f03-el.svgg1768" inkscape:tile-w="87.999840" transform="translate(10, 842.372997) matrix(0.637680,0.000000,0.000000,0.637680,37.60870,-470.9209)" inkscape:tile-h="7.3333200" inkscape:tile-cx="158.99982" inkscape:tile-cy="859.24904"> + <path id="tips-f03-el.svgpath1592" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill="#000" d="M210.17,859.92c4.54-2.08,15.81-3.8,15.81-0.12,0,3.67-15.81,0.12-15.81,0.12z"/> + <rect id="tips-f03-el.svgrect1680" opacity="0" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" height="11.5" width="138" y="853.5" x="90" stroke-width="0.25px"/> + </g> + <use id="tips-f03-el.svguse5827" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.582388,-0.949047,0.949047,1.582388,-154.0340,87.07056) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5828" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.158025,-0.146700,0.146700,0.158025,105.7377,85.22851) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5829" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.381205,-0.310377,0.310377,0.381205,62.11156,90.79346) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5830" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.916096,-0.772439,0.772439,0.916096,-47.81907,113.8302) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5831" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.271176,1.020398,-1.020398,0.271176,179.8827,-85.71164) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5832" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(5.449488e-2,1.117922,-1.117922,5.449488e-2,217.5118,-82.58176) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5833" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.301172,-0.342483,0.342483,1.301172,-68.23569,24.41345) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5834" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.437831,-5.706090e-2,5.706090e-2,0.437831,73.74740,51.22179) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5835" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.306813,9.940890e-2,-9.940890e-2,0.306813,104.0080,39.56182) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5836" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-3.070037e-2,0.733791,-0.733791,-3.070037e-2,199.7728,-22.62704) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5837" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.587705,1.503905,-1.503905,0.587705,173.1183,-177.2931) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5838" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-6.358936e-2,0.241746,-0.241746,-6.358936e-2,166.4545,48.29976) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5839" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.112789,0.480395,-0.480395,-0.112789,191.6708,18.91615) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5840" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.470476,0.344786,-0.344786,0.470476,100.1539,-7.148430) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5841" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.903283,1.297602,-1.297602,0.903283,113.3661,-172.9191) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5842" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.638722,0.413477,-0.413477,1.638722,-56.94251,-106.6588) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5843" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.375364,0.841378,-0.841378,1.375364,12.61539,-145.8564) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5844" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.372431,1.257953,-1.257953,0.372431,184.1022,-126.5285) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5845" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.974189,0.807369,-0.807369,0.974189,65.75931,-110.2368) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5846" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.731938,1.633265,-1.633265,-0.731938,366.5094,-93.65480) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5847" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.673132,0.518622,-0.518622,0.673132,85.37160,-46.91760) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5848" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(2.547028e-2,0.998190,-0.998190,2.547028e-2,212.3249,-63.70384) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5849" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-3.605237e-2,0.532086,-0.532086,-3.605237e-2,184.9846,5.822092) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5850" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.090290,0.485825,-0.485825,-1.090290,327.9609,93.43394) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5851" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.698354,0.189739,-0.189739,-0.698354,250.6815,104.4086) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5852" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(5.885208e-2,0.812223,-0.812223,5.885208e-2,193.3647,-40.42509) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5853" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.726872,1.565645,-1.565645,0.726872,158.5279,-196.5916) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5854" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.937370,0.984031,-0.984031,-0.937370,345.0698,12.40872) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5855" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.744032,-0.332291,0.332291,-1.744032,355.8320,257.4943) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5856" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.222960,1.144285,-1.144285,0.222960,196.1248,-99.21930) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5857" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.343933,1.153051,-1.153051,-0.343933,275.5978,-56.78320) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5858" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.184014,0.803951,-0.803951,-0.184014,226.4862,-20.57292) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5859" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.657759,0.630998,-0.630998,-0.657759,279.0187,39.94792) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5860" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.178407,8.005262e-3,-8.005262e-3,-1.178407,303.4147,166.6376) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5861" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.188778,0.960756,-0.960756,-1.188778,378.2234,35.00298) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5862" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.580462,-3.074334e-2,3.074334e-2,-0.580462,217.3166,125.9781) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5863" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.867001,0.425050,-0.425050,-0.867001,292.2441,84.68779) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5864" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.700823,0.100133,-0.100133,-0.700823,244.1245,117.0541) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5865" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.763055,-0.226403,0.226403,-1.763055,366.6297,244.2414) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5866" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.982450,-1.091297,1.091297,-0.982450,191.5241,304.3507) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5867" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.112597,-0.111700,0.111700,-0.112597,146.0492,101.2028) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5868" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.465116,-0.231915,0.231915,-0.465116,185.7921,145.0584) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5869" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.344854,3.164347e-2,-3.164347e-2,-1.344854,328.3710,176.1683) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5870" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.841796,0.711101,-0.711101,-0.841796,310.7677,42.98625) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5871" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.406734,-1.716231,1.716231,-0.406734,63.37569,346.8820) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5872" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.512726,-1.119051,1.119051,-0.512726,124.0951,272.0361) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5873" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.009778,0.397051,-0.397051,-1.009778,309.9339,99.57444) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5874" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.342373,-1.254425,1.254425,-0.342373,89.99150,277.7351) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5875" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.321413,-5.632474e-2,5.632474e-2,-1.321413,318.3386,186.5905) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5876" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(8.124399e-2,-1.492381,1.492381,8.124399e-2,12.78507,278.1906) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5877" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.735465,-0.521409,0.521409,-0.735465,201.0780,206.1158) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5878" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.826712,-0.390986,0.390986,-0.826712,223.8044,195.0139) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5879" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(9.504403e-2,-1.201923,1.201923,9.504403e-2,33.23421,236.7537) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5880" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.407521,-0.948369,0.948369,-0.407521,122.6155,240.2096) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5881" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.237366,-0.784455,0.784455,0.237366,45.59887,167.7661) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5882" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.297228,-0.331596,0.331596,0.297228,72.15004,100.2089) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5883" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-7.089730e-2,-0.560229,0.560229,-7.089730e-2,105.7138,160.3371) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5884" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-9.284730e-3,-0.591196,0.591196,-9.284730e-3,94.76460,159.8969) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5885" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.647489,-0.895367,0.895367,0.647489,-19.94909,151.6009) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5886" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.206174,-0.655204,0.655204,0.206174,59.88748,152.2020) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5887" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.228684,-1.074090,1.074090,-0.228684,88.07570,243.9143) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5888" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.157023,-1.395573,1.395573,-1.157023,192.3591,360.0865) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5889" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-1.029056,-1.277949,1.277949,-1.029056,183.6293,333.8833) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5890" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.838138,-1.332274,1.332274,0.838138,-80.09370,197.6504) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5891" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-9.741253e-2,-1.150852,1.150852,-9.741253e-2,63.91813,244.4753) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5892" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(-0.214987,-0.730718,0.730718,-0.214987,112.6132,195.1310) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5893" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.688294,-0.170486,0.170486,1.688294,-108.8011,-29.30468) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5894" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.553777,-0.203849,0.203849,0.553777,46.32707,62.69652) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5895" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.162667,-0.637705,0.637705,1.162667,-71.71793,76.11500) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5896" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(1.521722,-0.574611,0.574611,1.521722,-116.7675,39.69527) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <use id="tips-f03-el.svguse5897" xlink:href="#tips-f03-el.svgg1768" transform="translate(10, 842.372997) matrix(0.546248,-0.904563,0.904563,0.546248,-6.585200,160.6755) translate(-10, -842.372997)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1021.183757" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1021.183757" x="10">Ξ ΟΟ‚ Ξ½Ξ± τεμαχίσετε (πεΟΞΉΞΏΟ‡ΞΟ‚ εξαγωγής πολλαπλΟΞ½ ΞΏΟθογωνίων);</tspan> + </text> + <rect id="d0e99" display="none" height="1000px" width="288" y="1026.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e99"/> + </flowRegion> + <flowDiv xml:space="preserve">ΔημιουΟγήστε ΞΌΞΉΞ± Ξ½ΞΞ± στΟΟση ΞΊΞ±ΞΉ σε αυτή τη στΟΟση δημιουΟγήστε Ξ±ΟΟατα ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ± που ΞΊΞ±Ξ»Οπτουν ΞΌΞΟΞ· της ΞµΞΉΞΊΟΞ½Ξ±Ο‚ σας. Βεβαιωθείτε Οτι το ΞΞ³Ξ³ΟΞ±Ο†Ο ΟƒΞ±Ο‚ Ο‡Οησιμοποιεί μονάδες px (Ο€Οοεπιλογή), ΞµΞ½ΞµΟγοποιήστε πλΞΞ³ΞΌΞ± ΞΊΞ±ΞΉ Ο€ΟοσκΟλληση των ΞΏΟθογωνίων στο πλΞΞ³ΞΌΞ±, Ξτσι Οστε το ΞΊΞ±ΞΈΞΞ½Ξ± Ξ½Ξ± ΞΊΞ±Ξ»Οπτει ΞΞ½Ξ± ΟƒΟ…Ξ½ΞΏΞ»ΞΉΞΊΟ Ξ±ΟΞΉΞΈΞΌΟ ΞΌΞΏΞ½Ξ¬Ξ΄Ο‰Ξ½ εικονοστοιχείων. Ξ”Οστε ταυτΟτητες ΞΌΞµ Ξ½ΟΞ·ΞΌΞ± στα ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ± ΞΊΞ±ΞΉ εξάγετε ΞΊΞ±ΞΈΞΞ½Ξ± στο Ξ±Οχείο του (<flowSpan font-family="Sans">Ξ‘Οχείο > Εξαγωγή ΟηφιογΟαφίας</flowSpan> (<flowSpan font-weight="bold">Shift+Ctrl+E</flowSpan>)). Ξπειτα τα ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ± ΞΈΞ± ΞΈΟ…ΞΌΞΏΟνται τα ΞΏΞ½Οματα Ξ±Οχείων εξαγωγής τους. Ξετά Ξ±Ο€Ο Ξ±Ο…Ο„Ο, ΞµΞ―Ξ½Ξ±ΞΉ Ο€ΞΏΞ»Ο ΞµΟκολο Ξ½Ξ± ξαναεξάγετε ΞΌΞµΟΞΉΞΊΞ¬ Ξ±Ο€Ο Ο„Ξ± ΞΏΟΞΈΞΏΞ³ΟΞ½ΞΉΞ±: μετάβαση στη στοιβάδα εξαγωγής, Ο‡Οησιμοποιήστε Tab Ξ³ΞΉΞ± επιλογή του ΞµΟ€ΞΉΞΈΟ…ΞΌΞ·Ο„ΞΏΟ (Ξ® Ο‡Οησιμοποιήστε ΞµΟΟεση ΞΌΞµ ταυτΟτητα (id) ΞΊΞ±ΞΉ πατήστε εξαγωγή στο διάλογο. Ξ‰ μποΟείτε Ξ½Ξ± Ξ³ΟΞ¬Οετε ΞΞ½Ξ± σενάΟΞΉΞΏ ΞΊΞµΞ»Οφους Ξ® ΞΏΞΌΞ±Ξ΄ΞΉΞΊΟ Ξ±Οχείο Ξ³ΞΉΞ± εξαγωγή Ολων των πεΟΞΉΞΏΟ‡ΟΞ½ σας, ΞΌΞµ ΞΌΞΉΞ± εντολή Οπως:</flowDiv> + </flowRoot> + <rect id="d0e108" display="none" height="1000px" width="288" y="1182.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e108"/> + </flowRegion> + <flowDiv xml:space="preserve">inkscape -i area-id -t filename.svg</flowDiv> + </flowRoot> + <rect id="d0e111" display="none" height="1000px" width="288" y="1200.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e111"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ³ΞΉΞ± κάθε ΞµΞΎΞ±Ξ³ΟΞΌΞµΞ½Ξ· πεΟιοχή. ΠδιακΟπτης -t της Ξ»ΞΞµΞΉ Ξ½Ξ± Ο‡Οησιμοποιήσει την Ο…Ο€Οδειξη ΟΞ½ΞΏΞΌΞ± Ξ±Οχείου που θυμάται, αλλιΟΟ‚ μποΟείτε Ξ½Ξ± Ξ΄Οσετε το ΟΞ½ΞΏΞΌΞ± Ξ±Οχείου εξαγωγής ΞΌΞµ το διακΟπτη -e. Εναλλακτικά, μποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε το Ο€ΟΟΞ³ΟΞ±ΞΌΞΌΞ± <flowSpan font-weight="bold" font-family="Sans">svgslice</flowSpan> Ξ³ΞΉΞ± αυτοματοποίηση εξαγωγής Ξ±Ο€Ο Ο„Ξ± ΞΞ³Ξ³Οαφα Inkscape SVG, Ο‡ΟησιμοποιΟντας είτε στΟΟση αποκοπής Ξ® οδηγοΟΟ‚.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1284.9305078" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1284.9305078" x="10">ΞΞ· Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚ διαβαθμίσεις</tspan> + </text> + <rect id="d0e123" display="none" height="1000px" width="288" y="1290.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e123"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ— Ξκδοση 1.1 του SVG δεν υποστηΟΞ―Ξ¶ΞµΞΉ ΞΌΞ· Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚ διαβαθμίσεις (δηλαδή διαβαθμίσεις που Ξχουν ΞΌΞ· Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚ μετατοπίσεις ΞΌΞµΟ„Ξ±ΞΎΟ Ο„Ο‰Ξ½ Ο‡Οωμάτων). ΞποΟείτε, Ομως, Ξ½Ξ± τις Ο€ΟοσομοιΟσετε ΞΌΞµ διαβαθμίσεις <flowSpan font-style="italic">πολλαπλΟΞ½ φάσεων</flowSpan></flowDiv> + </flowRoot> + <rect id="d0e128" display="none" height="1000px" width="288" y="1340.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e128"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞµΞΊΞ―Ξ½Ξ·ΞΌΞ± ΞΌΞµ ΞΌΞΉΞ± απλή διαβάθμιση Ξ΄ΟΞΏ φάσεων. Ανοίξτε τον επεξεΟγαστή διαβαθμίσεων (Ο€.Ο‡. διπλοπατΟντας σε οποιαδήποτε λαβή του ΞµΟγαλείου διαβάθμισης). Ξ ΟοσθΞστε ΞΌΞΉΞ± Ξ½ΞΞ± διαβαθμισμΞΞ½Ξ· φάση στο ΞΌΞσο. Ξ£ΟΟτε την λίγο. Ξπειτα Ο€ΟοσθΞστε πεΟισσΟτεΟΞµΟ‚ φάσεις Ο€ΟΞΉΞ½ ΞΊΞ±ΞΉ μετά τη μεσαία φάση ΞΊΞ±ΞΉ ΟƒΟΟτε τες επίσης, Ξτσι Οστε Ξ· διαβάθμιση Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ ομαλή. Ξσες πεΟισσΟτεΟΞµΟ‚ φάσεις Ο€ΟοσθΞτετε, Ο„Οσο πιο ομαλή τελική διαβάθμιση μποΟείτε Ξ½Ξ± πάΟετε. Ξ™Ξ΄ΞΏΟ Ξ· Ξ±Οχική ασπΟΟΞΌΞ±Ο…ΟΞ· διαβάθμιση ΞΌΞµ Ξ΄ΟΞΏ φάσεις:</flowDiv> + </flowRoot> + <defs id="tips-f04-el.svgdefs3"> + <linearGradient id="tips-f04-el.svglinearGradient844" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-753.98" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,178.9029,1.615078e-15)" y1="-71.602" x1="-753.98"> + <stop id="tips-f04-el.svgstop842" stop-color="#000" offset="0"/> + <stop id="tips-f04-el.svgstop843" stop-color="#FFF" offset="1"/> + </linearGradient> + </defs> + <rect id="tips-f04-el.svgrect1511" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1440.6633258) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-16.125" fill="url(#tips-f04-el.svglinearGradient844)"/> + <rect id="d0e141" display="none" height="1000px" width="288" y="1468.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e141"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞ±ΞΉ ΞµΞ΄Ο ΞµΞ―Ξ½Ξ±ΞΉ ποικίλες "ΞΌΞ· Ξ³ΟΞ±ΞΌΞΌΞΉΞΊΞΟ‚" πολυφασικΞΟ‚ διαβαθμίσεις (εξετάστε τες στον επεξεΟγαστή διαβαθμίσεων):</flowDiv> + </flowRoot> + <defs id="tips-f05-el.svgdefs3"> + <linearGradient id="tips-f05-el.svglinearGradient3979" y2="-4.5118" gradientUnits="userSpaceOnUse" x2="-1484.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,241.3779,2.179081e-15)" y1="-72.469" x1="-1484.6" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop903" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop1388" stop-color="#1f1f1f" offset="0.30971"/> + <stop id="tips-f05-el.svgstop911" stop-color="#3f3f3f" offset="0.51169"/> + <stop id="tips-f05-el.svgstop904" stop-color="#7f7f7f" offset="0.6941"/> + <stop id="tips-f05-el.svgstop905" stop-color="#bfbfbf" offset="0.85671"/> + <stop id="tips-f05-el.svgstop906" stop-color="#dfdfdf" offset="0.93052"/> + <stop id="tips-f05-el.svgstop907" stop-color="#efefef" offset="0.96831"/> + <stop id="tips-f05-el.svgstop908" stop-color="#f7f7f7" offset="0.98965"/> + <stop id="tips-f05-el.svgstop909" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3982" y2="-4.5119" gradientUnits="userSpaceOnUse" x2="-1021.7" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.3771,2.197130e-15)" y1="-72.469" x1="-1021.7" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop892" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop893" stop-color="#3f3f3f" offset="0.032569"/> + <stop id="tips-f05-el.svgstop894" stop-color="#7f7f7f" offset="0.082509"/> + <stop id="tips-f05-el.svgstop895" stop-color="#bfbfbf" offset="0.15915"/> + <stop id="tips-f05-el.svgstop896" stop-color="#dfdfdf" offset="0.20343"/> + <stop id="tips-f05-el.svgstop897" stop-color="#efefef" offset="0.27003"/> + <stop id="tips-f05-el.svgstop898" stop-color="#f7f7f7" offset="0.33919"/> + <stop id="tips-f05-el.svgstop899" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3985" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1088.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.2092,2.195615e-15)" y1="-72.469" x1="-1088.6" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop881" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop882" stop-color="#3f3f3f" offset="0.050992"/> + <stop id="tips-f05-el.svgstop883" stop-color="#7f7f7f" offset="0.13841"/> + <stop id="tips-f05-el.svgstop884" stop-color="#bfbfbf" offset="0.31314"/> + <stop id="tips-f05-el.svgstop885" stop-color="#dfdfdf" offset="0.41979"/> + <stop id="tips-f05-el.svgstop886" stop-color="#efefef" offset="0.48934"/> + <stop id="tips-f05-el.svgstop887" stop-color="#f7f7f7" offset="0.6629"/> + <stop id="tips-f05-el.svgstop888" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3988" y2="-4.5118" gradientUnits="userSpaceOnUse" x2="-1417.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,241.5457,2.180595e-15)" y1="-72.469" x1="-1417.6" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop871" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop1390" stop-color="#3f3f3f" offset="0.34958"/> + <stop id="tips-f05-el.svgstop872" stop-color="#7f7f7f" offset="0.60247"/> + <stop id="tips-f05-el.svgstop873" stop-color="#bfbfbf" offset="0.78191"/> + <stop id="tips-f05-el.svgstop874" stop-color="#dfdfdf" offset="0.86472"/> + <stop id="tips-f05-el.svgstop875" stop-color="#efefef" offset="0.93806"/> + <stop id="tips-f05-el.svgstop876" stop-color="#f7f7f7" offset="0.97619"/> + <stop id="tips-f05-el.svgstop877" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3991" y2="-4.5119" gradientUnits="userSpaceOnUse" x2="-1354.9" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.1509,2.186058e-15)" y1="-72.469" x1="-1354.9" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop860" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop861" stop-color="#7f7f7f" offset="0.47509"/> + <stop id="tips-f05-el.svgstop862" stop-color="#bfbfbf" offset="0.70159"/> + <stop id="tips-f05-el.svgstop863" stop-color="#dfdfdf" offset="0.83404"/> + <stop id="tips-f05-el.svgstop864" stop-color="#efefef" offset="0.89395"/> + <stop id="tips-f05-el.svgstop865" stop-color="#f7f7f7" offset="0.95386"/> + <stop id="tips-f05-el.svgstop866" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3994" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1155.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.0416,2.194101e-15)" y1="-72.469" x1="-1155.6" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop849" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop850" stop-color="#3f3f3f" offset="0.08634"/> + <stop id="tips-f05-el.svgstop851" stop-color="#7f7f7f" offset="0.23435"/> + <stop id="tips-f05-el.svgstop852" stop-color="#bfbfbf" offset="0.44844"/> + <stop id="tips-f05-el.svgstop853" stop-color="#dfdfdf" offset="0.53717"/> + <stop id="tips-f05-el.svgstop854" stop-color="#efefef" offset="0.64299"/> + <stop id="tips-f05-el.svgstop855" stop-color="#f7f7f7" offset="0.77809"/> + <stop id="tips-f05-el.svgstop856" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient3997" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1222.2" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.7845,2.191778e-15)" y1="-72.469" x1="-1222.2" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop838" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop846" stop-color="#3f3f3f" offset="0.11729"/> + <stop id="tips-f05-el.svgstop839" stop-color="#7f7f7f" offset="0.30868"/> + <stop id="tips-f05-el.svgstop840" stop-color="#bfbfbf" offset="0.55673"/> + <stop id="tips-f05-el.svgstop841" stop-color="#dfdfdf" offset="0.68916"/> + <stop id="tips-f05-el.svgstop1490" stop-color="#efefef" offset="0.77552"/> + <stop id="tips-f05-el.svgstop1491" stop-color="#f7f7f7" offset="0.85833"/> + <stop id="tips-f05-el.svgstop844" stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="tips-f05-el.svglinearGradient4000" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1289.3" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.6501,2.190567e-15)" y1="-72.469" x1="-1289.3" inkscape:collect="always"> + <stop id="tips-f05-el.svgstop3629" stop-color="#000" offset="0"/> + <stop id="tips-f05-el.svgstop3633" stop-color="#7f7f7f" offset="0.39661"/> + <stop id="tips-f05-el.svgstop3634" stop-color="#bfbfbf" offset="0.68131"/> + <stop id="tips-f05-el.svgstop3635" stop-color="#dfdfdf" offset="0.78264"/> + <stop id="tips-f05-el.svgstop3636" stop-color="#efefef" offset="0.86468"/> + <stop id="tips-f05-el.svgstop3637" stop-color="#f7f7f7" offset="0.89296"/> + <stop id="tips-f05-el.svgstop3630" stop-color="#fff" offset="1"/> + </linearGradient> + </defs> + <rect id="tips-f05-el.svgrect3632" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-79.393" fill="url(#tips-f05-el.svglinearGradient4000)"/> + <rect id="tips-f05-el.svgrect836" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-63.336" fill="url(#tips-f05-el.svglinearGradient3997)"/> + <rect id="tips-f05-el.svgrect847" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-47.28" fill="url(#tips-f05-el.svglinearGradient3994)"/> + <rect id="tips-f05-el.svgrect858" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-95.45" fill="url(#tips-f05-el.svglinearGradient3991)"/> + <rect id="tips-f05-el.svgrect869" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-111.51" fill="url(#tips-f05-el.svglinearGradient3988)"/> + <rect id="tips-f05-el.svgrect879" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-31.223" fill="url(#tips-f05-el.svglinearGradient3985)"/> + <rect id="tips-f05-el.svgrect890" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-15.167" fill="url(#tips-f05-el.svglinearGradient3982)"/> + <rect id="tips-f05-el.svgrect901" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1505.4986238000001) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-127.56" fill="url(#tips-f05-el.svglinearGradient3979)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1658.8195238" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1658.8195238" x="10">ΕκκεντΟΞΉΞΊΞΟ‚ ακτινικΞΟ‚ διαβαθμίσεις</tspan> + </text> + <rect id="d0e160" display="none" height="1000px" width="288" y="1664" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e160"/> + </flowRegion> + <flowDiv xml:space="preserve">ΞΞΉ ακτινικΞΟ‚ διαβαθμίσεις δεν Ο€ΟΞπει Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ συμμετΟΞΉΞΊΞΟ‚. Στο ΞµΟγαλείο διαβάθμισης, ΟƒΟΟτε την ΞΊΞµΞ½Ο„ΟΞΉΞΊΞ® λαβή της ελλειπτικής διαβάθμισης ΞΌΞµ <flowSpan font-weight="bold">Shift</flowSpan>. Ξ‘Ο…Ο„Ο ΞΈΞ± μετακινήσει την σχήματος x <flowSpan font-style="italic">λαβή εστίασης</flowSpan> της διαβάθμισης ΞΌΞ±ΞΊΟΞΉΞ¬ Ξ±Ο€Ο Ο„ΞΏ ΞΊΞΞ½Ο„ΟΞΏ της. Ξταν δεν την Ο‡Οειάζεσθε, μποΟείτε Ξ½Ξ± Ο€Οοσκολλήσετε την εστίαση πίσω ΟƒΟΟοντας την κοντά στο ΞΊΞΞ½Ο„ΟΞΏ.</flowDiv> + </flowRoot> + <defs id="tips-f06-el.svgdefs3"> + <radialGradient id="tips-f06-el.svgradialGradient4031" gradientUnits="userSpaceOnUse" fx="164.26" fy="495.96" cx="187.87" cy="494.13" r="40.258" gradientTransform="matrix(0.930312,0.000000,0.000000,0.853811,16.07898,-387.2360)" inkscape:collect="always"> + <stop id="tips-f06-el.svgstop1057" stop-color="#0082ab" stop-opacity="0" offset="0"/> + <stop id="tips-f06-el.svgstop1058" stop-color="#000" offset="1"/> + </radialGradient> + <radialGradient id="tips-f06-el.svgradialGradient4034" gradientUnits="userSpaceOnUse" fx="122.44" fy="495.35" cx="92.072" cy="494.13" r="40.514" gradientTransform="matrix(0.930312,0.000000,0.000000,0.853811,22.35642,-387.2360)" inkscape:collect="always"> + <stop id="tips-f06-el.svgstop1078" stop-color="#ff2ee1" stop-opacity="0.529229" offset="0"/> + <stop id="tips-f06-el.svgstop1079" stop-color="#000" stop-opacity="0" offset="1"/> + </radialGradient> + </defs> + <rect id="tips-f06-el.svgrect1569" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1743.3017348) " height="68.187" width="74.385" stroke="#000" y="0.55902" x="70.82" stroke-width="0.89427pt" fill="url(#tips-f06-el.svgradialGradient4034)"/> + <rect id="tips-f06-el.svgrect1570" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1743.3017348) " height="68.187" width="74.385" stroke="#000" y="0.55902" x="153.67" stroke-width="0.89427pt" fill="url(#tips-f06-el.svgradialGradient4031)"/> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1837.4061938" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1837.4061938" x="10">ΕυθυγΟάμμιση στο ΞΊΞΞ½Ο„ΟΞΏ της σελίδας</tspan> + </text> + <rect id="d0e185" display="none" height="1000px" width="288" y="1842.6" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e185"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± ΞµΟ…ΞΈΟ…Ξ³Οαμμίσετε κάτι στο ΞΊΞΞ½Ο„ΟΞΏ Ξ® την πλευΟΞ¬ της σελίδας, επιλΞξτε το αντικείμενο Ξ® ομάδα ΞΊΞ±ΞΉ Ξπειτα διαλΞξτε <flowSpan font-family="Sans">Σελίδα</flowSpan> Ξ±Ο€Ο Ο„Ξ·Ξ½ λίστα <flowSpan font-family="Sans">Σχετικά ΞΌΞµ:</flowSpan> στο διάλογο ΕυθυγΟάμμιση ΞΊΞ±ΞΉ κατανομή (<flowSpan font-weight="bold">Ctrl+Shift+A</flowSpan>).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1905.0101488" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="1905.0101488" x="10">ΞΞ±ΞΈΞ±Οίζοντας το ΞΞ³Ξ³Οαφο</tspan> + </text> + <rect id="d0e203" display="none" height="1000px" width="288" y="1910.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e203"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠολλΞΟ‚ Ξ±Ο€Ο Ο„ΞΉΟ‚ ΞΌΞ· Ο‡ΟησιμοποιοΟΞΌΞµΞ½ΞµΟ‚ διαβαθμίσεις, μοτίβα ΞΊΞ±ΞΉ σημειωτΞΟ‚ (ΞΌΞµ πιο Ξ±ΞΊΟΞ―Ξ²ΞµΞΉΞ±, Ξ±Ο…Ο„ΞΟ‚ που επεξεΟγαστήκατε χειΟοκίνητα) παΟΞ±ΞΌΞΞ½ΞΏΟ…Ξ½ στις αντίστοιχες παλΞτες ΞΊΞ±ΞΉ μποΟΞΏΟΞ½ Ξ½Ξ± ΞΎΞ±Ξ½Ξ±Ο‡ΟησιμοποιηθοΟΞ½ Ξ³ΞΉΞ± Ξ½ΞΞ± αντικείμενα. Ξμως, εάν ΞΈΞλετε Ξ½Ξ± βελτιΟσετε το αντικείμενο σας, Ο‡Οησιμοποιήστε την εντολή <flowSpan font-family="Sans">ΞΞ±ΞΈΞ±ΟισμΟΟ‚ ΞΏΟισμΟΞ½</flowSpan> στο ΞΌΞµΞ½ΞΏΟ Ξ±Οχείο. ΞΞ± αφαιΟΞσει κάθε διαβάθμιση, μοτίβο Ξ® σημειωτή που δεν Ο‡Οησιμοποιείται Ξ±Ο€Ο ΞΊΞ¬Ο„ΞΉ στο ΞΞ³Ξ³Οαφο, κάνοντας το Ξ±Οχείο ΞΌΞΉΞΊΟΟτεΟΞΏ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2015.6659338" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2015.6659338" x="10">ΞΟΟ…ΞΌΞΌΞΞ½Ξ± χαΟακτηΟιστικά ΞΊΞ±ΞΉ ΞΏ επεξεΟγαστής XML</tspan> + </text> + <rect id="d0e215" display="none" height="1000px" width="288" y="2020.9" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e215"/> + </flowRegion> + <flowDiv xml:space="preserve">ΠεπεξεΟγαστής XML (<flowSpan font-weight="bold">Shift+Ctrl+X</flowSpan>) σας επιτΟΞπει Ξ½Ξ± αλλάξετε σχεδΟΞ½ κάθε ΟΟΞ· του ΞµΞ³Ξ³Οάφου χωΟΞ―Ο‚ Ξ½Ξ± Ο‡Οησιμοποιήσετε ΞΞ½Ξ±Ξ½ εξωτεΟΞΉΞΊΟ ΞµΟ€ΞµΞΎΞµΟγαστή ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…. Επίσης, το Inkscape συνήθως υποστηΟΞ―Ξ¶ΞµΞΉ πεΟισσΟτεΟΞ± χαΟακτηΟιστικά SVG Ξ±Ο€Ο Οσα ΞµΞ―Ξ½Ξ±ΞΉ Ο€Οοσβάσιμα Ξ±Ο€Ο Ο„ΞΏ GUI. ΠεπεξεΟγαστής XML ΞµΞ―Ξ½Ξ±ΞΉ ΞΞ½Ξ±Ο‚ Ο„ΟΟπος Ξ½Ξ± Ο€Οοσπελάσετε αυτά τα χαΟακτηΟιστικά (εάν ΞΎΞΟετε SVG).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2105.0417158" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2105.0417158" x="10">Αλλαγή των μονάδων ΞΌΞΟ„Οησης του χάΟΞ±ΞΊΞ±</tspan> + </text> + <rect id="d0e227" display="none" height="1000px" width="288" y="2110.2" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e227"/> + </flowRegion> + <flowDiv xml:space="preserve">Στο Ο€ΟοεπιλεγμΞΞ½ΞΏ Ο€ΟΟτυπο, Ξ· μονάδα ΞΌΞΟ„Οησης που Ο‡Οησιμοποιείται Ξ±Ο€Ο Ο„ΞΏΟ…Ο‚ χάΟΞ±ΞΊΞµΟ‚ ΞµΞ―Ξ½Ξ±ΞΉ px ("μονάδα Ο‡Οήστη SVG", που στο Inkscape ΞµΞ―Ξ½Ξ±ΞΉ ίση ΞΌΞµ 0,8pt Ξ® 1/90 της ίντσας). Αυτή ΞµΞ―Ξ½Ξ±ΞΉ επίσης Ξ· μονάδα που Ο‡Οησιμοποιείται στην εμφάνιση συντεταγμΞνων στην κάτω Ξ±ΟιστεΟΞ® γωνία ΞΊΞ±ΞΉ Ο€ΟοεπιλεγμΞΞ½Ξ· Ξ³ΞΉΞ± Ολα τα ΞΌΞµΞ½ΞΏΟ ΞΌΞΏΞ½Ξ¬Ξ΄Ο‰Ξ½. (ΞποΟείτε Ξ½Ξ± αφήσετε το ποντίκι σας πάνω Ξ±Ο€Ο ΞΞ½Ξ± χάΟΞ±ΞΊΞ± Ξ³ΞΉΞ± Ξ½Ξ± δείτε την συμβουλή ΞΌΞµ τις μονάδες που Ο‡Οησιμοποιεί.) Για Ξ½Ξ± το αλλάξετε Ξ±Ο…Ο„Ο, ανοίξτε την εντολή <flowSpan font-family="Sans">ΙδιΟτητες ΞµΞ³Ξ³Οάφου</flowSpan> (<flowSpan font-weight="bold">Ctrl+Shift+D</flowSpan>) ΞΊΞ±ΞΉ αλλάξτε το <flowSpan font-family="Sans">Ξ ΟοεπιλεγμΞΞ½ΞµΟ‚ μονάδες</flowSpan> στην ΞΊΞ±ΟΟ„Ξλα <flowSpan font-family="Sans">Σελίδα</flowSpan>.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2226.2595578" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2226.2595578" x="10">ΣφΟάγισμα</tspan> + </text> + <rect id="d0e248" display="none" height="1000px" width="288" y="2231.5" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e248"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± δημιουΟγήσετε πολλά αντίγΟαφα ΞµΞ½ΟΟ‚ αντικειμΞΞ½ΞΏΟ…, Ο‡Οησιμοποιήστε <flowSpan font-style="italic">σφΟάγισμα</flowSpan>. Απλά ΟƒΟΟτε ΞΞ½Ξ± αντικείμενο (Ξ® κλιμακΟστε το Ξ® πεΟιστΟΞΟτε το) ΞΊΞ±ΞΉ ΞµΞ½Ο ΞΊΟατάτε το πλήκτΟΞΏ του Ο€ΞΏΞ½Ο„ΞΉΞΊΞΉΞΏΟ Ο€Ξ±Ο„Ξ·ΞΌΞΞ½ΞΏ, πιΞστε <flowSpan font-weight="bold">διάστημα</flowSpan>. Ξ‘Ο…Ο„Ο Ξ±Ο†Ξ®Ξ½ΞµΞΉ ΞΌΞΉΞ± "σφΟαγίδα" του Ο„ΟΞχοντος σχήματος του αντικειμΞΞ½ΞΏΟ…. ΞποΟείτε Ξ½Ξ± το επαναλάβετε Οσες φοΟΞΟ‚ ΞΈΞλετε.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2315.5456758" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2315.5456758" x="10">ΞΟλπα ΞµΟγαλείου Ο€ΞΞ½Ξ±Ο‚</tspan> + </text> + <rect id="d0e263" display="none" height="1000px" width="288" y="2320.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e263"/> + </flowRegion> + <flowDiv xml:space="preserve">Στο ΞµΟγαλείο Ο€ΞΞ½Ξ±Ο‚ (Bezier), Ξχετε τις παΟακάτω επιλογΞΟ‚ Ξ³ΞΉΞ± Ξ½Ξ± τελειΟσετε την Ο„ΟΞχουσα Ξ³ΟΞ±ΞΌΞΌΞ®:</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 2355.5614578)"/> + <rect id="d0e269" display="none" height="1000px" width="258" y="2349.6" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e269"/> + </flowRegion> + <flowDiv xml:space="preserve">Πατήστε <flowSpan font-weight="bold">Enter</flowSpan></flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 2373.6239578)"/> + <rect id="d0e275" display="none" height="1000px" width="258" y="2367.6" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e275"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ”ΞΉΟ€Ξ»Ο ΞΊΞ»ΞΉΞΊ ΞΌΞµ το Ξ±ΟιστεΟΟ Ο€Ξ»Ξ®ΞΊΟ„ΟΞΏ του ποντικιοΟ</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 2391.6864578)"/> + <rect id="d0e279" display="none" height="1000px" width="258" y="2385.7" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e279"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕπιλΞξτε το ΞµΟγαλείο Ο€ΞΞ½Ξ±Ο‚ ΞΎΞ±Ξ½Ξ¬</flowDiv> + </flowRoot> + <circle cy="0" cx="0" r="2" transform="translate(15, 2409.757102)"/> + <rect id="d0e283" display="none" height="1000px" width="258" y="2403.8" x="20"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e283"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕπιλΞξτε ΞΞ½Ξ± άλλο ΞµΟγαλείο</flowDiv> + </flowRoot> + <rect id="d0e287" display="none" height="1000px" width="288" y="2421.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e287"/> + </flowRegion> + <flowDiv xml:space="preserve">ΣημειΟστε Οτι ΞµΞ½Ο Ο„ΞΏ μονοπάτι ΞµΞ―Ξ½Ξ±ΞΉ ατελείωτο (δηλαδή φαίνεται Ο€Οάσινο, ΞΌΞµ το Ο„ΟΞχον κομμάτι ΞΊΟΞΊΞΊΞΉΞ½ΞΏ) δεν υπάΟχει Ξ±ΞΊΟΞΌΞ± ως αντικείμενο στο ΞΞ³Ξ³Οαφο. ΣυνεπΟΟ‚, Ξ³ΞΉΞ± Ξ½Ξ± το Ξ±ΞΊΟ…ΟΟσετε Ο‡Οησιμοποιήστε είτε <flowSpan font-weight="bold">Esc</flowSpan> (Ξ±ΞΊΟΟωση Ολου του μονοπατιοΟ) Ξ® <flowSpan font-weight="bold">οπισθοδιαγΟαφή</flowSpan> (αφαιΟΞµΞ― το τελευταίο κομμάτι του ατελείωτου μονοπατιοΟ) αντί Ξ³ΞΉΞ± <flowSpan font-family="Sans">ΑναίΟεση</flowSpan>.</flowDiv> + </flowRoot> + <rect id="d0e299" display="none" height="1000px" width="288" y="2493.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e299"/> + </flowRegion> + <flowDiv xml:space="preserve">Για Ξ½Ξ± Ο€ΟοσθΞσετε ΞΞ½Ξ± Ξ½ΞΞΏ υπομονοπάτι σε ΞΞ½Ξ± υπάΟχον μονοπάτι, επιλΞξτε Ξ±Ο…Ο„Ο Ο„ΞΏ μονοπάτι ΞΊΞ±ΞΉ Ξ±Οχίστε τη σχεδίαση ΞΌΞµ <flowSpan font-weight="bold">Shift</flowSpan> Ξ±Ο€Ο ΞΞ½Ξ± ελεΟΞΈΞµΟΞΏ σημείο. Εάν, Ομως, ΞΈΞλετε απλά Ξ½Ξ± <flowSpan font-style="italic">συνεχίσετε</flowSpan> ΞΞ½Ξ± υπάΟχον μονοπάτι, το Shift δεν ΞµΞ―Ξ½Ξ±ΞΉ απαΟαίτητο. Απλά ξεκινήστε Ξ½Ξ± σχεδιάζετε Ξ±Ο€Ο ΞΌΞ―Ξ± Ξ±Ο€Ο Ο„ΞΉΟ‚ τελικΞΟ‚ άγκυΟΞµΟ‚ ΟΞΏΟ… επιλεγμΞΞ½ΞΏΟ… μονοπατιοΟ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2577.2200272000005" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2577.2200272000005" x="10">Εισαγωγή τιμΟΞ½ Unicode</tspan> + </text> + <rect id="d0e314" display="none" height="1000px" width="288" y="2582.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e314"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ•Ξ½Ο Ξ²Οίσκεσθε στο ΞµΟγαλείο ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…, πατΟντας <flowSpan font-weight="bold">Ctrl+U</flowSpan> εναλλάσσεται Ξ· κατάσταση ΞΌΞµΟ„Ξ±ΞΎΟ Unicode ΞΊΞ±ΞΉ κανονικής. Στην κατάσταση Unicode, κάθε ομάδα των 4 δεκαεξαδικΟΞ½ Οηφίων που πληκτΟολογείτε γίνεται ΞΞ½Ξ±Ο‚ ΞΌΟΞ½ΞΏ χαΟακτήΟΞ±Ο‚ Unicode, Ξτσι σας επιτΟΞπει Ξ½Ξ± εισάγετε ελεΟΞΈΞµΟΞ± ΟƒΟμβολα (ΞµΟ†Οσον ΞΎΞΟετε τα σημεία ΞΊΟ‰Ξ΄ΞΉΞΊΞΏΟ Unicode ΞΊΞ±ΞΉ Ξ· Ξ³ΟαμματοσειΟΞ¬ τα υποστηΟΞ―Ξ¶ΞµΞΉ). Για Ξ½Ξ± τελειΟσετε την είσοδο Unicode, πατήστε <flowSpan font-weight="bold">Enter</flowSpan>. Ξ .Ο‡., <flowSpan font-weight="bold">Ctrl+U 2 0 1 4 Enter</flowSpan> εισάγει ΞΌΞΉΞ± em-dash (β€”). Για Ξ½Ξ± αφήσετε την κατάσταση Unicode χωΟΞ―Ο‚ Ξ½Ξ± εισάγετε τίποτα πατήστε <flowSpan font-weight="bold">Esc</flowSpan>.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2698.5749462000003" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2698.5749462000003" x="10">Ξ§ΟησιμοποιΟντας το πλΞΞ³ΞΌΞ± Ξ³ΞΉΞ± σχεδίαση ΞµΞΉΞΊΟνων</tspan> + </text> + <rect id="d0e335" display="none" height="1000px" width="288" y="2703.8" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e335"/> + </flowRegion> + <flowDiv xml:space="preserve">Ας υποθΞσουμε Οτι ΞΈΞλετε Ξ½Ξ± δημιουΟγήσετε ΞΞ½Ξ± εικονίδιο 24x24 εικονοστοιχείων. ΔημιουΟγήστε ΞΞ½Ξ±Ξ½ ΞΊΞ±ΞΌΞ²Ξ¬ 24x24 px (Ο‡Οησιμοποιήστε την εντολή <flowSpan font-family="Sans">ΙδιΟτητες ΞµΞ³Ξ³Οάφου</flowSpan>) ΞΊΞ±ΞΉ ΞΏΟίστε το πλΞΞ³ΞΌΞ± σε 0,5 px (48x48 Ξ³ΟΞ±ΞΌΞΌΞΟ‚ πλΞγματος). Ξ¤ΟΟΞ±, εάν ΞµΟ…ΞΈΟ…Ξ³Οαμμίσετε τα γεμισμΞΞ½Ξ± αντικείμενα σε <flowSpan font-style="italic">Ξ¶Ο…Ξ³ΞΟ‚</flowSpan> Ξ³ΟΞ±ΞΌΞΌΞΟ‚ πλΞγματος ΞΊΞ±ΞΉ τα Ξ²Ξ±ΞΌΞΌΞΞ½Ξ± αντικείμενα σε <flowSpan font-style="italic">ΞΌΞΏΞ½ΞΟ‚</flowSpan> Ξ³ΟΞ±ΞΌΞΌΞΟ‚ πλΞγματος ΞΌΞµ το πλάτος της πινελιάς σε px Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ¶Ο…Ξ³ΟΟ‚ Ξ±ΟΞΉΞΈΞΌΟΟ‚ ΞΊΞ±ΞΉ το εξάγετε στο Ο€ΟοεπιλεγμΞΞ½ΞΏ 90dpi (Ξτσι Οστε 1 Ξ½Ξ± γίνεται 1 px ΟηφιογΟαφίας), παίΟνετε ΞΌΞΉΞ± ΞΊΞ±ΞΈΞ±ΟΞ® ΟηφιογΟαφική ΞµΞΉΞΊΟΞ½Ξ± χωΟΞ―Ο‚ Ξ±Ο‡Οείαστη εξομάλυνση.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2830.5107262" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2830.5107262" x="10">Ξ ΞµΟιστΟοφή αντικειμΞΞ½ΞΏΟ…</tspan> + </text> + <rect id="d0e353" display="none" height="1000px" width="288" y="2835.7" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e353"/> + </flowRegion> + <flowDiv xml:space="preserve">ΕυΟισκΟΞΌΞµΞ½ΞΏΞΉ στο ΞµΟγαλείο επιλογής, <flowSpan font-weight="bold">κλικ</flowSpan> σε ΞΞ½Ξ± αντικείμενο Ξ³ΞΉΞ± Ξ½Ξ± δείτε τα κλιμακοΟΞΌΞµΞ½Ξ± Ξ²Ξλη, Ξπειτα <flowSpan font-weight="bold">κλικ ΞΎΞ±Ξ½Ξ¬</flowSpan> στο αντικείμενο Ξ³ΞΉΞ± Ξ½Ξ± δείτε την πεΟιστΟοφή ΞΊΞ±ΞΉ τα Ξ²Ξλη μετατΟπισης. Εάν τα Ξ²Ξλη στις γωνίες πατηθοΟΞ½ ΞΊΞ±ΞΉ συΟΞΈΞΏΟΞ½, το αντικείμενο ΞΈΞ± πεΟιστΟαφεί Ξ³ΟΟΟ‰ Ξ±Ο€Ο Ο„ΞΏ ΞΊΞΞ½Ο„ΟΞΏ (φαίνεται σαν σταυΟΟΟ‚). Αν ΞΊΟατήσετε πατημΞΞ½ΞΏ το πλήκτΟΞΏ <flowSpan font-weight="bold">Shift</flowSpan>ΞµΞ½Ο ΞΊΞ¬Ξ½ΞµΟ„Ξµ Ξ±Ο…Ο„Ο, Ξ· πεΟιστΟοφή ΞΈΞ± συμβεί Ξ³ΟΟΟ‰ Ξ±Ο€Ο Ο„Ξ·Ξ½ αντίθετη γωνία. ΞποΟείτε επίσης Ξ½Ξ± ΟƒΟΟετε το ΞΊΞΞ½Ο„ΟΞΏ πεΟιστΟοφής σε οποιαδήποτε ΞΈΞση.</flowDiv> + </flowRoot> + <rect id="d0e365" display="none" height="1000px" width="288" y="2928.3" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e365"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξ‰, μποΟείτε Ξ½Ξ± πεΟιστΟΞΟετε Ξ±Ο€Ο Ο„ΞΏ πληκτΟΞΏΞ»ΟΞ³ΞΉΞΏ πατΟντας <flowSpan font-weight="bold">[</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">]</flowSpan> (κατά 15 ΞΌΞΏΞ―ΟΞµΟ‚) Ξ® <flowSpan font-weight="bold">Ctrl+[</flowSpan> ΞΊΞ±ΞΉ <flowSpan font-weight="bold">Ctrl+]</flowSpan> (κατά 90 ΞΌΞΏΞ―ΟΞµΟ‚). Τα ίδια πλήκτΟΞ± <flowSpan font-weight="bold">[]</flowSpan> ΞΌΞµ <flowSpan font-weight="bold">Alt</flowSpan> εκτελοΟΞ½ Ξ±ΟΞ³Ξ® πεΟιστΟοφή ΞΌΞµΞ³ΞΞΈΞΏΟ…Ο‚ εικονοστοιχείου.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2991.2278522" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="2991.2278522" x="10">Πίπτουσες σκιΞΟ‚</tspan> + </text> + <rect id="d0e392" display="none" height="1000px" width="288" y="2996.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e392"/> + </flowRegion> + <flowDiv xml:space="preserve">Το Inkscape υποστηΟΞ―Ξ¶ΞµΞΉ το φίλτΟΞΏ ΞΈΟλωση Gauss SVG, Ξτσι μποΟείτε ΞµΟκολα Ξ½Ξ± δημιουΟγήσετε ΞΈΞΏΞ»ΞΟ‚ πίπτουσες σκιΞΟ‚ Ξ³ΞΉΞ± αντικείμενα. ΔιαλΞξτε ΞΞ½Ξ± αντικείμενο, διπλασιάστε το ΞΌΞµ <flowSpan font-weight="bold">Ctrl+D</flowSpan>, πατήστε <flowSpan font-weight="bold">PgDown</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± το βάλετε κάτω Ξ±Ο€Ο Ο„ΞΏ Ξ±ΟΟ‡ΞΉΞΊΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ, βάλτε το λίγο στα δεξιά ΞΊΞ±ΞΉ χαμηλΟτεΟΞ± Ξ±Ο€Ο Ο„ΞΏ Ξ±ΟΟ‡ΞΉΞΊΟ Ξ±Ξ½Ο„ΞΉΞΊΞµΞ―ΞΌΞµΞ½ΞΏ. Ξ¤ΟΟΞ± ανοίξτε το διάλογο Ξ³Ξμισμα ΞΊΞ±ΞΉ πινελιά ΞΊΞ±ΞΉ αλλάξτε τη τιμή ΞΈΟλωσης σε, Ξ±Ο‚ ποΟΞΌΞµ, 5,0. Ξ‘Ο…Ο„Ο ΞµΞ―Ξ½Ξ±ΞΉ!</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3091.1736832" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3091.1736832" x="10">ΤοποθετΟντας ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ σε μονοπάτι</tspan> + </text> + <rect id="d0e407" display="none" height="1000px" width="288" y="3096.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e407"/> + </flowRegion> + <flowDiv xml:space="preserve">Για τοποθΞτηση ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ… κατά μήκος της ΞΊΞ±ΞΌΟ€Ολης, επιλΞξτε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ΞΊΞ±ΞΉ την ΞΊΞ±ΞΌΟ€Ολη ΞΌΞ±Ξ¶Ξ― ΞΊΞ±ΞΉ διαλΞξτε <flowSpan font-family="Sans">ΤοποθΞτηση σε μονοπάτι</flowSpan> Ξ±Ο€Ο Ο„ΞΏ ΞΌΞµΞ½ΞΏΟ ΞΊΞµΞΉΞΌΞΞ½ΞΏΟ…. Το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ ΞΈΞ± ΞΎΞµΞΊΞΉΞ½Ξ¬ στην Ξ±Οχή του μονοπατιοΟ. Γενικά, ΞµΞ―Ξ½Ξ±ΞΉ ΞΊΞ±Ξ»ΟτεΟΞΏ Ξ½Ξ± δημιουΟγείτε ΞΞ½Ξ± μονοπάτι στο οποίο ΞΈΞλετε Ξ½Ξ± ταιΟιάσετε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ, παΟΞ¬ Ξ½Ξ± το Ο€ΟοσαΟΞΌΟζετε σε κάποιο άλλο στοιχείο σχεδίασης β€” Ξ±Ο…Ο„Ο ΞΈΞ± σας Ξ΄Οσει πεΟισσΟτεΟΞΏ Ξλεγχο χωΟΞ―Ο‚ αλλαγΞΟ‚ στο σχΞδιο.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3191.1894642" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3191.1894642" x="10">Επιλογή του Ξ±ΟχικοΟ</tspan> + </text> + <rect id="d0e419" display="none" height="1000px" width="288" y="3196.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e419"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξταν Ξχετε ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ στο μονοπάτι, ΞΌΞΉΞ± συνδεμΞΞ½Ξ· μετατΟπιση, Ξ® ΞΞ½Ξ±Ο‚ ΞΊΞ»ΟΞ½ΞΏΟ‚, το πηγαίο αντικείμενο/μονοπάτι ίσως Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ΄Οσκολο Ξ½Ξ± επιλεγεί, επειδή μποΟΞµΞ― Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ±ΞΊΟΞΉΞ²ΟΟ‚ Ξ±Ο€Ο ΞΊΞ¬Ο„Ο‰ Ξ® Ξ½Ξ± ΞµΞ―Ξ½Ξ±ΞΉ Ξ±ΟΟατο ΞΊΞ±ΞΉ/Ξ® κλειδωμΞΞ½ΞΏ. Το ΞΌΞ±Ξ³ΞΉΞΊΟ ΞΊΞ»ΞµΞΉΞ΄Ξ― <flowSpan font-weight="bold">Shift+D</flowSpan> ΞΈΞ± σας βοηθήσει. ΕπιλΞξτε το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ, τη συνδεμΞΞ½Ξ· μετατΟπιση Ξ® τον ΞΊΞ»ΟΞ½ΞΏ ΞΊΞ±ΞΉ πατήστε <flowSpan font-weight="bold">Shift+D</flowSpan> Ξ³ΞΉΞ± Ξ½Ξ± μετακινήσετε την επιλογή στο αντίστοιχο μονοπάτι, πηγή μετατΟπισης Ξ® Ξ±ΟΟ‡ΞΉΞΊΟ ΞΊΞ»ΟΞ½ΞΏ.</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3291.2446702" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3291.2446702" x="10">Ανάκτηση παΟΞ±ΞΈΟΟΞΏΟ… ΞµΞΊΟ„ΟΟ‚ ΞΏΞΈΟΞ½Ξ·Ο‚</tspan> + </text> + <rect id="d0e434" display="none" height="1000px" width="288" y="3296.4" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e434"/> + </flowRegion> + <flowDiv xml:space="preserve">Ξταν μετακινείται αντικείμενα ΞΌΞµΟ„Ξ±ΞΎΟ ΟƒΟ…ΟƒΟ„Ξ·ΞΌΞ¬Ο„Ο‰Ξ½ ΞΌΞµ διαφοΟετικΞΟ‚ Ξ±Ξ½Ξ±Ξ»Οσεις Ξ® Ξ±ΟΞΉΞΈΞΌΟ ΞΏΞΈΞΏΞ½ΟΞ½, μποΟΞµΞ― Ξ½Ξ± Ξ²Οείτε Οτι το Inkscape αποθήκευσε τη ΞΈΞση του παΟΞ±ΞΈΟΟΞΏΟ… που τοποθετεί το παΟάθυΟΞΏ ΞµΞΊΟ„ΟΟ‚ της δικής σας ΞΏΞΈΟΞ½Ξ·Ο‚. Απλά μεγιστοποιήστε το παΟάθυΟΞΏ (που ΞΈΞ± το ξανακάνει ΞΏΟΞ±Ο„Ο, Ο‡ΟησιμοποιΟντας τη Ξ³ΟΞ±ΞΌΞΌΞ® ΞµΟγασιΟΞ½. ΞποΟείτε Ξ½Ξ± το αποφΟγετε Ξ³ΞµΞ½ΞΉΞΊΞ¬ αποεπιλΞγοντας τη Ξ³ΞµΞ½ΞΉΞΊΞ® επιλογή αποθήκευσης της γεωμετΟΞ―Ξ±Ο‚ του παΟΞ±ΞΈΟΟΞΏΟ… (<flowSpan font-family="Sans">Ξ Οοτιμήσεις Inkscape</flowSpan>, ΞΊΞ±ΟΟ„Ξλα <flowSpan font-family="Sans">Ξ Ξ±ΟάθυΟΞ±</flowSpan>).</flowDiv> + </flowRoot> + <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3401.7871732000003" x="10" font-family="Sans" font-style="normal" fill="#000000"> + <tspan y="3401.7871732000003" x="10">Εξαγωγή διαφάνειας, διαβάθμισης ΞΊΞ±ΞΉ PostScript</tspan> + </text> + <rect id="d0e449" display="none" height="1000px" width="288" y="3407" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e449"/> + </flowRegion> + <flowDiv xml:space="preserve">PostScript Ξ® ΞΌΞΏΟΟ†ΞΟ‚ EPS δεν υποστηΟΞ―Ξ¶ΞΏΟ…Ξ½ <flowSpan font-style="italic">διαφάνεια</flowSpan>, Ξτσι δεν ΞΈΞ± Ο€ΟΞπει ποτΠνα τις Ο‡Οησιμοποιήσετε, εάν Ο€ΟΟκειται Ξ½Ξ± εξάγετε σε PS/EPS. Στην πεΟίπτωση της επίπεδης διαφάνειας που επικαλΟπτει επίπεδο Ο‡ΟΟΞΌΞ±, ΞµΞ―Ξ½Ξ±ΞΉ ΞµΟκολο Ξ½Ξ± το φιάξετε: ΕπιλΞξτε ΞΞ½Ξ± Ξ±Ο€Ο Ο„Ξ± διαφανή αντικείμενα, μετάβαση στο ΞµΟγαλείο σταγονΟΞΌΞµΟ„ΟΞΏΟ… (<flowSpan font-weight="bold">F7</flowSpan>). Βεβαιωθείτε Οτι ΞµΞ―Ξ½Ξ±ΞΉ στην κατάσταση "επιλογή ΞΏΟΞ±Ο„ΞΏΟ Ο‡ΟΟματος χωΟΞ―Ο‚ άλφα". Ξλικ στο ίδιο αντικείμενο. ΞΞ± επιλΞΞΎΞµΞΉ το ΞΏΟΞ±Ο„Ο Ο‡ΟΟΞΌΞ± ΞΊΞ±ΞΉ ΞΈΞ± το αποδΟσει πίσω στο αντικείμενο, αλλά αυτή τη φοΟΞ¬ χωΟΞ―Ο‚ διαφάνεια. ΕπανάληΟΞ· Ξ³ΞΉΞ± Ολα τα διαφανή αντικείμενα. Εάν το διαφανΞΟ‚ σας αντικείμενο επικαλΟπτει πολλΞΟ‚ επίπεδες Ο‡ΟωματικΞΟ‚ πεΟΞΉΞΏΟ‡ΞΟ‚, ΞΈΞ± Ο€ΟΞπει Ξ½Ξ± το σπάσετε κατάλληλα σε κομμάτια ΞΊΞ±ΞΉ Ξ½Ξ± εφαΟΞΌΟσετε αυτή τη διαδικασία σε κάθε κομμάτι.</flowDiv> + </flowRoot> + <rect id="d0e458" display="none" height="1000px" width="288" y="3542.1" x="10"/> + <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="Serif" line-height="133.00000%" fill="#000000"> + <flowRegion> + <use y="0" x="0" xlink:href="#d0e458"/> + </flowRegion> + <flowDiv xml:space="preserve">Εξαγωγή <flowSpan font-style="italic">διαβαθμίσεων</flowSpan> σε PS Ξ® EPS δεν δουλεΟΞµΞΉ Ξ³ΞΉΞ± ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ (ΞµΞΊΟ„ΟΟ‚ ΞΊΞ±ΞΉ το ΞΊΞµΞ―ΞΌΞµΞ½ΞΏ μετατΟαπεί σε μονοπάτι) Ξ® σε Ο‡ΟΟΞΌΞ± πινελιάς. Επίσης, Ξ±Ο†ΞΏΟ Ξ· διαφάνεια χάνεται σε εξαγωγή PS Ξ® EPS, δεν μποΟείτε Ξ½Ξ± Ο‡Οησιμοποιήσετε Ο€.Ο‡. ΞΌΞΉΞ± διαβάθμιση Ξ±Ο€Ο ΞΞ½Ξ± <flowSpan font-style="italic">αδιαφανΞΟ‚</flowSpan> μπλε σε <flowSpan font-style="italic">διαφανΞΟ‚ μπλε</flowSpan>. Για Ξ½Ξ± το αποφΟγετε, αντικαταστήστε το ΞΌΞµ ΞΌΞΉΞ± διαβάθμιση Ξ±Ο€Ο <flowSpan font-style="italic">αδιαφανΞΟ‚</flowSpan> μπλε σε <flowSpan font-style="italic">αδιαφανΞΟ‚</flowSpan> Ο‡ΟΟΞΌΞ± παΟασκηνίου.</flowDiv> + </flowRoot> + <g transform="translate(0, 3613.4851652)"> + <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#"> + <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/> + <filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom"> + <feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/> + <feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/> + <feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/> + <feOffset id="feOffset64" result="offset" dx="0" dy="0"/> + <feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/> + </filter> + </defs> + <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer"> + <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/> + <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/> + <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/> + <g id="g1515" filter="url(#filter56)" fill-rule="evenodd" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,53.985559)"> + <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/> + <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/> + <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/> + <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/> + <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/> + </g> + <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/> + <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="Sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text> + <path id="path7527" opacity="0.5" style="color:#000000;" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" fill="#000"/> + </g> + </g> +</svg> diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 580d65b0c..038e7bb73 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -306,7 +306,9 @@ set(inkscape_SRC box3d-context.h box3d-side.h box3d.h - color-profile-fns.h + cms-color-types.h + cms-system.h + color-profile-cms-fns.h color-profile-test.h color-profile.h color-rgba.h diff --git a/src/Makefile.am b/src/Makefile.am index 7925dcd7e..5a50eb36f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -208,11 +208,7 @@ libinkscape_a_SOURCES = $(ink_common_sources) inkscape_SOURCES += main.cpp $(win32_sources) inkscape_LDADD = $(all_libs) -if EXPORT_DYNAMIC_DIRECT -inkscape_LDFLAGS = --export-dynamic $(kdeldflags) $(mwindows) -else -inkscape_LDFLAGS = -Wl,--export-dynamic $(kdeldflags) $(mwindows) -endif +inkscape_LDFLAGS = $(kdeldflags) $(mwindows) inkview_SOURCES += inkview.cpp $(win32_sources) inkview_LDADD = $(all_libs) diff --git a/src/Makefile_insert b/src/Makefile_insert index 7d48dba93..2cb689740 100644 --- a/src/Makefile_insert +++ b/src/Makefile_insert @@ -12,9 +12,11 @@ ink_common_sources += \ box3d.cpp box3d.h \ box3d-side.cpp box3d-side.h \ brokenimage.xpm \ + cms-color-types.h \ + cms-system.h \ color.cpp color.h \ color-profile.cpp color-profile.h \ - color-profile-fns.h \ + color-profile-cms-fns.h \ color-rgba.h \ common-context.cpp common-context.h \ composite-undo-stack-observer.cpp \ diff --git a/src/cms-color-types.h b/src/cms-color-types.h new file mode 100644 index 000000000..74fdac12c --- /dev/null +++ b/src/cms-color-types.h @@ -0,0 +1,58 @@ +#ifndef SEEN_CMS_COLOR_TYPES_H +#define SEEN_CMS_COLOR_TYPES_H + +/** \file + * A simple abstraction to provide opaque compatibility with either lcms or lcms2. + */ + +#include <glib/gtypes.h> + + +typedef void * cmsHPROFILE; +typedef void * cmsHTRANSFORM; + +namespace Inkscape { + +/** + * Opaque holder of a 32-bit signature type. + */ +class FourCCSig { +public: + FourCCSig( FourCCSig const &other ) : value(other.value) {}; + +protected: + FourCCSig( guint32 value ) : value(value) {}; + + guint32 value; +}; + +class ColorSpaceSig : public FourCCSig { +public: + ColorSpaceSig( ColorSpaceSig const &other ) : FourCCSig(other) {}; + +protected: + ColorSpaceSig( guint32 value ) : FourCCSig(value) {}; +}; + +class ColorProfileClassSig : public FourCCSig { +public: + ColorProfileClassSig( ColorProfileClassSig const &other ) : FourCCSig(other) {}; + +protected: + ColorProfileClassSig( guint32 value ) : FourCCSig(value) {}; +}; + +} // namespace Inkscape + +#endif // SEEN_CMS_COLOR_TYPES_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/cms-system.h b/src/cms-system.h new file mode 100644 index 000000000..1f75f8619 --- /dev/null +++ b/src/cms-system.h @@ -0,0 +1,60 @@ +#ifndef SEEN_COLOR_PROFILE_FNS_H +#define SEEN_COLOR_PROFILE_FNS_H + +/** \file + * Macros and fn declarations related to linear gradients. + */ + +#include <glib-object.h> +#include <glib/gtypes.h> +#include <vector> +#include <glibmm/ustring.h> +#include "cms-color-types.h" + +class SPDocument; + +namespace Inkscape { + +class ColorProfile; + +class CMSSystem { +public: + static cmsHPROFILE getHandle( SPDocument* document, guint* intent, gchar const* name ); + + static cmsHTRANSFORM getDisplayTransform(); + + static Glib::ustring getDisplayId( int screen, int monitor ); + + static Glib::ustring setDisplayPer( gpointer buf, guint bufLen, int screen, int monitor ); + + static cmsHTRANSFORM getDisplayPer( Glib::ustring const& id ); + + static std::vector<Glib::ustring> getDisplayNames(); + + static std::vector<Glib::ustring> getSoftproofNames(); + + static Glib::ustring getPathForProfile(Glib::ustring const& name); + + static void doTransform(cmsHTRANSFORM transform, void *inBuf, void *outBuf, unsigned int size); + + static bool isPrintColorSpace(ColorProfile const *profile); + + static gint getChannelCount(ColorProfile const *profile); +}; + + +} // namespace Inkscape + + +#endif // !SEEN_COLOR_PROFILE_FNS_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/color-profile-cms-fns.h b/src/color-profile-cms-fns.h new file mode 100644 index 000000000..fe0eed392 --- /dev/null +++ b/src/color-profile-cms-fns.h @@ -0,0 +1,51 @@ +#ifndef SEEN_COLOR_PROFILE_CMS_FNS_H +#define SEEN_COLOR_PROFILE_CMS_FNS_H + +#if ENABLE_LCMS +#include <lcms.h> +#endif // ENABLE_LCMS + +#include "cms-color-types.h" + +namespace Inkscape { + +#if ENABLE_LCMS + +// Note: these can later be adjusted to adapt for lcms2: + +class ColorSpaceSigWrapper : public ColorSpaceSig { +public : + ColorSpaceSigWrapper( icColorSpaceSignature sig ) : ColorSpaceSig( static_cast<guint32>(sig) ) {} + ColorSpaceSigWrapper( ColorSpaceSig const &other ) : ColorSpaceSig( other ) {} + + operator icColorSpaceSignature() const { return static_cast<icColorSpaceSignature>(value); } +}; + +class ColorProfileClassSigWrapper : public ColorProfileClassSig { +public : + ColorProfileClassSigWrapper( icProfileClassSignature sig ) : ColorProfileClassSig( static_cast<guint32>(sig) ) {} + ColorProfileClassSigWrapper( ColorProfileClassSig const &other ) : ColorProfileClassSig( other ) {} + + operator icProfileClassSignature() const { return static_cast<icProfileClassSignature>(value); } +}; + +icColorSpaceSignature asICColorSpaceSig(ColorSpaceSig const & sig); +icProfileClassSignature asICColorProfileClassSig(ColorProfileClassSig const & sig); + +#endif // ENABLE_LCMS + +} // namespace Inkscape + + +#endif // !SEEN_COLOR_PROFILE_CMS_FNS_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/color-profile-fns.h b/src/color-profile-fns.h deleted file mode 100644 index defc58f2c..000000000 --- a/src/color-profile-fns.h +++ /dev/null @@ -1,65 +0,0 @@ -#ifndef SEEN_COLOR_PROFILE_FNS_H -#define SEEN_COLOR_PROFILE_FNS_H - -/** \file - * Macros and fn declarations related to linear gradients. - */ - -#include <glib-object.h> -#include <glib/gtypes.h> -#if ENABLE_LCMS -#include <vector> -#include <glibmm/ustring.h> -#include <lcms.h> -#endif // ENABLE_LCMS - -class SPDocument; - -namespace Inkscape { - -namespace XML { -class Node; -} // namespace XML - -class ColorProfile; - -GType colorprofile_get_type(); - -#if ENABLE_LCMS - -cmsHPROFILE colorprofile_get_handle( SPDocument* document, guint* intent, gchar const* name ); -cmsHTRANSFORM colorprofile_get_display_transform(); - -Glib::ustring colorprofile_get_display_id( int screen, int monitor ); -Glib::ustring colorprofile_set_display_per( gpointer buf, guint bufLen, int screen, int monitor ); -cmsHTRANSFORM colorprofile_get_display_per( Glib::ustring const& id ); - -std::vector<Glib::ustring> colorprofile_get_display_names(); -std::vector<Glib::ustring> colorprofile_get_softproof_names(); - -Glib::ustring get_path_for_profile(Glib::ustring const& name); -void colorprofile_load_profiles(bool force_refresh = false); - -#endif - -} // namespace Inkscape - -#define COLORPROFILE_TYPE (Inkscape::colorprofile_get_type()) -#define COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORPROFILE_TYPE, Inkscape::ColorProfile)) -#define COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), COLORPROFILE_TYPE, Inkscape::ColorProfileClass)) -#define IS_COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), COLORPROFILE_TYPE)) -#define IS_COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), COLORPROFILE_TYPE)) - - -#endif // !SEEN_COLOR_PROFILE_FNS_H - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/color-profile-test.h b/src/color-profile-test.h index 4b679e5b7..b3ead5d55 100644 --- a/src/color-profile-test.h +++ b/src/color-profile-test.h @@ -9,7 +9,7 @@ #include "color-profile.h" -#include "color-profile-fns.h" +#include "cms-system.h" class ColorProfileTest : public CxxTest::TestSuite { diff --git a/src/color-profile.cpp b/src/color-profile.cpp index 4dc4d5bd8..41c9d4c63 100644 --- a/src/color-profile.cpp +++ b/src/color-profile.cpp @@ -24,10 +24,15 @@ #include <windows.h> #endif +#if ENABLE_LCMS +#include <lcms.h> +#endif // ENABLE_LCMS + #include "xml/repr.h" #include "color.h" #include "color-profile.h" -#include "color-profile-fns.h" +#include "cms-system.h" +#include "color-profile-cms-fns.h" #include "attributes.h" #include "inkscape.h" #include "document.h" @@ -42,12 +47,15 @@ using Inkscape::ColorProfile; using Inkscape::ColorProfileClass; +using Inkscape::ColorProfileImpl; -namespace Inkscape +namespace { #if ENABLE_LCMS -static cmsHPROFILE colorprofile_get_system_profile_handle(); -static cmsHPROFILE colorprofile_get_proof_profile_handle(); +cmsHPROFILE getSystemProfileHandle(); +cmsHPROFILE getProofProfileHandle(); +void loadProfiles(); +Glib::ustring getNameFromProfile(cmsHPROFILE profile); #endif // ENABLE_LCMS } @@ -93,20 +101,77 @@ extern guint update_in_progress; static SPObjectClass *cprof_parent_class; +class ColorProfileImpl { +public: #if ENABLE_LCMS + static cmsHPROFILE _sRGBProf; + static cmsHPROFILE _NullProf; +#endif // ENABLE_LCMS + + ColorProfileImpl(); + +#if ENABLE_LCMS + static DWORD _getInputFormat( icColorSpaceSignature space ); + + static cmsHPROFILE getNULLProfile(); + static cmsHPROFILE getSRGBProfile(); + + void _clearProfile(); + + cmsHPROFILE _profHandle; + icProfileClassSignature _profileClass; + icColorSpaceSignature _profileSpace; + cmsHTRANSFORM _transf; + cmsHTRANSFORM _revTransf; + cmsHTRANSFORM _gamutTransf; +#endif // ENABLE_LCMS +}; + + -cmsHPROFILE ColorProfile::_sRGBProf = 0; +namespace Inkscape { -cmsHPROFILE ColorProfile::getSRGBProfile() { +#ifdef ENABLE_LCMS +icColorSpaceSignature asICColorSpaceSig(ColorSpaceSig const & sig) +{ + return ColorSpaceSigWrapper(sig); +} + +icProfileClassSignature asICColorProfileClassSig(ColorProfileClassSig const & sig) +{ + return ColorProfileClassSigWrapper(sig); +} +#endif // ENABLE_LCMS + +} // namespace Inkscape + +ColorProfileImpl::ColorProfileImpl() +#if ENABLE_LCMS + : + _profHandle(0), + _profileClass(icSigInputClass), + _profileSpace(icSigRgbData), + _transf(0), + _revTransf(0), + _gamutTransf(0) +#endif // ENABLE_LCMS +{ +} + +#if ENABLE_LCMS + +cmsHPROFILE ColorProfileImpl::_sRGBProf = 0; + +cmsHPROFILE ColorProfileImpl::getSRGBProfile() { if ( !_sRGBProf ) { _sRGBProf = cmsCreate_sRGBProfile(); } - return _sRGBProf; + return ColorProfileImpl::_sRGBProf; } -cmsHPROFILE ColorProfile::_NullProf = 0; +cmsHPROFILE ColorProfileImpl::_NullProf = 0; -cmsHPROFILE ColorProfile::getNULLProfile() { +cmsHPROFILE ColorProfileImpl::getNULLProfile() { if ( !_NullProf ) { _NullProf = cmsCreateNULLProfile(); } @@ -162,19 +227,13 @@ void ColorProfile::classInit( ColorProfileClass *klass ) */ void ColorProfile::init( ColorProfile *cprof ) { + cprof->impl = new ColorProfileImpl(); + cprof->href = 0; cprof->local = 0; cprof->name = 0; cprof->intentStr = 0; cprof->rendering_intent = Inkscape::RENDERING_INTENT_UNKNOWN; -#if ENABLE_LCMS - cprof->profHandle = 0; - cprof->_profileClass = icSigInputClass; - cprof->_profileSpace = icSigRgbData; - cprof->_transf = 0; - cprof->_revTransf = 0; - cprof->_gamutTransf = 0; -#endif // ENABLE_LCMS } /** @@ -209,12 +268,15 @@ void ColorProfile::release( SPObject *object ) } #if ENABLE_LCMS - cprof->_clearProfile(); + cprof->impl->_clearProfile(); #endif // ENABLE_LCMS + + delete cprof->impl; + cprof->impl = 0; } #if ENABLE_LCMS -void ColorProfile::_clearProfile() +void ColorProfileImpl::_clearProfile() { _profileSpace = icSigRgbData; @@ -230,9 +292,9 @@ void ColorProfile::_clearProfile() cmsDeleteTransform( _gamutTransf ); _gamutTransf = 0; } - if ( profHandle ) { - cmsCloseProfile( profHandle ); - profHandle = 0; + if ( _profHandle ) { + cmsCloseProfile( _profHandle ); + _profHandle = 0; } } #endif // ENABLE_LCMS @@ -309,13 +371,13 @@ void ColorProfile::set( SPObject *object, unsigned key, gchar const *value ) // the w3c specs. All absolute and relative issues are considered org::w3c::dom::URI cprofUri = docUri.resolve(hrefUri); gchar* fullname = g_uri_unescape_string(cprofUri.getNativePath().c_str(), ""); - cprof->_clearProfile(); - cprof->profHandle = cmsOpenProfileFromFile( fullname, "r" ); - if ( cprof->profHandle ) { - cprof->_profileSpace = cmsGetColorSpace( cprof->profHandle ); - cprof->_profileClass = cmsGetDeviceClass( cprof->profHandle ); + cprof->impl->_clearProfile(); + cprof->impl->_profHandle = cmsOpenProfileFromFile( fullname, "r" ); + if ( cprof->impl->_profHandle ) { + cprof->impl->_profileSpace = cmsGetColorSpace( cprof->impl->_profHandle ); + cprof->impl->_profileClass = cmsGetDeviceClass( cprof->impl->_profHandle ); } - DEBUG_MESSAGE( lcmsOne, "cmsOpenProfileFromFile( '%s'...) = %p", fullname, (void*)cprof->profHandle ); + DEBUG_MESSAGE( lcmsOne, "cmsOpenProfileFromFile( '%s'...) = %p", fullname, (void*)cprof->impl->_profHandle ); g_free(escaped); escaped = 0; g_free(fullname); @@ -423,7 +485,7 @@ struct MapMap { DWORD inForm; }; -DWORD ColorProfile::_getInputFormat( icColorSpaceSignature space ) +DWORD ColorProfileImpl::_getInputFormat( icColorSpaceSignature space ) { MapMap possible[] = { {icSigXYZData, TYPE_XYZ_16}, @@ -492,13 +554,13 @@ static SPObject* bruteFind( SPDocument* document, gchar const* name ) return result; } -cmsHPROFILE Inkscape::colorprofile_get_handle( SPDocument* document, guint* intent, gchar const* name ) +cmsHPROFILE Inkscape::CMSSystem::getHandle( SPDocument* document, guint* intent, gchar const* name ) { cmsHPROFILE prof = 0; SPObject* thing = bruteFind( document, name ); if ( thing ) { - prof = COLORPROFILE(thing)->profHandle; + prof = COLORPROFILE(thing)->impl->_profHandle; } if ( intent ) { @@ -510,35 +572,43 @@ cmsHPROFILE Inkscape::colorprofile_get_handle( SPDocument* document, guint* inte return prof; } +Inkscape::ColorSpaceSig ColorProfile::getColorSpace() const { + return ColorSpaceSigWrapper(impl->_profileSpace); +} + +Inkscape::ColorProfileClassSig ColorProfile::getProfileClass() const { + return ColorProfileClassSigWrapper(impl->_profileClass); +} + cmsHTRANSFORM ColorProfile::getTransfToSRGB8() { - if ( !_transf && profHandle ) { + if ( !impl->_transf && impl->_profHandle ) { int intent = getLcmsIntent(rendering_intent); - _transf = cmsCreateTransform( profHandle, _getInputFormat(_profileSpace), getSRGBProfile(), TYPE_BGRA_8, intent, 0 ); + impl->_transf = cmsCreateTransform( impl->_profHandle, ColorProfileImpl::_getInputFormat(impl->_profileSpace), ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, intent, 0 ); } - return _transf; + return impl->_transf; } cmsHTRANSFORM ColorProfile::getTransfFromSRGB8() { - if ( !_revTransf && profHandle ) { + if ( !impl->_revTransf && impl->_profHandle ) { int intent = getLcmsIntent(rendering_intent); - _revTransf = cmsCreateTransform( getSRGBProfile(), TYPE_BGRA_8, profHandle, _getInputFormat(_profileSpace), intent, 0 ); + impl->_revTransf = cmsCreateTransform( ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, impl->_profHandle, ColorProfileImpl::_getInputFormat(impl->_profileSpace), intent, 0 ); } - return _revTransf; + return impl->_revTransf; } cmsHTRANSFORM ColorProfile::getTransfGamutCheck() { - if ( !_gamutTransf ) { - _gamutTransf = cmsCreateProofingTransform(getSRGBProfile(), TYPE_BGRA_8, getNULLProfile(), TYPE_GRAY_8, profHandle, INTENT_RELATIVE_COLORIMETRIC, INTENT_RELATIVE_COLORIMETRIC, (cmsFLAGS_GAMUTCHECK|cmsFLAGS_SOFTPROOFING)); + if ( !impl->_gamutTransf ) { + impl->_gamutTransf = cmsCreateProofingTransform(ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, ColorProfileImpl::getNULLProfile(), TYPE_GRAY_8, impl->_profHandle, INTENT_RELATIVE_COLORIMETRIC, INTENT_RELATIVE_COLORIMETRIC, (cmsFLAGS_GAMUTCHECK|cmsFLAGS_SOFTPROOFING)); } - return _gamutTransf; + return impl->_gamutTransf; } bool ColorProfile::GamutCheck(SPColor color){ BYTE outofgamut = 0; - + guint32 val = color.toRGBA32(0); guchar check_color[4] = { SP_RGBA32_R_U(val), @@ -584,9 +654,9 @@ ProfileInfo::ProfileInfo( cmsHPROFILE prof, Glib::ustring const & path ) static std::vector<ProfileInfo> knownProfiles; -std::vector<Glib::ustring> Inkscape::colorprofile_get_display_names() +std::vector<Glib::ustring> Inkscape::CMSSystem::getDisplayNames() { - colorprofile_load_profiles(); + loadProfiles(); std::vector<Glib::ustring> result; for ( std::vector<ProfileInfo>::iterator it = knownProfiles.begin(); it != knownProfiles.end(); ++it ) { @@ -598,9 +668,9 @@ std::vector<Glib::ustring> Inkscape::colorprofile_get_display_names() return result; } -std::vector<Glib::ustring> Inkscape::colorprofile_get_softproof_names() +std::vector<Glib::ustring> Inkscape::CMSSystem::getSoftproofNames() { - colorprofile_load_profiles(); + loadProfiles(); std::vector<Glib::ustring> result; for ( std::vector<ProfileInfo>::iterator it = knownProfiles.begin(); it != knownProfiles.end(); ++it ) { @@ -612,9 +682,9 @@ std::vector<Glib::ustring> Inkscape::colorprofile_get_softproof_names() return result; } -Glib::ustring Inkscape::get_path_for_profile(Glib::ustring const& name) +Glib::ustring Inkscape::CMSSystem::getPathForProfile(Glib::ustring const& name) { - colorprofile_load_profiles(); + loadProfiles(); Glib::ustring result; for ( std::vector<ProfileInfo>::iterator it = knownProfiles.begin(); it != knownProfiles.end(); ++it ) { @@ -626,9 +696,34 @@ Glib::ustring Inkscape::get_path_for_profile(Glib::ustring const& name) return result; } + +void Inkscape::CMSSystem::doTransform(cmsHTRANSFORM transform, void *inBuf, void *outBuf, unsigned int size) +{ + cmsDoTransform(transform, inBuf, outBuf, size); +} + +bool Inkscape::CMSSystem::isPrintColorSpace(ColorProfile const *profile) +{ + bool isPrint = false; + if ( profile ) { + ColorSpaceSigWrapper colorspace = profile->getColorSpace(); + isPrint = (colorspace == icSigCmykData) || (colorspace == icSigCmyData); + } + return isPrint; +} + +gint Inkscape::CMSSystem::getChannelCount(ColorProfile const *profile) +{ + gint count = 0; + if ( profile ) { + count = _cmsChannelsOf( asICColorSpaceSig(profile->getColorSpace()) ); + } + return count; +} + #endif // ENABLE_LCMS -std::list<Glib::ustring> ColorProfile::getBaseProfileDirs() { +std::vector<Glib::ustring> ColorProfile::getBaseProfileDirs() { #if ENABLE_LCMS static bool warnSet = false; if (!warnSet) { @@ -636,7 +731,7 @@ std::list<Glib::ustring> ColorProfile::getBaseProfileDirs() { warnSet = true; } #endif // ENABLE_LCMS - std::list<Glib::ustring> sources; + std::vector<Glib::ustring> sources; gchar* base = profile_path("XXX"); { @@ -662,10 +757,10 @@ std::list<Glib::ustring> ColorProfile::getBaseProfileDirs() { // On OS X: { bool onOSX = false; - std::list<Glib::ustring> possible; + std::vector<Glib::ustring> possible; possible.push_back("/System/Library/ColorSync/Profiles"); possible.push_back("/Library/ColorSync/Profiles"); - for ( std::list<Glib::ustring>::const_iterator it = possible.begin(); it != possible.end(); ++it ) { + for ( std::vector<Glib::ustring>::const_iterator it = possible.begin(); it != possible.end(); ++it ) { if ( g_file_test(it->c_str(), G_FILE_TEST_EXISTS) && g_file_test(it->c_str(), G_FILE_TEST_IS_DIR) ) { sources.push_back(it->c_str()); onOSX = true; @@ -738,11 +833,15 @@ static bool isIccFile( gchar const *filepath ) return isIccFile; } -std::list<Glib::ustring> ColorProfile::getProfileFiles() +std::vector<Glib::ustring> ColorProfile::getProfileFiles() { - std::list<Glib::ustring> files; + std::vector<Glib::ustring> files; - std::list<Glib::ustring> sources = ColorProfile::getBaseProfileDirs(); + std::list<Glib::ustring> sources; + { + std::vector<Glib::ustring> tmp = ColorProfile::getBaseProfileDirs(); + sources.insert(sources.begin(), tmp.begin(), tmp.end()); + } for ( std::list<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) { if ( g_file_test( it->c_str(), G_FILE_TEST_EXISTS ) && g_file_test( it->c_str(), G_FILE_TEST_IS_DIR ) ) { GError *err = 0; @@ -775,7 +874,28 @@ std::list<Glib::ustring> ColorProfile::getProfileFiles() } #if ENABLE_LCMS +#endif // ENABLE_LCMS + +std::vector<std::pair<Glib::ustring, Glib::ustring> > ColorProfile::getProfileFilesWithNames() +{ + std::vector<std::pair<Glib::ustring, Glib::ustring> > result; + +#if ENABLE_LCMS + std::vector<Glib::ustring> files = getProfileFiles(); + for ( std::vector<Glib::ustring>::const_iterator it = files.begin(); it != files.end(); ++it ) { + cmsHPROFILE hProfile = cmsOpenProfileFromFile(it->c_str(), "r"); + if ( hProfile ) { + Glib::ustring name = getNameFromProfile(hProfile); + result.push_back( std::make_pair(*it, name) ); + cmsCloseProfile(hProfile); + } + } +#endif // ENABLE_LCMS + + return result; +} +#if ENABLE_LCMS int errorHandlerCB(int ErrorCode, const char *ErrorText) { g_message("lcms: Error %d; %s", ErrorCode, ErrorText); @@ -783,9 +903,28 @@ int errorHandlerCB(int ErrorCode, const char *ErrorText) return 1; } -/* This function loads or refreshes data in knownProfiles. - * Call it at the start of every call that requires this data. */ -void Inkscape::colorprofile_load_profiles(bool force_refresh) +namespace +{ +Glib::ustring getNameFromProfile(cmsHPROFILE profile) +{ + gchar const *name = 0; + if ( profile ) { + name = cmsTakeProductDesc(profile); + if ( !name ) { + name = cmsTakeProductName(profile); + } + if ( name && !g_utf8_validate(name, -1, NULL) ) { + name = _("(invalid UTF-8 string)"); + } + } + return (name) ? name : _("None"); +} + +/** + * This function loads or refreshes data in knownProfiles. + * Call it at the start of every call that requires this data. + */ +void loadProfiles() { static bool error_handler_set = false; if (!error_handler_set) { @@ -794,32 +933,34 @@ void Inkscape::colorprofile_load_profiles(bool force_refresh) } static bool profiles_searched = false; - if (profiles_searched && !force_refresh) return; - - knownProfiles.clear(); - std::list<Glib::ustring> files = ColorProfile::getProfileFiles(); - - for ( std::list<Glib::ustring>::const_iterator it = files.begin(); it != files.end(); ++it ) { - cmsHPROFILE prof = cmsOpenProfileFromFile( it->c_str(), "r" ); - if ( prof ) { - ProfileInfo info( prof, Glib::filename_to_utf8( it->c_str() ) ); - cmsCloseProfile( prof ); + if ( !profiles_searched ) { + knownProfiles.clear(); + std::vector<Glib::ustring> files = ColorProfile::getProfileFiles(); - bool sameName = false; - for ( std::vector<ProfileInfo>::iterator it = knownProfiles.begin(); it != knownProfiles.end(); ++it ) { - if ( it->getName() == info.getName() ) { - sameName = true; - break; + for ( std::vector<Glib::ustring>::const_iterator it = files.begin(); it != files.end(); ++it ) { + cmsHPROFILE prof = cmsOpenProfileFromFile( it->c_str(), "r" ); + if ( prof ) { + ProfileInfo info( prof, Glib::filename_to_utf8( it->c_str() ) ); + cmsCloseProfile( prof ); + prof = 0; + + bool sameName = false; + for ( std::vector<ProfileInfo>::iterator it = knownProfiles.begin(); it != knownProfiles.end(); ++it ) { + if ( it->getName() == info.getName() ) { + sameName = true; + break; + } } - } - if ( !sameName ) { - knownProfiles.push_back(info); + if ( !sameName ) { + knownProfiles.push_back(info); + } } } + profiles_searched = true; } - profiles_searched = true; } +} // namespace static bool gamutWarn = false; static Gdk::Color lastGamutColor("#808080"); @@ -831,12 +972,13 @@ static int lastIntent = INTENT_PERCEPTUAL; static int lastProofIntent = INTENT_PERCEPTUAL; static cmsHTRANSFORM transf = 0; -cmsHPROFILE Inkscape::colorprofile_get_system_profile_handle() +namespace { +cmsHPROFILE getSystemProfileHandle() { static cmsHPROFILE theOne = 0; static Glib::ustring lastURI; - colorprofile_load_profiles(); + loadProfiles(); Inkscape::Preferences *prefs = Inkscape::Preferences::get(); Glib::ustring uri = prefs->getString("/options/displayprofile/uri"); @@ -884,12 +1026,12 @@ cmsHPROFILE Inkscape::colorprofile_get_system_profile_handle() } -cmsHPROFILE Inkscape::colorprofile_get_proof_profile_handle() +cmsHPROFILE getProofProfileHandle() { static cmsHPROFILE theOne = 0; static Glib::ustring lastURI; - colorprofile_load_profiles(); + loadProfiles(); Inkscape::Preferences *prefs = Inkscape::Preferences::get(); bool which = prefs->getBool( "/options/softproof/enable"); @@ -942,10 +1084,11 @@ cmsHPROFILE Inkscape::colorprofile_get_proof_profile_handle() return theOne; } +} // namespace static void free_transforms(); -cmsHTRANSFORM Inkscape::colorprofile_get_display_transform() +cmsHTRANSFORM Inkscape::CMSSystem::getDisplayTransform() { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); bool fromDisplay = prefs->getBool( "/options/displayprofile/from_display"); @@ -988,8 +1131,8 @@ cmsHTRANSFORM Inkscape::colorprofile_get_display_transform() } // Fetch these now, as they might clear the transform as a side effect. - cmsHPROFILE hprof = Inkscape::colorprofile_get_system_profile_handle(); - cmsHPROFILE proofProf = hprof ? Inkscape::colorprofile_get_proof_profile_handle() : 0; + cmsHPROFILE hprof = getSystemProfileHandle(); + cmsHPROFILE proofProf = hprof ? getProofProfileHandle() : 0; if ( !transf ) { if ( hprof && proofProf ) { @@ -1006,9 +1149,9 @@ cmsHTRANSFORM Inkscape::colorprofile_get_display_transform() dwFlags |= cmsFLAGS_PRESERVEBLACK; } #endif // defined(cmsFLAGS_PRESERVEBLACK) - transf = cmsCreateProofingTransform( ColorProfile::getSRGBProfile(), TYPE_BGRA_8, hprof, TYPE_BGRA_8, proofProf, intent, proofIntent, dwFlags ); + transf = cmsCreateProofingTransform( ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, hprof, TYPE_BGRA_8, proofProf, intent, proofIntent, dwFlags ); } else if ( hprof ) { - transf = cmsCreateTransform( ColorProfile::getSRGBProfile(), TYPE_BGRA_8, hprof, TYPE_BGRA_8, intent, 0 ); + transf = cmsCreateTransform( ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, hprof, TYPE_BGRA_8, intent, 0 ); } } @@ -1056,7 +1199,7 @@ void free_transforms() } } -Glib::ustring Inkscape::colorprofile_get_display_id( int screen, int monitor ) +Glib::ustring Inkscape::CMSSystem::getDisplayId( int screen, int monitor ) { Glib::ustring id; @@ -1071,7 +1214,7 @@ Glib::ustring Inkscape::colorprofile_get_display_id( int screen, int monitor ) return id; } -Glib::ustring Inkscape::colorprofile_set_display_per( gpointer buf, guint bufLen, int screen, int monitor ) +Glib::ustring Inkscape::CMSSystem::setDisplayPer( gpointer buf, guint bufLen, int screen, int monitor ) { Glib::ustring id; @@ -1104,7 +1247,7 @@ Glib::ustring Inkscape::colorprofile_set_display_per( gpointer buf, guint bufLen return id; } -cmsHTRANSFORM Inkscape::colorprofile_get_display_per( Glib::ustring const& id ) +cmsHTRANSFORM Inkscape::CMSSystem::getDisplayPer( Glib::ustring const& id ) { cmsHTRANSFORM result = 0; if ( id.empty() ) { @@ -1149,7 +1292,7 @@ cmsHTRANSFORM Inkscape::colorprofile_get_display_per( Glib::ustring const& id ) } // Fetch these now, as they might clear the transform as a side effect. - cmsHPROFILE proofProf = item.hprof ? Inkscape::colorprofile_get_proof_profile_handle() : 0; + cmsHPROFILE proofProf = item.hprof ? getProofProfileHandle() : 0; if ( !item.transf ) { if ( item.hprof && proofProf ) { @@ -1166,9 +1309,9 @@ cmsHTRANSFORM Inkscape::colorprofile_get_display_per( Glib::ustring const& id ) dwFlags |= cmsFLAGS_PRESERVEBLACK; } #endif // defined(cmsFLAGS_PRESERVEBLACK) - item.transf = cmsCreateProofingTransform( ColorProfile::getSRGBProfile(), TYPE_BGRA_8, item.hprof, TYPE_BGRA_8, proofProf, intent, proofIntent, dwFlags ); + item.transf = cmsCreateProofingTransform( ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, item.hprof, TYPE_BGRA_8, proofProf, intent, proofIntent, dwFlags ); } else if ( item.hprof ) { - item.transf = cmsCreateTransform( ColorProfile::getSRGBProfile(), TYPE_BGRA_8, item.hprof, TYPE_BGRA_8, intent, 0 ); + item.transf = cmsCreateTransform( ColorProfileImpl::getSRGBProfile(), TYPE_BGRA_8, item.hprof, TYPE_BGRA_8, intent, 0 ); } } diff --git a/src/color-profile.h b/src/color-profile.h index e1dd298bd..a9724defc 100644 --- a/src/color-profile.h +++ b/src/color-profile.h @@ -5,12 +5,11 @@ * SPColorProfile: SVG <color-profile> implementation */ +#include <vector> #include <glib/gtypes.h> #include <sp-object.h> #include <glibmm/ustring.h> -#if ENABLE_LCMS -#include <lcms.h> -#endif // ENABLE_LCMS +#include "cms-color-types.h" namespace Inkscape { @@ -23,6 +22,9 @@ enum { RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5 }; +class ColorProfileImpl; + + /// The SPColorProfile vtable. struct ColorProfileClass { SPObjectClass parent_class; @@ -30,17 +32,20 @@ struct ColorProfileClass { /** Color Profile. */ struct ColorProfile : public SPObject { + friend cmsHPROFILE colorprofile_get_handle( SPDocument*, guint*, gchar const* ); + friend class CMSSystem; + static GType getType(); static void classInit( ColorProfileClass *klass ); - static std::list<Glib::ustring> getBaseProfileDirs(); - static std::list<Glib::ustring> getProfileFiles(); + static std::vector<Glib::ustring> getBaseProfileDirs(); + static std::vector<Glib::ustring> getProfileFiles(); + static std::vector<std::pair<Glib::ustring, Glib::ustring> > getProfileFilesWithNames(); #if ENABLE_LCMS - static cmsHPROFILE getSRGBProfile(); - static cmsHPROFILE getNULLProfile(); - - icColorSpaceSignature getColorSpace() const {return _profileSpace;} - icProfileClassSignature getProfileClass() const {return _profileClass;} + //icColorSpaceSignature getColorSpace() const; + ColorSpaceSig getColorSpace() const; + //icProfileClassSignature getProfileClass() const; + ColorProfileClassSig getProfileClass() const; cmsHTRANSFORM getTransfToSRGB8(); cmsHTRANSFORM getTransfFromSRGB8(); cmsHTRANSFORM getTransfGamutCheck(); @@ -53,9 +58,6 @@ struct ColorProfile : public SPObject { gchar* name; gchar* intentStr; guint rendering_intent; -#if ENABLE_LCMS - cmsHPROFILE profHandle; -#endif // ENABLE_LCMS private: static void init( ColorProfile *cprof ); @@ -64,23 +66,20 @@ private: static void build( SPObject *object, SPDocument *document, Inkscape::XML::Node *repr ); static void set( SPObject *object, unsigned key, gchar const *value ); static Inkscape::XML::Node *write( SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags ); -#if ENABLE_LCMS - static DWORD _getInputFormat( icColorSpaceSignature space ); - void _clearProfile(); - - static cmsHPROFILE _sRGBProf; - static cmsHPROFILE _NullProf; - icProfileClassSignature _profileClass; - icColorSpaceSignature _profileSpace; - cmsHTRANSFORM _transf; - cmsHTRANSFORM _revTransf; - cmsHTRANSFORM _gamutTransf; -#endif // ENABLE_LCMS + ColorProfileImpl *impl; }; +GType colorprofile_get_type(); + } // namespace Inkscape +#define COLORPROFILE_TYPE (Inkscape::colorprofile_get_type()) +#define COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORPROFILE_TYPE, Inkscape::ColorProfile)) +#define COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), COLORPROFILE_TYPE, Inkscape::ColorProfileClass)) +#define IS_COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), COLORPROFILE_TYPE)) +#define IS_COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), COLORPROFILE_TYPE)) + #endif // !SEEN_COLOR_PROFILE_H /* diff --git a/src/display/cairo-utils.cpp b/src/display/cairo-utils.cpp index 90f65c33e..8b75f09a6 100644 --- a/src/display/cairo-utils.cpp +++ b/src/display/cairo-utils.cpp @@ -345,6 +345,18 @@ ink_cairo_surface_create_for_argb32_pixbuf(GdkPixbuf *pb) return pbs; } +/** @brief Cleanup function for GdkPixbuf. + * This function should be passed as the GdkPixbufDestroyNotify parameter + * to gdk_pixbuf_new_from_data when creating a GdkPixbuf backed by + * a Cairo surface. + */ +void +ink_cairo_pixbuf_cleanup(guchar *pixels, void *data) +{ + cairo_surface_t *surface = reinterpret_cast<cairo_surface_t*>(data); + cairo_surface_destroy(surface); +} + /** @brief Create an exact copy of a surface. * Creates a surface that has the same type, content type, dimensions and contents * as the specified surface. */ diff --git a/src/display/cairo-utils.h b/src/display/cairo-utils.h index 0c2ac2dd6..1de88785d 100644 --- a/src/display/cairo-utils.h +++ b/src/display/cairo-utils.h @@ -106,6 +106,7 @@ void convert_pixels_argb32_to_pixbuf(guchar *data, int w, int h, int rs); void convert_pixbuf_normal_to_argb32(GdkPixbuf *); void convert_pixbuf_argb32_to_normal(GdkPixbuf *); cairo_surface_t *ink_cairo_surface_create_for_argb32_pixbuf(GdkPixbuf *pb); +void ink_cairo_pixbuf_cleanup(guchar *pixels, void *surface); G_GNUC_CONST guint32 argb32_from_pixbuf(guint32 in); G_GNUC_CONST guint32 pixbuf_from_argb32(guint32 in); diff --git a/src/display/nr-arena-glyphs.cpp b/src/display/nr-arena-glyphs.cpp index b76e87a78..d09f66a2f 100644 --- a/src/display/nr-arena-glyphs.cpp +++ b/src/display/nr-arena-glyphs.cpp @@ -295,28 +295,26 @@ nr_arena_glyphs_group_render(cairo_t *ct, NRArenaItem *item, NRRectL *area, NRPi } if (item->arena->rendermode == Inkscape::RENDERMODE_OUTLINE) { - + cairo_save(ct); guint32 rgba = item->arena->outlinecolor; ink_cairo_set_source_rgba32(ct, rgba); cairo_set_tolerance(ct, 1.25); // low quality, but good enough for outline mode - - NRRect temp(area->x0, area->y0, area->x1, area->y1); - Geom::OptRect area_2geom = temp.upgrade_2geom(); + cairo_new_path(ct); + ink_cairo_transform(ct, ggroup->ctm); for (child = group->children; child != NULL; child = child->next) { NRArenaGlyphs *g = NR_ARENA_GLYPHS(child); Geom::PathVector const * pathv = g->font->PathVector(g->glyph); - Geom::Affine transform = g->g_transform * group->ctm; + Geom::Affine transform = g->g_transform; - cairo_new_path(ct); cairo_save(ct); ink_cairo_transform(ct, transform); feed_pathvector_to_cairo (ct, *pathv); cairo_fill(ct); cairo_restore(ct); } - + cairo_restore(ct); return item->state; } diff --git a/src/display/sp-canvas.cpp b/src/display/sp-canvas.cpp index 29729ef6c..f6446bdd7 100644 --- a/src/display/sp-canvas.cpp +++ b/src/display/sp-canvas.cpp @@ -30,9 +30,7 @@ #include "preferences.h" #include "inkscape.h" #include "sodipodi-ctrlrect.h" -#if ENABLE_LCMS -#include "color-profile-fns.h" -#endif // ENABLE_LCMS +#include "cms-system.h" #include "display/rendermode.h" #include "display/cairo-utils.h" #include "debug/gdk-event-latency-tracker.h" @@ -1696,9 +1694,9 @@ static void sp_canvas_paint_single_buffer(SPCanvas *canvas, int x0, int y0, int Inkscape::Preferences *prefs = Inkscape::Preferences::get(); bool fromDisplay = prefs->getBool( "/options/displayprofile/from_display"); if ( fromDisplay ) { - transf = Inkscape::colorprofile_get_display_per( canvas->cms_key ? *(canvas->cms_key) : "" ); + transf = Inkscape::CMSSystem::getDisplayPer( canvas->cms_key ? *(canvas->cms_key) : "" ); } else { - transf = Inkscape::colorprofile_get_display_transform(); + transf = Inkscape::CMSSystem::getDisplayTransform(); } if (transf) { @@ -1707,7 +1705,7 @@ static void sp_canvas_paint_single_buffer(SPCanvas *canvas, int x0, int y0, int int stride = cairo_image_surface_get_stride(imgs); for (int i=0; i<h; ++i) { unsigned char *row = px + i*stride; - cmsDoTransform(transf, row, row, w); + Inkscape::CMSSystem::doTransform(transf, row, row, w); } cairo_surface_mark_dirty(imgs); } diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index 2f3e2cd65..e7599d996 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -855,6 +855,7 @@ void Script::checkStderr (const Glib::ustring &data, vbox->pack_start(*scrollwindow, true, true, 5 /* fix these */); + warning.maximize(); warning.run(); return; diff --git a/src/extension/internal/cairo-render-context.cpp b/src/extension/internal/cairo-render-context.cpp index 1c1dac028..22b68b0ca 100644 --- a/src/extension/internal/cairo-render-context.cpp +++ b/src/extension/internal/cairo-render-context.cpp @@ -1419,7 +1419,7 @@ CairoRenderContext::renderPathVector(Geom::PathVector const & pathv, SPStyle con return true; } -bool CairoRenderContext::renderImage(guchar *px, unsigned int w, unsigned int h, unsigned int rs, +bool CairoRenderContext::renderImage(GdkPixbuf *pb, Geom::Affine const *image_transform, SPStyle const * /*style*/) { g_assert( _is_valid ); @@ -1428,63 +1428,18 @@ bool CairoRenderContext::renderImage(guchar *px, unsigned int w, unsigned int h, return true; } - guchar* px_rgba = NULL; - guint64 size = 4L * (guint64)w * (guint64)h; + int w = gdk_pixbuf_get_width (pb); + int h = gdk_pixbuf_get_height (pb); - if(size < (guint64)G_MAXSIZE) { - px_rgba = (guchar*)g_try_malloc(4 * w * h); - if (!px_rgba) { - g_warning ("Could not allocate %lu bytes for pixel buffer!", (long unsigned) size); - return false; - } - } else { - g_warning ("the requested memory exceeds the system limit"); - return false; - } - - - float opacity; - if (_state->merge_opacity) - opacity = _state->opacity; - else - opacity = 1.0; - - // make a copy of the original pixbuf with premultiplied alpha - // if we pass the original pixbuf it will get messed up - /// @todo optimize this code, it costs a lot of time - for (unsigned i = 0; i < h; i++) { - guchar const *src = px + i * rs; - guint32 *dst = (guint32 *)(px_rgba + i * rs); - for (unsigned j = 0; j < w; j++) { - guchar r, g, b, alpha_dst; - - // calculate opacity-modified alpha - alpha_dst = src[3]; - if ((opacity != 1.0) && _vector_based_target) - alpha_dst = (guchar)ceil((float)alpha_dst * opacity); - - // premul alpha (needed because this will be undone by cairo-pdf) - r = src[0]*alpha_dst/255; - g = src[1]*alpha_dst/255; - b = src[2]*alpha_dst/255; - - *dst = (((alpha_dst) << 24) | (((r)) << 16) | (((g)) << 8) | (b)); - - dst++; // pointer to 4byte variables - src += 4; // pointer to 1byte variables - } - } + // TODO: reenable merge_opacity if useful + float opacity = _state->opacity; - cairo_surface_t *image_surface = cairo_image_surface_create_for_data(px_rgba, CAIRO_FORMAT_ARGB32, w, h, w * 4); + cairo_surface_t *image_surface = ink_cairo_surface_create_for_argb32_pixbuf(pb); if (cairo_surface_status(image_surface)) { TRACE(("Image surface creation failed:\n%s\n", cairo_status_to_string(cairo_surface_status(image_surface)))); return false; } - // setup automatic freeing of the image data when destroying the surface - static cairo_user_data_key_t key; - cairo_surface_set_user_data(image_surface, &key, px_rgba, (cairo_destroy_func_t)g_free); - cairo_save(_cr); // scaling by width & height is not needed because it will be done by Cairo @@ -1499,16 +1454,10 @@ bool CairoRenderContext::renderImage(guchar *px, unsigned int w, unsigned int h, cairo_rectangle(_cr, 0, 0, w, h); cairo_clip(_cr); } - - if (_vector_based_target) - cairo_paint(_cr); - else - cairo_paint_with_alpha(_cr, opacity); + cairo_paint_with_alpha(_cr, opacity); cairo_restore(_cr); - cairo_surface_destroy(image_surface); - return true; } diff --git a/src/extension/internal/cairo-render-context.h b/src/extension/internal/cairo-render-context.h index 68a3c6537..d4117ff7e 100644 --- a/src/extension/internal/cairo-render-context.h +++ b/src/extension/internal/cairo-render-context.h @@ -139,7 +139,7 @@ public: /* Rendering methods */ bool renderPathVector(Geom::PathVector const & pathv, SPStyle const *style, NRRect const *pbox); - bool renderImage(unsigned char *px, unsigned int w, unsigned int h, unsigned int rs, + bool renderImage(GdkPixbuf *pb, Geom::Affine const *image_transform, SPStyle const *style); bool renderGlyphtext(PangoFont *font, Geom::Affine const *font_matrix, std::vector<CairoGlyphInfo> const &glyphtext, SPStyle const *style); diff --git a/src/extension/internal/cairo-renderer.cpp b/src/extension/internal/cairo-renderer.cpp index bbafd7e94..1e550f7d1 100644 --- a/src/extension/internal/cairo-renderer.cpp +++ b/src/extension/internal/cairo-renderer.cpp @@ -41,6 +41,7 @@ #include "display/nr-arena-group.h" #include "display/curve.h" #include "display/canvas-bpath.h" +#include "display/cairo-utils.h" #include "sp-item.h" #include "sp-item-group.h" #include "style.h" @@ -345,18 +346,15 @@ static void sp_flowtext_render(SPItem *item, CairoRenderContext *ctx) static void sp_image_render(SPItem *item, CairoRenderContext *ctx) { SPImage *image; - guchar *px; - int w, h, rs; + int w, h; image = SP_IMAGE (item); if (!image->pixbuf) return; if ((image->width.computed <= 0.0) || (image->height.computed <= 0.0)) return; - px = gdk_pixbuf_get_pixels (image->pixbuf); w = gdk_pixbuf_get_width (image->pixbuf); h = gdk_pixbuf_get_height (image->pixbuf); - rs = gdk_pixbuf_get_rowstride (image->pixbuf); double x = image->x.computed; double y = image->y.computed; @@ -376,7 +374,7 @@ static void sp_image_render(SPItem *item, CairoRenderContext *ctx) Geom::Scale s(width / (double)w, height / (double)h); Geom::Affine t(s * tp); - ctx->renderImage (px, w, h, rs, &t, item->style); + ctx->renderImage (image->pixbuf, &t, item->style); } static void sp_symbol_render(SPItem *item, CairoRenderContext *ctx) @@ -477,9 +475,11 @@ static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx) } // The width and height of the bitmap in pixels - unsigned width = (unsigned) floor ((bbox->max()[Geom::X] - bbox->min()[Geom::X]) * (res / PX_PER_IN)); - unsigned height =(unsigned) floor ((bbox->max()[Geom::Y] - bbox->min()[Geom::Y]) * (res / PX_PER_IN)); - + unsigned width = ceil((bbox->max()[Geom::X] - bbox->min()[Geom::X]) * (res / PX_PER_IN)); + unsigned height = ceil((bbox->max()[Geom::Y] - bbox->min()[Geom::Y]) * (res / PX_PER_IN)); + + if (width == 0 || height == 0) return; + // Scale to exactly fit integer bitmap inside bounding box double scale_x = (bbox->max()[Geom::X] - bbox->min()[Geom::X]) / width; double scale_y = (bbox->max()[Geom::Y] - bbox->min()[Geom::Y]) / height; @@ -516,11 +516,9 @@ static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx) if (pb) { TEST(gdk_pixbuf_save( pb, "bitmap.png", "png", NULL, NULL )); - unsigned char *px = gdk_pixbuf_get_pixels (pb); - unsigned int w = gdk_pixbuf_get_width(pb); - unsigned int h = gdk_pixbuf_get_height(pb); - unsigned int rs = gdk_pixbuf_get_rowstride(pb); - ctx->renderImage(px, w, h, rs, &t, item->style); + // TODO this is stupid - we just converted to pixbuf format when generating the bitmap! + convert_pixbuf_normal_to_argb32(pb); + ctx->renderImage(pb, &t, item->style); gdk_pixbuf_unref(pb); pb = 0; } diff --git a/src/extension/internal/filter/abc.h b/src/extension/internal/filter/abc.h index 8368d3f3b..cf2bc8927 100755 --- a/src/extension/internal/filter/abc.h +++ b/src/extension/internal/filter/abc.h @@ -218,7 +218,7 @@ ColorShift::get_filter_text (Inkscape::Extension::Extension * ext) * Smoothness (0.->10., default 6.) -> blur (stdDeviation) * Elevation (0->360, default 25) -> feDistantLight (elevation) * Azimuth (0->360, default 235) -> feDistantLight (azimuth) - * Lightning color (guint, default -1 [white]) -> diffuse (lighting-color) + * Lighting color (guint, default -1 [white]) -> diffuse (lighting-color) */ class DiffuseLight : public Inkscape::Extension::Internal::Filter::Filter { @@ -237,7 +237,7 @@ public: "<param name=\"smooth\" gui-text=\"" N_("Smoothness:") "\" type=\"float\" appearance=\"full\" min=\"0.0\" max=\"10\">6</param>\n" "<param name=\"elevation\" gui-text=\"" N_("Elevation (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">25</param>\n" "<param name=\"azimuth\" gui-text=\"" N_("Azimuth (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">235</param>\n" - "<param name=\"color\" gui-text=\"" N_("Lightning color") "\" type=\"color\">-1</param>\n" + "<param name=\"color\" gui-text=\"" N_("Lighting color") "\" type=\"color\">-1</param>\n" "<effect>\n" "<object-type>all</object-type>\n" "<effects-menu>\n" @@ -355,7 +355,7 @@ Feather::get_filter_text (Inkscape::Extension::Extension * ext) * Brightness (0.0->5., default .9) -> specular (specularConstant) * Elevation (0->360, default 60) -> feDistantLight (elevation) * Azimuth (0->360, default 225) -> feDistantLight (azimuth) - * Lightning color (guint, default -1 [white]) -> specular (lighting-color) + * Lighting color (guint, default -1 [white]) -> specular (lighting-color) */ class MatteJelly : public Inkscape::Extension::Internal::Filter::Filter { @@ -375,7 +375,7 @@ public: "<param name=\"bright\" gui-text=\"" N_("Brightness:") "\" type=\"float\" appearance=\"full\" precision=\"2\" min=\"0.00\" max=\"5.00\">0.9</param>\n" "<param name=\"elevation\" gui-text=\"" N_("Elevation (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">60</param>\n" "<param name=\"azimuth\" gui-text=\"" N_("Azimuth (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">225</param>\n" - "<param name=\"color\" gui-text=\"" N_("Lightning color") "\" type=\"color\">-1</param>\n" + "<param name=\"color\" gui-text=\"" N_("Lighting color") "\" type=\"color\">-1</param>\n" "<effect>\n" "<object-type>all</object-type>\n" "<effects-menu>\n" @@ -795,7 +795,7 @@ Silhouette::get_filter_text (Inkscape::Extension::Extension * ext) * Brightness (0.0->5., default 1.) -> specular (specularConstant) * Elevation (0->360, default 45) -> feDistantLight (elevation) * Azimuth (0->360, default 235) -> feDistantLight (azimuth) - * Lightning color (guint, default -1 [white]) -> specular (lighting-color) + * Lighting color (guint, default -1 [white]) -> specular (lighting-color) */ class SpecularLight : public Inkscape::Extension::Internal::Filter::Filter { @@ -815,7 +815,7 @@ public: "<param name=\"bright\" gui-text=\"" N_("Brightness:") "\" type=\"float\" appearance=\"full\" min=\"0.0\" max=\"5\">1</param>\n" "<param name=\"elevation\" gui-text=\"" N_("Elevation (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">45</param>\n" "<param name=\"azimuth\" gui-text=\"" N_("Azimuth (Β°):") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">235</param>\n" - "<param name=\"color\" gui-text=\"" N_("Lightning color") "\" type=\"color\">-1</param>\n" + "<param name=\"color\" gui-text=\"" N_("Lighting color") "\" type=\"color\">-1</param>\n" "<effect>\n" "<object-type>all</object-type>\n" "<effects-menu>\n" diff --git a/src/helper/pixbuf-ops.cpp b/src/helper/pixbuf-ops.cpp index 226042337..e1ced31b4 100644 --- a/src/helper/pixbuf-ops.cpp +++ b/src/helper/pixbuf-ops.cpp @@ -108,6 +108,7 @@ sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename*/, GSList *items_only) { + if (width == 0 || height == 0) return NULL; GdkPixbuf* pixbuf = NULL; /* Create new arena for offscreen rendering*/ @@ -168,8 +169,8 @@ sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename*/, pixbuf = gdk_pixbuf_new_from_data(cairo_image_surface_get_data(surface), GDK_COLORSPACE_RGB, TRUE, 8, width, height, cairo_image_surface_get_stride(surface), - (GdkPixbufDestroyNotify) cairo_surface_destroy, - NULL); + ink_cairo_pixbuf_cleanup, + surface); convert_pixbuf_argb32_to_normal(pixbuf); } else diff --git a/src/interface.cpp b/src/interface.cpp index c7946cf18..9aa5cad31 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -56,10 +56,6 @@ #include "message-context.h" #include "ui/uxmanager.h" -// Added for color drag-n-drop -#if ENABLE_LCMS -#include "lcms.h" -#endif // ENABLE_LCMS #include "display/sp-canvas.h" #include "color.h" #include "svg/svg-color.h" diff --git a/src/libgdl/CMakeLists.txt b/src/libgdl/CMakeLists.txt index befb6edb7..3457337e9 100644 --- a/src/libgdl/CMakeLists.txt +++ b/src/libgdl/CMakeLists.txt @@ -1,17 +1,17 @@ set(libgdl_SRC - gdl-dock.c gdl-dock-bar.c - gdl-dock-item.c + gdl-dock-item-button-image.c gdl-dock-item-grip.c + gdl-dock-item.c gdl-dock-master.c gdl-dock-notebook.c gdl-dock-object.c gdl-dock-paned.c gdl-dock-placeholder.c gdl-dock-tablabel.c + gdl-dock.c gdl-i18n.c - gdl-stock.c gdl-switcher.c gdl-tools.h libgdlmarshal.c @@ -21,6 +21,7 @@ set(libgdl_SRC # ------- # Headers gdl-dock-bar.h + gdl-dock-item-button-image.h gdl-dock-item-grip.h gdl-dock-item.h gdl-dock-master.h @@ -32,9 +33,8 @@ set(libgdl_SRC gdl-dock.h gdl-i18n.h gdl-stock-icons.h - gdl-stock.h gdl-switcher.h - libgdl.h + gdl.h libgdlmarshal.h libgdltypebuiltins.h ) diff --git a/src/libgdl/Makefile_insert b/src/libgdl/Makefile_insert index 5869633ea..e151fd5d6 100644 --- a/src/libgdl/Makefile_insert +++ b/src/libgdl/Makefile_insert @@ -16,7 +16,6 @@ libgdl_libgdl_a_SOURCES = \ libgdl/gdl-dock-tablabel.h \ libgdl/gdl-dock-placeholder.h \ libgdl/gdl-dock-bar.h \ - libgdl/gdl-stock.h \ libgdl/gdl-stock-icons.h \ libgdl/gdl-i18n.h \ libgdl/gdl-i18n.c \ @@ -24,6 +23,8 @@ libgdl_libgdl_a_SOURCES = \ libgdl/gdl-dock-master.c \ libgdl/gdl-dock.c \ libgdl/gdl-dock-item.c \ + libgdl/gdl-dock-item-button-image.c \ + libgdl/gdl-dock-item-button-image.h \ libgdl/gdl-dock-item-grip.h \ libgdl/gdl-dock-item-grip.c \ libgdl/gdl-dock-notebook.c \ @@ -31,7 +32,6 @@ libgdl_libgdl_a_SOURCES = \ libgdl/gdl-dock-tablabel.c \ libgdl/gdl-dock-placeholder.c \ libgdl/gdl-dock-bar.c \ - libgdl/gdl-stock.c \ libgdl/gdl-switcher.h \ libgdl/gdl-switcher.c \ libgdl/gdl-win32.h \ @@ -40,4 +40,4 @@ libgdl_libgdl_a_SOURCES = \ libgdl/libgdltypebuiltins.c \ libgdl/libgdlmarshal.h \ libgdl/libgdlmarshal.c \ - libgdl/libgdl.h + libgdl/gdl.h diff --git a/src/libgdl/gdl-dock-bar.h b/src/libgdl/gdl-dock-bar.h index 798dded20..ca6da1d26 100644 --- a/src/libgdl/gdl-dock-bar.h +++ b/src/libgdl/gdl-dock-bar.h @@ -23,7 +23,6 @@ #define __GDL_DOCK_BAR_H__ #include <gtk/gtk.h> -#include "libgdl/gdl-dock.h" G_BEGIN_DECLS diff --git a/src/libgdl/gdl-dock-item-button-image.c b/src/libgdl/gdl-dock-item-button-image.c new file mode 100644 index 000000000..f115c652c --- /dev/null +++ b/src/libgdl/gdl-dock-item-button-image.c @@ -0,0 +1,169 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * + * gdl-dock-item-button-image.c + * + * Author: Joel Holdsworth <joel@airwebreathe.org.uk> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include "gdl-dock-item-button-image.h" + +#include <math.h> +#include "gdl-tools.h" + +#define ICON_SIZE 12 + +GDL_CLASS_BOILERPLATE (GdlDockItemButtonImage, + gdl_dock_item_button_image, + GtkWidget, GTK_TYPE_WIDGET); + +static gint +gdl_dock_item_button_image_expose (GtkWidget *widget, + GdkEventExpose *event) +{ + GdlDockItemButtonImage *button_image; + GtkStyle *style; + GdkColor *color; + + g_return_val_if_fail (widget != NULL, 0); + button_image = GDL_DOCK_ITEM_BUTTON_IMAGE (widget); + + cairo_t *cr = gdk_cairo_create (event->window); + cairo_translate (cr, event->area.x, event->area.y); + + /* Set up the pen */ + cairo_set_line_width(cr, 1.0); + + style = gtk_widget_get_style (widget); + g_return_if_fail (style != NULL); + color = &style->fg[GTK_STATE_NORMAL]; + cairo_set_source_rgba(cr, color->red / 65535.0, + color->green / 65535.0, color->blue / 65535.0, 0.55); + + /* Draw the icon border */ + cairo_move_to (cr, 10.5, 2.5); + cairo_arc (cr, 10.5, 4.5, 2, -0.5 * M_PI, 0); + cairo_line_to (cr, 12.5, 10.5); + cairo_arc (cr, 10.5, 10.5, 2, 0, 0.5 * M_PI); + cairo_line_to (cr, 4.5, 12.5); + cairo_arc (cr, 4.5, 10.5, 2, 0.5 * M_PI, M_PI); + cairo_line_to (cr, 2.5, 4.5); + cairo_arc (cr, 4.5, 4.5, 2, M_PI, 1.5 * M_PI); + cairo_close_path (cr); + + cairo_stroke (cr); + + /* Draw the icon */ + cairo_new_path (cr); + + switch(button_image->image_type) { + case GDL_DOCK_ITEM_BUTTON_IMAGE_CLOSE: + cairo_move_to (cr, 4.0, 5.5); + cairo_line_to (cr, 4.0, 5.5); + cairo_line_to (cr, 6.0, 7.5); + cairo_line_to (cr, 4.0, 9.5); + cairo_line_to (cr, 5.5, 11.0); + cairo_line_to (cr, 7.5, 9.0); + cairo_line_to (cr, 9.5, 11.0); + cairo_line_to (cr, 11.0, 9.5); + cairo_line_to (cr, 9.0, 7.5); + cairo_line_to (cr, 11.0, 5.5); + cairo_line_to (cr, 9.5, 4.0); + cairo_line_to (cr, 7.5, 6.0); + cairo_line_to (cr, 5.5, 4.0); + cairo_close_path (cr); + break; + + case GDL_DOCK_ITEM_BUTTON_IMAGE_ICONIFY: + if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) { + cairo_move_to (cr, 4.5, 7.5); + cairo_line_to (cr, 10.0, 4.75); + cairo_line_to (cr, 10.0, 10.25); + cairo_close_path (cr); + } else { + cairo_move_to (cr, 10.5, 7.5); + cairo_line_to (cr, 5, 4.75); + cairo_line_to (cr, 5, 10.25); + cairo_close_path (cr); + } + break; + + default: + break; + } + + cairo_fill (cr); + + /* Finish up */ + cairo_destroy (cr); + + return 0; +} + +static void +gdl_dock_item_button_image_instance_init ( + GdlDockItemButtonImage *button_image) +{ + GTK_WIDGET_SET_FLAGS (button_image, GTK_NO_WINDOW); +} + +static void +gdl_dock_item_button_image_size_request (GtkWidget *widget, + GtkRequisition *requisition) +{ + g_return_if_fail (GDL_IS_DOCK_ITEM_BUTTON_IMAGE (widget)); + g_return_if_fail (requisition != NULL); + + requisition->width = ICON_SIZE; + requisition->height = ICON_SIZE; +} + +static void +gdl_dock_item_button_image_class_init ( + GdlDockItemButtonImageClass *klass) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + GtkObjectClass *gtk_object_class = GTK_OBJECT_CLASS (klass); + GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); + + parent_class = g_type_class_peek_parent (klass); + + widget_class->expose_event = + gdl_dock_item_button_image_expose; + widget_class->size_request = + gdl_dock_item_button_image_size_request; +} + +/* ----- Public interface ----- */ + +/** + * gdl_dock_item_button_image_new: + * @param image_type: Specifies what type of image the widget should + * display + * + * Creates a new GDL dock button image object. + * Returns: The newly created dock item button image widget. + **/ +GtkWidget* +gdl_dock_item_button_image_new (GdlDockItemButtonImageType image_type) +{ + GdlDockItemButtonImage *button_image = g_object_new ( + GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE, NULL); + button_image->image_type = image_type; + + return GTK_WIDGET (button_image); +} diff --git a/src/libgdl/gdl-dock-item-button-image.h b/src/libgdl/gdl-dock-item-button-image.h new file mode 100644 index 000000000..ce0c6faaf --- /dev/null +++ b/src/libgdl/gdl-dock-item-button-image.h @@ -0,0 +1,70 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * + * gdl-dock-item-button-image.h + * + * Author: Joel Holdsworth <joel@airwebreathe.org.uk> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef _GDL_DOCK_ITEM_BUTTON_IMAGE_H_ +#define _GDL_DOCK_ITEM_BUTTON_IMAGE_H_ + +#include <gtk/gtk.h> + +G_BEGIN_DECLS + +/* Standard Macros */ +#define GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE \ + (gdl_dock_item_button_image_get_type()) +#define GDL_DOCK_ITEM_BUTTON_IMAGE(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE, GdlDockItemButtonImage)) +#define GDL_DOCK_ITEM_BUTTON_IMAGE_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE, GdlDockItemButtonImageClass)) +#define GDL_IS_DOCK_ITEM_BUTTON_IMAGE(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE)) +#define GDL_IS_DOCK_ITEM_BUTTON_IMAGE_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE)) +#define GDL_DOCK_ITEM_BUTTON_IMAGE_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), GDL_TYPE_DOCK_ITEM_BUTTON_IMAGE, GdlDockItemButtonImageClass)) + +/* Data Types & Structures */ +typedef enum { + GDL_DOCK_ITEM_BUTTON_IMAGE_CLOSE, + GDL_DOCK_ITEM_BUTTON_IMAGE_ICONIFY +} GdlDockItemButtonImageType; + +typedef struct _GdlDockItemButtonImage GdlDockItemButtonImage; +typedef struct _GdlDockItemButtonImageClass GdlDockItemButtonImageClass; + +struct _GdlDockItemButtonImage { + GtkWidget parent; + + GdlDockItemButtonImageType image_type; +}; + +struct _GdlDockItemButtonImageClass { + GtkWidgetClass parent_class; +}; + +/* Data Public Functions */ +GType gdl_dock_item_button_image_get_type (void); +GtkWidget *gdl_dock_item_button_image_new ( + GdlDockItemButtonImageType image_type); + +G_END_DECLS + +#endif /* _GDL_DOCK_ITEM_BUTTON_IMAGE_H_ */ diff --git a/src/libgdl/gdl-dock-item-grip.c b/src/libgdl/gdl-dock-item-grip.c index 2513313ef..c5eb6f370 100644 --- a/src/libgdl/gdl-dock-item-grip.c +++ b/src/libgdl/gdl-dock-item-grip.c @@ -1,13 +1,30 @@ /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 8 -*- */ -/** +/* * gdl-dock-item-grip.c * - * Based on bonobo-dock-item-grip. Original copyright notice follows. + * Author: Michael Meeks Copyright (C) 2002 Sun Microsystems, Inc. + * + * Based on BonoboDockItemGrip. Original copyright notice follows. + * + * Copyright (C) 1998 Ettore Perazzoli + * Copyright (C) 1998 Elliot Lee + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * All rights reserved. * - * Author: - * Michael Meeks + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. * - * Copyright (C) 2002 Sun Microsystems, Inc. + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H @@ -20,10 +37,12 @@ #include <gtk/gtk.h> #include "gdl-dock-item.h" #include "gdl-dock-item-grip.h" -#include "gdl-stock.h" +#include "gdl-dock-item-button-image.h" +#include "gdl-switcher.h" #include "gdl-tools.h" #define ALIGN_BORDER 5 +#define DRAG_HANDLE_SIZE 10 enum { PROP_0, @@ -31,100 +50,79 @@ enum { }; struct _GdlDockItemGripPrivate { + GtkWidget *label; + GtkWidget *close_button; GtkWidget *iconify_button; - - gboolean icon_pixbuf_valid; - GdkPixbuf *icon_pixbuf; - - gchar *title; - PangoLayout *title_layout; + + gboolean handle_shown; }; GDL_CLASS_BOILERPLATE (GdlDockItemGrip, gdl_dock_item_grip, - GtkContainer, GTK_TYPE_CONTAINER); - -/* must be called after size_allocate */ -static void -gdl_dock_item_grip_get_title_area (GdlDockItemGrip *grip, - GdkRectangle *area) + GtkContainer, GTK_TYPE_CONTAINER); + +GtkWidget* +gdl_dock_item_create_label_widget(GdlDockItemGrip *grip) { - GtkWidget *widget = GTK_WIDGET (grip); - gint border = GTK_CONTAINER (grip)->border_width; - gint alloc_height; - - area->width = (widget->allocation.width - 2 * border - ALIGN_BORDER); - - pango_layout_get_pixel_size (grip->_priv->title_layout, NULL, &alloc_height); - - alloc_height = MAX (grip->_priv->close_button->allocation.height, alloc_height); - alloc_height = MAX (grip->_priv->iconify_button->allocation.height, alloc_height); - if (gtk_widget_get_visible (grip->_priv->close_button)) { - area->width -= grip->_priv->close_button->allocation.width; - } - if (gtk_widget_get_visible (grip->_priv->iconify_button)) { - area->width -= grip->_priv->iconify_button->allocation.width; - } - - area->x = widget->allocation.x + border + ALIGN_BORDER; - area->y = widget->allocation.y + border; - area->height = alloc_height; - - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) - area->x += (widget->allocation.width - 2 * border) - area->width; -} - -static void -ensure_title_and_icon_pixbuf (GdlDockItemGrip *grip) -{ - gchar *stock_id; + GtkHBox *label_box; + GtkImage *image; + GtkLabel *label; + gchar *stock_id = NULL; + gchar *title = NULL; GdkPixbuf *pixbuf; + + label_box = (GtkHBox*)gtk_hbox_new (FALSE, 0); - g_return_if_fail (GDL_IS_DOCK_ITEM_GRIP (grip)); - - /* get long name property from the dock object */ - if (!grip->_priv->title) { - g_object_get (G_OBJECT (grip->item), "long-name", &grip->_priv->title, NULL); - if (!grip->_priv->title) - grip->_priv->title = g_strdup (""); - } - - /* retrieve stock pixbuf, if any */ - if (!grip->_priv->icon_pixbuf_valid) { - g_object_get (G_OBJECT (grip->item), "stock-id", &stock_id, NULL); + g_object_get (G_OBJECT (grip->item), "stock-id", &stock_id, NULL); + g_object_get (G_OBJECT (grip->item), "pixbuf-icon", &pixbuf, NULL); + if(stock_id) { + image = GTK_IMAGE(gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU)); - if (stock_id) { - grip->_priv->icon_pixbuf = gtk_widget_render_icon (GTK_WIDGET (grip), - stock_id, - GTK_ICON_SIZE_MENU, ""); - g_free (stock_id); - grip->_priv->icon_pixbuf_valid = TRUE; - } + gtk_widget_show (GTK_WIDGET(image)); + gtk_box_pack_start(GTK_BOX(label_box), GTK_WIDGET(image), FALSE, TRUE, 0); + + g_free (stock_id); } - - /* retrieve pixbuf icon, if any */ - if (!grip->_priv->icon_pixbuf_valid) { - g_object_get (G_OBJECT (grip->item), "pixbuf-icon", &pixbuf, NULL); + else if (pixbuf) { + image = GTK_IMAGE(gtk_image_new_from_pixbuf (pixbuf)); + + gtk_widget_show (GTK_WIDGET(image)); + gtk_box_pack_start(GTK_BOX(label_box), GTK_WIDGET(image), FALSE, TRUE, 0); + } + + g_object_get (G_OBJECT (grip->item), "long-name", &title, NULL); + if (title) { + label = GTK_LABEL(gtk_label_new(title)); + gtk_label_set_ellipsize(label, PANGO_ELLIPSIZE_END); + gtk_label_set_justify(label, GTK_JUSTIFY_LEFT); + gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); + gtk_widget_show (GTK_WIDGET(label)); - if (pixbuf) { - grip->_priv->icon_pixbuf = pixbuf; - grip->_priv->icon_pixbuf_valid = TRUE; + if (gtk_widget_get_direction (GTK_WIDGET(grip)) == GTK_TEXT_DIR_RTL) { + gtk_box_pack_end(GTK_BOX(label_box), GTK_WIDGET(label), TRUE, TRUE, 1); + } else { + gtk_box_pack_start(GTK_BOX(label_box), GTK_WIDGET(label), TRUE, TRUE, 1); } + + g_free(title); } - - /* create layout: the actual text is reset at size_allocate */ - if (!grip->_priv->title_layout) { - grip->_priv->title_layout = gtk_widget_create_pango_layout (GTK_WIDGET (grip), - grip->_priv->title); - pango_layout_set_single_paragraph_mode (grip->_priv->title_layout, TRUE); - } + + return GTK_WIDGET(label_box); } static gint gdl_dock_item_grip_expose (GtkWidget *widget, - GdkEventExpose *event) + GdkEventExpose *event) { GdlDockItemGrip *grip; +/*<<<<<<< HEAD */ + GdkRectangle handle_area; + GdkRectangle expose_area; + + grip = GDL_DOCK_ITEM_GRIP (widget); + + if(grip->_priv->handle_shown) { +/*======= GdkRectangle title_area; GdkRectangle expose_area; GdkGC *bg_style; @@ -134,11 +132,11 @@ gdl_dock_item_grip_expose (GtkWidget *widget, gint text_y; grip = GDL_DOCK_ITEM_GRIP (widget); - gdl_dock_item_grip_get_title_area (grip, &title_area); + gdl_dock_item_grip_get_title_area (grip, &title_area); */ /* draw background, highlight it if the dock item or any of its * descendants have focus */ - bg_style = (gdl_dock_item_or_child_has_focus (grip->item) ? +/* bg_style = (gdl_dock_item_or_child_has_focus (grip->item) ? gtk_widget_get_style (widget)->dark_gc[widget->state] : gtk_widget_get_style (widget)->mid_gc[widget->state]); @@ -148,51 +146,35 @@ gdl_dock_item_grip_expose (GtkWidget *widget, if (grip->_priv->icon_pixbuf) { GdkRectangle pixbuf_rect; +>>>>>>> gdl-2.26.0-with-inkscape */ - pixbuf_rect.width = gdk_pixbuf_get_width (grip->_priv->icon_pixbuf); - pixbuf_rect.height = gdk_pixbuf_get_height (grip->_priv->icon_pixbuf); - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) { - pixbuf_rect.x = title_area.x + title_area.width - pixbuf_rect.width; + if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) { + handle_area.x = widget->allocation.x; + handle_area.y = widget->allocation.y; + handle_area.width = DRAG_HANDLE_SIZE; + handle_area.height = widget->allocation.height; } else { - pixbuf_rect.x = title_area.x; - title_area.x += pixbuf_rect.width + 1; + handle_area.x = widget->allocation.x + widget->allocation.width + - DRAG_HANDLE_SIZE; + handle_area.y = widget->allocation.y; + handle_area.width = DRAG_HANDLE_SIZE; + handle_area.height = widget->allocation.height; } - /* shrink title area by the pixbuf width plus a 1px spacing */ - title_area.width -= pixbuf_rect.width + 1; - pixbuf_rect.y = title_area.y + (title_area.height - pixbuf_rect.height) / 2; - - if (gdk_rectangle_intersect (&event->area, &pixbuf_rect, &expose_area)) { - GdkGC *gc; - GtkStyle *style; - - style = gtk_widget_get_style (widget); - gc = style->bg_gc[widget->state]; - gdk_draw_pixbuf (GDK_DRAWABLE (widget->window), gc, - grip->_priv->icon_pixbuf, - 0, 0, pixbuf_rect.x, pixbuf_rect.y, - pixbuf_rect.width, pixbuf_rect.height, - GDK_RGB_DITHER_NONE, 0, 0); - } - } - - if (gdk_rectangle_intersect (&title_area, &event->area, &expose_area)) { - pango_layout_get_pixel_size (grip->_priv->title_layout, &layout_width, - &layout_height); - - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) - text_x = title_area.x + title_area.width - layout_width; - else - text_x = title_area.x; - text_y = title_area.y + (title_area.height - layout_height) / 2; + if (gdk_rectangle_intersect (&handle_area, &event->area, &expose_area)) { - gtk_paint_layout (widget->style, widget->window, widget->state, TRUE, - &expose_area, widget, NULL, text_x, text_y, - grip->_priv->title_layout); + gtk_paint_handle (widget->style, widget->window, widget->state, + GTK_SHADOW_NONE, &expose_area, widget, + "handlebox", handle_area.x, handle_area.y, + handle_area.width, handle_area.height, + GTK_ORIENTATION_VERTICAL); + + } + } return GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event); -} +} static void gdl_dock_item_grip_item_notify (GObject *master, @@ -205,29 +187,20 @@ gdl_dock_item_grip_item_notify (GObject *master, grip = GDL_DOCK_ITEM_GRIP (data); - if (strcmp (pspec->name, "stock-id") == 0) { - if (grip->_priv->icon_pixbuf) { - g_object_unref (grip->_priv->icon_pixbuf); - grip->_priv->icon_pixbuf = NULL; - } - grip->_priv->icon_pixbuf_valid = FALSE; - ensure_title_and_icon_pixbuf (grip); - - } else if (strcmp (pspec->name, "long-name") == 0) { - g_free (grip->_priv->title); - g_object_unref (grip->_priv->title_layout); - grip->_priv->title_layout = NULL; - grip->_priv->title = NULL; - ensure_title_and_icon_pixbuf (grip); - gtk_widget_queue_draw (GTK_WIDGET (grip)); + if ((strcmp (pspec->name, "stock-id") == 0) || + (strcmp (pspec->name, "long-name") == 0)) { + + gdl_dock_item_grip_set_label (grip, + gdl_dock_item_create_label_widget(grip)); + } else if (strcmp (pspec->name, "behavior") == 0) { - cursor = FALSE; + cursor = FALSE; if (grip->_priv->close_button) { if (GDL_DOCK_ITEM_CANT_CLOSE (grip->item)) { gtk_widget_hide (GTK_WIDGET (grip->_priv->close_button)); } else { gtk_widget_show (GTK_WIDGET (grip->_priv->close_button)); - cursor = TRUE; + cursor = TRUE; } } if (grip->_priv->iconify_button) { @@ -235,10 +208,10 @@ gdl_dock_item_grip_item_notify (GObject *master, gtk_widget_hide (GTK_WIDGET (grip->_priv->iconify_button)); } else { gtk_widget_show (GTK_WIDGET (grip->_priv->iconify_button)); - cursor = TRUE; + cursor = TRUE; } } - if (grip->title_window && !cursor) + if (grip->title_window && !cursor) gdk_window_set_cursor (grip->title_window, NULL); } @@ -248,20 +221,13 @@ static void gdl_dock_item_grip_destroy (GtkObject *object) { GdlDockItemGrip *grip = GDL_DOCK_ITEM_GRIP (object); - + if (grip->_priv) { GdlDockItemGripPrivate *priv = grip->_priv; - if (priv->title_layout) { - g_object_unref (priv->title_layout); - priv->title_layout = NULL; - } - g_free (priv->title); - priv->title = NULL; - - if (priv->icon_pixbuf) { - g_object_unref (priv->icon_pixbuf); - priv->icon_pixbuf = NULL; + if (priv->label) { + gtk_widget_unparent(grip->_priv->label); + priv->label = NULL; } if (grip->item) @@ -273,7 +239,7 @@ gdl_dock_item_grip_destroy (GtkObject *object) grip->_priv = NULL; g_free (priv); } - + GDL_CALL_PARENT (GTK_OBJECT_CLASS, destroy, (object)); } @@ -293,15 +259,15 @@ gdl_dock_item_grip_set_property (GObject *object, case PROP_ITEM: grip->item = g_value_get_object (value); if (grip->item) { - g_signal_connect (grip->item, "notify::long_name", + g_signal_connect (grip->item, "notify::long-name", G_CALLBACK (gdl_dock_item_grip_item_notify), grip); - g_signal_connect (grip->item, "notify::stock_id", + g_signal_connect (grip->item, "notify::stock-id", + G_CALLBACK (gdl_dock_item_grip_item_notify), + grip); + g_signal_connect (grip->item, "notify::behavior", G_CALLBACK (gdl_dock_item_grip_item_notify), grip); - g_signal_connect (grip->item, "notify::behavior", - G_CALLBACK (gdl_dock_item_grip_item_notify), - grip); if (!GDL_DOCK_ITEM_CANT_CLOSE (grip->item) && grip->_priv->close_button) gtk_widget_show (grip->_priv->close_button); @@ -329,10 +295,34 @@ static void gdl_dock_item_grip_iconify_clicked (GtkWidget *widget, GdlDockItemGrip *grip) { + GtkWidget *parent; + (void)widget; g_return_if_fail (grip->item != NULL); - gdl_dock_item_iconify_item (grip->item); + parent = gtk_widget_get_parent (GTK_WIDGET (grip->item)); + if (GDL_IS_SWITCHER (parent)) + { + /* Note: We can not use gtk_container_foreach (parent) here because + * during iconificatoin, the internal children changes in parent. + * Instead we keep a list of items to iconify and iconify them + * one by one. + */ + GList *node; + GList *items = + gtk_container_get_children (GTK_CONTAINER (parent)); + for (node = items; node != NULL; node = node->next) + { + GdlDockItem *item = GDL_DOCK_ITEM (node->data); + if (!GDL_DOCK_ITEM_CANT_ICONIFY (item)) + gdl_dock_item_iconify_item (item); + } + g_list_free (items); + } + else + { + gdl_dock_item_iconify_item (grip->item); + } /* Workaround to unhighlight the iconify button. */ GTK_BUTTON (grip->_priv->iconify_button)->in_button = FALSE; @@ -347,10 +337,10 @@ gdl_dock_item_grip_instance_init (GdlDockItemGrip *grip) gtk_widget_set_has_window (GTK_WIDGET (grip), FALSE); grip->_priv = g_new0 (GdlDockItemGripPrivate, 1); - grip->_priv->icon_pixbuf_valid = FALSE; - grip->_priv->icon_pixbuf = NULL; - grip->_priv->title_layout = NULL; - + grip->_priv->label = NULL; + grip->_priv->handle_shown = FALSE; + + /* create the close button */ gtk_widget_push_composite_child (); grip->_priv->close_button = gtk_button_new (); gtk_widget_pop_composite_child (); @@ -360,13 +350,14 @@ gdl_dock_item_grip_instance_init (GdlDockItemGrip *grip) gtk_button_set_relief (GTK_BUTTON (grip->_priv->close_button), GTK_RELIEF_NONE); gtk_widget_show (grip->_priv->close_button); - image = gtk_image_new_from_stock (GDL_STOCK_CLOSE, GTK_ICON_SIZE_MENU); + image = gdl_dock_item_button_image_new(GDL_DOCK_ITEM_BUTTON_IMAGE_CLOSE); gtk_container_add (GTK_CONTAINER (grip->_priv->close_button), image); gtk_widget_show (image); g_signal_connect (G_OBJECT (grip->_priv->close_button), "clicked", G_CALLBACK (gdl_dock_item_grip_close_clicked), grip); + /* create the iconify button */ gtk_widget_push_composite_child (); grip->_priv->iconify_button = gtk_button_new (); gtk_widget_pop_composite_child (); @@ -376,17 +367,18 @@ gdl_dock_item_grip_instance_init (GdlDockItemGrip *grip) gtk_button_set_relief (GTK_BUTTON (grip->_priv->iconify_button), GTK_RELIEF_NONE); gtk_widget_show (grip->_priv->iconify_button); - image = gtk_image_new_from_stock (GDL_STOCK_MENU_RIGHT, GTK_ICON_SIZE_MENU); + image = gdl_dock_item_button_image_new(GDL_DOCK_ITEM_BUTTON_IMAGE_ICONIFY); gtk_container_add (GTK_CONTAINER (grip->_priv->iconify_button), image); gtk_widget_show (image); g_signal_connect (G_OBJECT (grip->_priv->iconify_button), "clicked", G_CALLBACK (gdl_dock_item_grip_iconify_clicked), grip); + /* set tooltips on the buttons */ gtk_widget_set_tooltip_text (grip->_priv->iconify_button, - _("Iconify")); + _("Iconify this dock")); gtk_widget_set_tooltip_text (grip->_priv->close_button, - _("Close")); + _("Close this dock")); } static void @@ -396,43 +388,45 @@ gdl_dock_item_grip_realize (GtkWidget *widget) GTK_WIDGET_CLASS (parent_class)->realize (widget); + g_return_if_fail (grip->_priv != NULL); + if (!grip->title_window) { GdkWindowAttr attributes; - GdkRectangle area; GdkCursor *cursor; - ensure_title_and_icon_pixbuf (grip); - gdl_dock_item_grip_get_title_area (grip, &area); - - attributes.x = area.x; - attributes.y = area.y; - attributes.width = area.width; - attributes.height = area.height; - attributes.window_type = GDK_WINDOW_TEMP; - attributes.wclass = GDK_INPUT_ONLY; - attributes.override_redirect = TRUE; - attributes.event_mask = (GDK_BUTTON_PRESS_MASK | - GDK_BUTTON_RELEASE_MASK | - GDK_BUTTON_MOTION_MASK | - gtk_widget_get_events (widget)); + g_return_if_fail (grip->_priv->label != NULL); + + attributes.x = grip->_priv->label->allocation.x; + attributes.y = grip->_priv->label->allocation.y; + attributes.width = grip->_priv->label->allocation.width; + attributes.height = grip->_priv->label->allocation.height; + attributes.window_type = GDK_WINDOW_CHILD; + attributes.wclass = GDK_INPUT_OUTPUT; + attributes.event_mask = GDK_ALL_EVENTS_MASK; grip->title_window = gdk_window_new (gtk_widget_get_parent_window (widget), - &attributes, - (GDK_WA_X | - GDK_WA_Y | - GDK_WA_NOREDIR)); + &attributes, (GDK_WA_X | GDK_WA_Y)); + + gdk_window_set_user_data (grip->title_window, grip); + + /* Unref the ref from parent realize for NO_WINDOW */ + g_object_unref (widget->window); + + /* Need to ref widget->window, because parent unrealize unrefs it */ + widget->window = g_object_ref (grip->title_window); + GTK_WIDGET_UNSET_FLAGS(widget, GTK_NO_WINDOW); - gdk_window_set_user_data (grip->title_window, widget); + /* Unset the background so as to make the colour match the parent window */ + gtk_widget_modify_bg(widget, GTK_STATE_NORMAL, NULL); - if (GDL_DOCK_ITEM_CANT_CLOSE (grip->item)) - cursor = NULL; - else if (GDL_DOCK_ITEM_CANT_ICONIFY (grip->item)) - cursor = NULL; - else - cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), + if (GDL_DOCK_ITEM_CANT_CLOSE (grip->item) && + GDL_DOCK_ITEM_CANT_ICONIFY (grip->item)) + cursor = NULL; + else + cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_HAND2); gdk_window_set_cursor (grip->title_window, cursor); - if (cursor) + if (cursor) gdk_cursor_unref (cursor); } } @@ -443,6 +437,7 @@ gdl_dock_item_grip_unrealize (GtkWidget *widget) GdlDockItemGrip *grip = GDL_DOCK_ITEM_GRIP (widget); if (grip->title_window) { + GTK_WIDGET_SET_FLAGS(widget, GTK_NO_WINDOW); gdk_window_set_user_data (grip->title_window, NULL); gdk_window_destroy (grip->title_window); grip->title_window = NULL; @@ -480,7 +475,7 @@ gdl_dock_item_grip_size_request (GtkWidget *widget, GtkRequisition child_requisition; GtkContainer *container; GdlDockItemGrip *grip; - gint layout_height; + gint layout_height = 0; g_return_if_fail (GDL_IS_DOCK_ITEM_GRIP (widget)); g_return_if_fail (requisition != NULL); @@ -488,69 +483,29 @@ gdl_dock_item_grip_size_request (GtkWidget *widget, container = GTK_CONTAINER (widget); grip = GDL_DOCK_ITEM_GRIP (widget); - requisition->width = container->border_width * 2 + ALIGN_BORDER; + requisition->width = container->border_width * 2/* + ALIGN_BORDER*/; requisition->height = container->border_width * 2; - ensure_title_and_icon_pixbuf (grip); - pango_layout_get_pixel_size (grip->_priv->title_layout, NULL, &layout_height); + if(grip->_priv->handle_shown) + requisition->width += DRAG_HANDLE_SIZE; gtk_widget_size_request (grip->_priv->close_button, &child_requisition); - - requisition->width += child_requisition.width; layout_height = MAX (layout_height, child_requisition.height); + if (GTK_WIDGET_VISIBLE (grip->_priv->close_button)) { + requisition->width += child_requisition.width; + } gtk_widget_size_request (grip->_priv->iconify_button, &child_requisition); - + layout_height = MAX (layout_height, child_requisition.height); + if (GTK_WIDGET_VISIBLE (grip->_priv->iconify_button)) { + requisition->width += child_requisition.width; + } + + gtk_widget_size_request (grip->_priv->label, &child_requisition); requisition->width += child_requisition.width; layout_height = MAX (layout_height, child_requisition.height); requisition->height += layout_height; - - if (grip->_priv->icon_pixbuf) { - requisition->width += gdk_pixbuf_get_width (grip->_priv->icon_pixbuf) + 1; - } -} - -#define ELLIPSIS "..." - -static void -ellipsize_layout (PangoLayout *layout, gint width) -{ - PangoLayoutLine *line; - PangoLayout *ell; - gint h, w, ell_w, x; - GString *text; - - if (width <= 0) { - pango_layout_set_text (layout, "", -1); - return; - } - - pango_layout_get_pixel_size (layout, &w, &h); - if (w <= width) return; - - /* calculate ellipsis width */ - ell = pango_layout_copy (layout); - pango_layout_set_text (ell, ELLIPSIS, -1); - pango_layout_get_pixel_size (ell, &ell_w, NULL); - g_object_unref (ell); - - if (width < ell_w) { - /* not even ellipsis fits, so hide the text */ - pango_layout_set_text (layout, "", -1); - return; - } - - /* shrink total available width by the width of the ellipsis */ - width -= ell_w; - line = pango_layout_get_line (layout, 0); - text = g_string_new (pango_layout_get_text (layout)); - if (pango_layout_line_x_to_index (line, width * PANGO_SCALE, &x, NULL)) { - g_string_set_size (text, x); - g_string_append (text, ELLIPSIS); - pango_layout_set_text (layout, text->str, -1); - } - g_string_free (text, TRUE); } static void @@ -559,9 +514,10 @@ gdl_dock_item_grip_size_allocate (GtkWidget *widget, { GdlDockItemGrip *grip; GtkContainer *container; - GtkRequisition button_requisition; + GtkRequisition close_requisition = { 0, }; + GtkRequisition iconify_requisition = { 0, }; GtkAllocation child_allocation; - memset(&button_requisition, 0, sizeof(button_requisition)); + GdkRectangle label_area; g_return_if_fail (GDL_IS_DOCK_ITEM_GRIP (widget)); g_return_if_fail (allocation != NULL); @@ -571,57 +527,96 @@ gdl_dock_item_grip_size_allocate (GtkWidget *widget, GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation); + gtk_widget_size_request (grip->_priv->close_button, + &close_requisition); + gtk_widget_size_request (grip->_priv->iconify_button, + &iconify_requisition); + + /* Calculate the Minimum Width where buttons will fit */ + int min_width = close_requisition.width + iconify_requisition.width + + container->border_width * 2; + if(grip->_priv->handle_shown) + min_width += DRAG_HANDLE_SIZE; + const gboolean space_for_buttons = (allocation->width >= min_width); + + /* Set up the rolling child_allocation rectangle */ if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) - child_allocation.x = allocation->x + container->border_width + ALIGN_BORDER; + child_allocation.x = container->border_width/* + ALIGN_BORDER*/; else - child_allocation.x = allocation->x + allocation->width - container->border_width; - child_allocation.y = allocation->y + container->border_width; - - gtk_widget_size_request (grip->_priv->close_button, &button_requisition); - - if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) - child_allocation.x -= button_requisition.width; + child_allocation.x = allocation->width - container->border_width; + child_allocation.y = container->border_width; - child_allocation.width = button_requisition.width; - child_allocation.height = button_requisition.height; + /* Layout Close Button */ + if (GTK_WIDGET_VISIBLE (grip->_priv->close_button)) { - gtk_widget_size_allocate (grip->_priv->close_button, &child_allocation); - - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) - child_allocation.x += button_requisition.width; - + if(space_for_buttons) { + if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) + child_allocation.x -= close_requisition.width; + + child_allocation.width = close_requisition.width; + child_allocation.height = close_requisition.height; + } else { + child_allocation.width = 0; + } + + gtk_widget_size_allocate (grip->_priv->close_button, &child_allocation); - gtk_widget_size_request (grip->_priv->iconify_button, &button_requisition); + if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) + child_allocation.x += close_requisition.width; + } - if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) - child_allocation.x -= button_requisition.width; + /* Layout Iconify Button */ + if (GTK_WIDGET_VISIBLE (grip->_priv->iconify_button)) { - child_allocation.width = button_requisition.width; - child_allocation.height = button_requisition.height; + if(space_for_buttons) { + if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) + child_allocation.x -= iconify_requisition.width; - gtk_widget_size_allocate (grip->_priv->iconify_button, &child_allocation); + child_allocation.width = iconify_requisition.width; + child_allocation.height = iconify_requisition.height; + } else { + child_allocation.width = 0; + } - if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) - child_allocation.x += button_requisition.width; + gtk_widget_size_allocate (grip->_priv->iconify_button, &child_allocation); + if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) + child_allocation.x += iconify_requisition.width; + } - if (grip->title_window) { - GdkRectangle area; + /* Layout the Grip Handle*/ + if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_RTL) { + child_allocation.width = child_allocation.x; + child_allocation.x = container->border_width/* + ALIGN_BORDER*/; - /* set layout text */ - ensure_title_and_icon_pixbuf (grip); - pango_layout_set_text (grip->_priv->title_layout, grip->_priv->title, -1); - - gdl_dock_item_grip_get_title_area (grip, &area); - - gdk_window_move_resize (grip->title_window, - area.x, area.y, area.width, area.height); - - if (grip->_priv->icon_pixbuf) - area.width -= gdk_pixbuf_get_width (grip->_priv->icon_pixbuf) + 1; + if(grip->_priv->handle_shown) { + child_allocation.x += DRAG_HANDLE_SIZE; + child_allocation.width -= DRAG_HANDLE_SIZE; + } + + } else { + child_allocation.width = allocation->width - + (child_allocation.x - allocation->x)/* - ALIGN_BORDER*/; - /* ellipsize title if it doesn't fit the title area */ - ellipsize_layout (grip->_priv->title_layout, area.width); + if(grip->_priv->handle_shown) + child_allocation.width -= DRAG_HANDLE_SIZE; + } + + if(child_allocation.width < 0) + child_allocation.width = 0; + + child_allocation.y = container->border_width; + child_allocation.height = allocation->height - container->border_width * 2; + if(grip->_priv->label) { + gtk_widget_size_allocate (grip->_priv->label, &child_allocation); + } + + if (grip->title_window) { + gdk_window_move_resize (grip->title_window, + allocation->x, + allocation->y, + allocation->width, + allocation->height); } } @@ -638,9 +633,8 @@ static void gdl_dock_item_grip_remove (GtkContainer *container, GtkWidget *widget) { - (void)container; (void)widget; - g_warning ("gtk_container_remove not implemented for GdlDockItemGrip"); + gdl_dock_item_grip_set_label (GDL_DOCK_ITEM_GRIP (container), NULL); } static void @@ -652,12 +646,17 @@ gdl_dock_item_grip_forall (GtkContainer *container, GdlDockItemGrip *grip; g_return_if_fail (GDL_IS_DOCK_ITEM_GRIP (container)); - grip = GDL_DOCK_ITEM_GRIP (container); + + if (grip->_priv) { + if(grip->_priv->label) { + (* callback) (grip->_priv->label, callback_data); + } - if (include_internals) { - (* callback) (grip->_priv->close_button, callback_data); - (* callback) (grip->_priv->iconify_button, callback_data); + if (include_internals) { + (* callback) (grip->_priv->close_button, callback_data); + (* callback) (grip->_priv->iconify_button, callback_data); + } } } @@ -705,11 +704,23 @@ gdl_dock_item_grip_class_init (GdlDockItemGripClass *klass) _("Dockitem which 'owns' this grip"), GDL_TYPE_DOCK_ITEM, G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY)); +} - /* initialize stock images */ - gdl_stock_init (); +static void +gdl_dock_item_grip_showhide_handle (GdlDockItemGrip *grip) +{ + gtk_widget_queue_resize (GTK_WIDGET (grip)); } +/* ----- Public interface ----- */ + +/** + * gdl_dock_item_grip_new: + * @item: The dock item that will "own" this grip widget. + * + * Creates a new GDL dock item grip object. + * Returns: The newly created dock item grip widget. + **/ GtkWidget * gdl_dock_item_grip_new (GdlDockItem *item) { @@ -718,3 +729,61 @@ gdl_dock_item_grip_new (GdlDockItem *item) return GTK_WIDGET (grip); } + +/** + * gdl_dock_item_grip_set_label: + * @grip: The grip that will get it's label widget set. + * @label: The widget that will become the label. + * + * Replaces the current label widget with another widget. + **/ +void +gdl_dock_item_grip_set_label (GdlDockItemGrip *grip, + GtkWidget *label) +{ + g_return_if_fail (grip != NULL); + + if (grip->_priv->label) { + gtk_widget_unparent(grip->_priv->label); + g_object_unref (grip->_priv->label); + grip->_priv->label = NULL; + } + + if (label) { + g_object_ref (label); + gtk_widget_set_parent (label, GTK_WIDGET (grip)); + gtk_widget_show (label); + grip->_priv->label = label; + } +} +/** + * gdl_dock_item_grip_hide_handle: + * @item: The dock item grip to hide the handle of. + * + * This function hides the dock item's grip widget handle hatching. + **/ +void +gdl_dock_item_grip_hide_handle (GdlDockItemGrip *grip) +{ + g_return_if_fail (grip != NULL); + if (grip->_priv->handle_shown) { + grip->_priv->handle_shown = FALSE; + gdl_dock_item_grip_showhide_handle (grip); + }; +} + +/** + * gdl_dock_item_grip_show_handle: + * @grip: The dock item grip to show the handle of. + * + * This function shows the dock item's grip widget handle hatching. + **/ +void +gdl_dock_item_grip_show_handle (GdlDockItemGrip *grip) +{ + g_return_if_fail (grip != NULL); + if (!grip->_priv->handle_shown) { + grip->_priv->handle_shown = TRUE; + gdl_dock_item_grip_showhide_handle (grip); + }; +} diff --git a/src/libgdl/gdl-dock-item-grip.h b/src/libgdl/gdl-dock-item-grip.h index 4dfdd7ab3..a44ef91fb 100644 --- a/src/libgdl/gdl-dock-item-grip.h +++ b/src/libgdl/gdl-dock-item-grip.h @@ -1,13 +1,30 @@ /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 8 -*- */ -/** +/* * gdl-dock-item-grip.h - * - * Based on bonobo-dock-item-grip. Original copyright notice follows. * - * Author: - * Michael Meeks + * Author: Michael Meeks Copyright (C) 2002 Sun Microsystems, Inc. * - * Copyright (C) 2002 Sun Microsystems, Inc. + * Based on BonoboDockItemGrip. Original copyright notice follows. + * + * Copyright (C) 1998 Ettore Perazzoli + * Copyright (C) 1998 Elliot Lee + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. */ #ifndef _GDL_DOCK_ITEM_GRIP_H_ @@ -50,6 +67,10 @@ struct _GdlDockItemGripClass { GType gdl_dock_item_grip_get_type (void); GtkWidget *gdl_dock_item_grip_new (GdlDockItem *item); +void gdl_dock_item_grip_set_label (GdlDockItemGrip *grip, + GtkWidget *label); +void gdl_dock_item_grip_hide_handle (GdlDockItemGrip *grip); +void gdl_dock_item_grip_show_handle (GdlDockItemGrip *grip); G_END_DECLS diff --git a/src/libgdl/gdl-dock-item.c b/src/libgdl/gdl-dock-item.c index c01737636..0c0d765df 100644 --- a/src/libgdl/gdl-dock-item.c +++ b/src/libgdl/gdl-dock-item.c @@ -163,6 +163,7 @@ enum { DOCK_DRAG_BEGIN, DOCK_DRAG_MOTION, DOCK_DRAG_END, + SELECTED, MOVE_FOCUS_CHILD, LAST_SIGNAL }; @@ -281,6 +282,16 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) /* properties */ + /** + * GdlDockItem:orientation: + * + * The orientation of the docking item. If the orientation is set to + * #GTK_ORIENTATION_VERTICAL, the grip widget will be shown along + * the top of the edge of item (if it is not hidden). If the + * orientation is set to #GTK_ORIENTATION_HORIZONTAL, the grip + * widget will be shown down the left edge of the item (even if the + * widget text direction is set to RTL). + */ g_object_class_install_property ( g_object_class, PROP_ORIENTATION, g_param_spec_enum ("orientation", _("Orientation"), @@ -301,7 +312,7 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) g_object_class, PROP_RESIZE, g_param_spec_boolean ("resize", _("Resizable"), _("If set, the dock item can be resized when " - "docked in a panel"), + "docked in a GtkPanel widget"), TRUE, G_PARAM_READWRITE)); @@ -339,6 +350,12 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) /* signals */ + /** + * GdlDockItem::dock-drag-begin: + * @item: The dock item which is being dragged. + * + * Signals that the dock item has begun to be dragged. + **/ gdl_dock_item_signals [DOCK_DRAG_BEGIN] = g_signal_new ("dock-drag-begin", G_TYPE_FROM_CLASS (klass), @@ -349,7 +366,15 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) gdl_marshal_VOID__VOID, G_TYPE_NONE, 0); - + + /** + * GdlDockItem::dock-drag-motion: + * @item: The dock item which is being dragged. + * @x: The x-position that the dock item has been dragged to. + * @y: The y-position that the dock item has been dragged to. + * + * Signals that a dock item dragging motion event has occured. + **/ gdl_dock_item_signals [DOCK_DRAG_MOTION] = g_signal_new ("dock-drag-motion", G_TYPE_FROM_CLASS (klass), @@ -363,6 +388,14 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) G_TYPE_INT, G_TYPE_INT); + /** + * GdlDockItem::dock-drag-end: + * @item: The dock item which is no longer being dragged. + * @cancel: This value is set to TRUE if the drag was cancelled by + * the user. #cancel is set to FALSE if the drag was accepted. + * + * Signals that the dock item dragging has ended. + **/ gdl_dock_item_signals [DOCK_DRAG_END] = g_signal_new ("dock_drag_end", G_TYPE_FROM_CLASS (klass), @@ -375,6 +408,22 @@ gdl_dock_item_class_init (GdlDockItemClass *klass) 1, G_TYPE_BOOLEAN); + /** + * GdlDockItem::selected: + * + * Signals that this dock has been selected from a switcher. + */ + gdl_dock_item_signals [SELECTED] = + g_signal_new ("selected", + G_TYPE_FROM_CLASS (klass), + G_SIGNAL_RUN_FIRST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); + gdl_dock_item_signals [MOVE_FOCUS_CHILD] = g_signal_new ("move_focus_child", G_TYPE_FROM_CLASS (klass), @@ -1257,8 +1306,9 @@ gdl_dock_item_dock (GdlDockObject *object, GdlDockPlacement position, GValue *other_data) { - GdlDockObject *new_parent, *parent; - gboolean add_ourselves_first; + GdlDockObject *new_parent = NULL; + GdlDockObject *parent, *requestor_parent; + gboolean add_ourselves_first = FALSE; guint available_space=0; gint pref_size=-1; @@ -1372,11 +1422,16 @@ gdl_dock_item_dock (GdlDockObject *object, pref_size = req.width; break; case GDL_DOCK_CENTER: - new_parent = g_object_new (gdl_dock_object_type_from_nick ("notebook"), - "preferred-width", object_req.width, - "preferred-height", object_req.height, - NULL); - add_ourselves_first = TRUE; + /* If the parent is already a DockNotebook, we don't need + to create a new one. */ + if (!GDL_IS_DOCK_NOTEBOOK (parent)) + { + new_parent = g_object_new (gdl_dock_object_type_from_nick ("notebook"), + "preferred-width", object_req.width, + "preferred-height", object_req.height, + NULL); + add_ourselves_first = TRUE; + } break; default: { @@ -1395,52 +1450,73 @@ gdl_dock_item_dock (GdlDockObject *object, if (parent) gdl_dock_object_freeze (parent); - /* ref ourselves since we could be destroyed when detached */ - g_object_ref (object); - GDL_DOCK_OBJECT_SET_FLAGS (object, GDL_DOCK_IN_REFLOW); - gdl_dock_object_detach (object, FALSE); - - /* freeze the new parent, so reduce won't get called before it's - actually added to our parent */ - gdl_dock_object_freeze (new_parent); - /* bind the new parent to our master, so the following adds work */ - gdl_dock_object_bind (new_parent, G_OBJECT (GDL_DOCK_OBJECT_GET_MASTER (object))); + if (new_parent) + { + /* ref ourselves since we could be destroyed when detached */ + g_object_ref (object); + GDL_DOCK_OBJECT_SET_FLAGS (object, GDL_DOCK_IN_REFLOW); + gdl_dock_object_detach (object, FALSE); + + /* freeze the new parent, so reduce won't get called before it's + actually added to our parent */ + gdl_dock_object_freeze (new_parent); + + /* bind the new parent to our master, so the following adds work */ + gdl_dock_object_bind (new_parent, G_OBJECT (GDL_DOCK_OBJECT_GET_MASTER (object))); - /* add the objects */ - if (add_ourselves_first) { - gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (object)); - gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (requestor)); - splitpos = available_space - pref_size; - } else { - gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (requestor)); - gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (object)); - splitpos = pref_size; - } + /* add the objects */ + if (add_ourselves_first) { + gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (object)); + gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (requestor)); + splitpos = available_space - pref_size; + } else { + gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (requestor)); + gtk_container_add (GTK_CONTAINER (new_parent), GTK_WIDGET (object)); + splitpos = pref_size; + } - /* add the new parent to the parent */ - if (parent) - gtk_container_add (GTK_CONTAINER (parent), GTK_WIDGET (new_parent)); + /* add the new parent to the parent */ + if (parent) + gtk_container_add (GTK_CONTAINER (parent), GTK_WIDGET (new_parent)); - /* show automatic object */ - if (gtk_widget_get_visible (GTK_WIDGET (object))) - gtk_widget_show (GTK_WIDGET (new_parent)); - - /* use extra docking parameter */ - if (position != GDL_DOCK_CENTER && other_data && - G_VALUE_HOLDS (other_data, G_TYPE_UINT)) { + /* show automatic object */ + if (gtk_widget_get_visible (GTK_WIDGET (object))) + { + gtk_widget_show (GTK_WIDGET (new_parent)); + GDL_DOCK_OBJECT_UNSET_FLAGS (object, GDL_DOCK_IN_REFLOW); + } + gdl_dock_object_thaw (new_parent); + + /* use extra docking parameter */ + if (position != GDL_DOCK_CENTER && other_data && + G_VALUE_HOLDS (other_data, G_TYPE_UINT)) { - g_object_set (G_OBJECT (new_parent), - "position", g_value_get_uint (other_data), - NULL); - } else if (splitpos > 0 && splitpos < available_space) { - g_object_set (G_OBJECT (new_parent), "position", splitpos, NULL); + g_object_set (G_OBJECT (new_parent), + "position", g_value_get_uint (other_data), + NULL); + } else if (splitpos > 0 && splitpos < available_space) { + g_object_set (G_OBJECT (new_parent), "position", splitpos, NULL); + } + + g_object_unref (object); + } + else + { + /* If the parent is already a DockNotebook, we don't need + to create a new one. */ + gtk_container_add (GTK_CONTAINER (parent), GTK_WIDGET (requestor)); } - GDL_DOCK_OBJECT_UNSET_FLAGS (object, GDL_DOCK_IN_REFLOW); - g_object_unref (object); - - gdl_dock_object_thaw (new_parent); + requestor_parent = gdl_dock_object_get_parent_object (requestor); + if (GDL_IS_DOCK_NOTEBOOK (requestor_parent)) + { + /* Activate the page we just added */ + GdlDockItem* notebook = GDL_DOCK_ITEM (gdl_dock_object_get_parent_object (requestor)); + gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook->child), + gtk_notebook_page_num (GTK_NOTEBOOK (notebook->child), GTK_WIDGET (requestor))); + } + if (parent) gdl_dock_object_thaw (parent); @@ -1642,6 +1718,17 @@ gdl_dock_item_real_set_orientation (GdlDockItem *item, /* ----- Public interface ----- */ +/** + * gdl_dock_item_new: + * @name: Unique name for identifying the dock object. + * @long_name: Human readable name for the dock object. + * @behavior: General behavior for the dock item (i.e. whether it can + * float, if it's locked, etc.), as specified by + * #GdlDockItemBehavior flags. + * + * Creates a new dock item widget. + * Returns: The newly created dock item grip widget. + **/ GtkWidget * gdl_dock_item_new (const gchar *name, const gchar *long_name, @@ -1659,6 +1746,18 @@ gdl_dock_item_new (const gchar *name, return GTK_WIDGET (item); } +/** + * gdl_dock_item_new_with_stock: + * @name: Unique name for identifying the dock object. + * @long_name: Human readable name for the dock object. + * @stock_id: Stock icon for the dock object. + * @behavior: General behavior for the dock item (i.e. whether it can + * float, if it's locked, etc.), as specified by + * #GdlDockItemBehavior flags. + * + * Creates a new dock item grip widget with a given stock id. + * Returns: The newly created dock item grip widget. + **/ GtkWidget * gdl_dock_item_new_with_stock (const gchar *name, const gchar *long_name, @@ -1701,6 +1800,15 @@ gdl_dock_item_new_with_pixbuf_icon (const gchar *name, } /* convenient function (and to preserve source compat) */ +/** + * gdl_dock_item_dock_to: + * @item: The dock item that will be relocated to the dock position. + * @target: The dock item that will be used as the point of reference. + * @position: The position to dock #item, relative to #target. + * @docking_param: This value is unused, and will be ignored. + * + * Relocates a dock item to a new location relative to another dock item. + **/ void gdl_dock_item_dock_to (GdlDockItem *item, GdlDockItem *target, @@ -1738,6 +1846,18 @@ gdl_dock_item_dock_to (GdlDockItem *item, position, NULL); } +/** + * gdl_dock_item_set_orientation: + * @item: The dock item which will get it's orientation set. + * @orientation: The orientation to set the item to. If the orientation + * is set to #GTK_ORIENTATION_VERTICAL, the grip widget will be shown + * along the top of the edge of item (if it is not hidden). If the + * orientation is set to #GTK_ORIENTATION_HORIZONTAL, the grip widget + * will be shown down the left edge of the item (even if the widget + * text direction is set to RTL). + * + * This function sets the layout of the dock item. + **/ void gdl_dock_item_set_orientation (GdlDockItem *item, GtkOrientation orientation) @@ -1762,6 +1882,16 @@ gdl_dock_item_set_orientation (GdlDockItem *item, } } +/** + * gdl_dock_item_get_tablabel: + * @item: The dock item from which to get the tab label widget. + * + * Gets the current tab label widget. Note that this label widget is + * only visible when the "switcher-style" property of the #GdlDockMaster + * is set to #GDL_SWITCHER_STYLE_TABS + * + * Returns: Returns the tab label widget. + **/ GtkWidget * gdl_dock_item_get_tablabel (GdlDockItem *item) { @@ -1771,6 +1901,15 @@ gdl_dock_item_get_tablabel (GdlDockItem *item) return item->_priv->tab_label; } +/** + * gdl_dock_item_set_tablabel: + * @item: The dock item which will get it's tab label widget set. + * @tablabel: The widget that will become the tab label. + * + * Replaces the current tab label widget with another widget. Note that + * this label widget is only visible when the "switcher-style" property + * of the #GdlDockMaster is set to #GDL_SWITCHER_STYLE_TABS + **/ void gdl_dock_item_set_tablabel (GdlDockItem *item, GtkWidget *tablabel) @@ -1802,6 +1941,29 @@ gdl_dock_item_set_tablabel (GdlDockItem *item, } } +/** + * gdl_dock_item_get_grip: + * @item: The dock item from which to to get the grip of. + * + * This function returns the dock item's grip label widget. + * + * Returns: Returns the current label widget. + **/ +GtkWidget * +gdl_dock_item_get_grip(GdlDockItem *item) +{ + g_return_if_fail (item != NULL); + g_return_val_if_fail (GDL_IS_DOCK_ITEM (item), NULL); + + return item->_priv->grip; +} + +/** + * gdl_dock_item_hide_grip: + * @item: The dock item to hide the grip of. + * + * This function hides the dock item's grip widget. + **/ void gdl_dock_item_hide_grip (GdlDockItem *item) { @@ -1813,6 +1975,12 @@ gdl_dock_item_hide_grip (GdlDockItem *item) g_warning ("Grips always show unless GDL_DOCK_ITEM_BEH_NO_GRIP is set\n" ); } +/** + * gdl_dock_item_show_grip: + * @item: The dock item to show the grip of. + * + * This function shows the dock item's grip widget. + **/ void gdl_dock_item_show_grip (GdlDockItem *item) { @@ -1823,7 +1991,28 @@ gdl_dock_item_show_grip (GdlDockItem *item) }; } +/** + * gdl_dock_item_notify_selected: + * @item: the dock item to emit a selected signal on. + * + * This function emits the selected signal. It is to be used by #GdlSwitcher + * to let clients know that this item has been switched to. + **/ +void +gdl_dock_item_notify_selected (GdlDockItem *item) +{ + g_signal_emit (item, gdl_dock_item_signals [SELECTED], 0); +} + /* convenient function (and to preserve source compat) */ +/** + * gdl_dock_item_bind: + * @item: The item to bind. + * @dock: The #GdlDock widget to bind it to. Note that this widget must + * be a type of #GdlDock. + * + * Binds this dock item to a new dock master. + **/ void gdl_dock_item_bind (GdlDockItem *item, GtkWidget *dock) @@ -1836,6 +2025,12 @@ gdl_dock_item_bind (GdlDockItem *item, } /* convenient function (and to preserve source compat) */ +/** + * gdl_dock_item_unbind: + * @item: The item to unbind. + * + * Unbinds this dock item from it's dock master. + **/ void gdl_dock_item_unbind (GdlDockItem *item) { @@ -1844,6 +2039,15 @@ gdl_dock_item_unbind (GdlDockItem *item) gdl_dock_object_unbind (GDL_DOCK_OBJECT (item)); } +/** + * gdl_dock_item_hide_item: + * @item: The dock item to hide. + * + * This function hides the dock item. When dock items are hidden they + * are completely removed from the layout. + * + * The dock item close button causes the panel to be hidden. + **/ void gdl_dock_item_hide_item (GdlDockItem *item) { @@ -1905,6 +2109,15 @@ gdl_dock_item_hide_item (GdlDockItem *item) gdl_dock_object_thaw (GDL_DOCK_OBJECT (item)); } +/** + * gdl_dock_item_iconify_item: + * @item: The dock item to iconify. + * + * This function iconifies the dock item. When dock items are iconified + * they are hidden, and appear only as icons in dock bars. + * + * The dock item iconify button causes the panel to be iconified. + **/ void gdl_dock_item_iconify_item (GdlDockItem *item) { @@ -1914,6 +2127,13 @@ gdl_dock_item_iconify_item (GdlDockItem *item) gdl_dock_item_hide_item (item); } +/** + * gdl_dock_item_show_item: + * @item: The dock item to show. + * + * This function shows the dock item. When dock items are shown, they + * are displayed in their normal layout position. + **/ void gdl_dock_item_show_item (GdlDockItem *item) { @@ -1965,18 +2185,41 @@ gdl_dock_item_show_item (GdlDockItem *item) gtk_widget_show (GTK_WIDGET (item)); } +/** + * gdl_dock_item_lock: + * @item: The dock item to lock. + * + * This function locks the dock item. When locked the dock item cannot + * be dragged around and it doesn't show a grip. + **/ void gdl_dock_item_lock (GdlDockItem *item) { g_object_set (item, "locked", TRUE, NULL); } +/** + * gdl_dock_item_unlock: + * @item: The dock item to unlock. + * + * This function unlocks the dock item. When unlocked the dock item can + * be dragged around and can show a grip. + **/ void gdl_dock_item_unlock (GdlDockItem *item) { g_object_set (item, "locked", FALSE, NULL); } +/** + * gdl_dock_item_set_default_position: + * @item: The dock item + * @reference: The GdlDockObject which is the default dock for @item + * + * This method has only an effect when you add you dock_item with + * GDL_DOCK_ITEM_BEH_NEVER_FLOATING. In this case you have to assign + * it a default position. + **/ void gdl_dock_item_set_default_position (GdlDockItem *item, GdlDockObject *reference) @@ -2003,6 +2246,14 @@ gdl_dock_item_set_default_position (GdlDockItem *item, } } +/** + * gdl_dock_item_preferred_size: + * @item: The dock item to get the preferred size of. + * @req: A pointer to a #GtkRequisition into which the preferred size + * will be written. + * + * Gets the preferred size of the dock item in pixels. + **/ void gdl_dock_item_preferred_size (GdlDockItem *item, GtkRequisition *req) diff --git a/src/libgdl/gdl-dock-item.h b/src/libgdl/gdl-dock-item.h index 6c0029d13..d97fdf6fd 100644 --- a/src/libgdl/gdl-dock-item.h +++ b/src/libgdl/gdl-dock-item.h @@ -93,17 +93,16 @@ struct _GdlDockItemClass { gboolean has_grip; /* virtuals */ - void (* dock_drag_begin) (GdlDockItem *item); - void (* dock_drag_motion) (GdlDockItem *item, - gint x, - gint y); - void (* dock_drag_end) (GdlDockItem *item, - gboolean cancelled); + void (* dock_drag_begin) (GdlDockItem *item); + void (* dock_drag_motion) (GdlDockItem *item, + gint x, + gint y); + void (* dock_drag_end) (GdlDockItem *item, + gboolean cancelled); void (* move_focus_child) (GdlDockItem *item, GtkDirectionType direction); - - void (* set_orientation) (GdlDockItem *item, - GtkOrientation orientation); + void (* set_orientation) (GdlDockItem *item, + GtkOrientation orientation); }; /* additional macros */ @@ -163,8 +162,10 @@ void gdl_dock_item_set_orientation (GdlDockItem *item, GtkWidget *gdl_dock_item_get_tablabel (GdlDockItem *item); void gdl_dock_item_set_tablabel (GdlDockItem *item, GtkWidget *tablabel); +GtkWidget *gdl_dock_item_get_grip (GdlDockItem *item); void gdl_dock_item_hide_grip (GdlDockItem *item); void gdl_dock_item_show_grip (GdlDockItem *item); +void gdl_dock_item_notify_selected (GdlDockItem *item); /* bind and unbind items to a dock */ void gdl_dock_item_bind (GdlDockItem *item, diff --git a/src/libgdl/gdl-dock-master.c b/src/libgdl/gdl-dock-master.c index 78cbf69ec..57d0618ec 100644 --- a/src/libgdl/gdl-dock-master.c +++ b/src/libgdl/gdl-dock-master.c @@ -31,6 +31,8 @@ #include "gdl-dock-master.h" #include "gdl-dock.h" #include "gdl-dock-item.h" +#include "gdl-dock-notebook.h" +#include "gdl-switcher.h" #include "libgdlmarshal.h" #include "libgdltypebuiltins.h" #ifdef WIN32 diff --git a/src/libgdl/gdl-dock-master.h b/src/libgdl/gdl-dock-master.h index 3268e68b5..266ca7ee4 100644 --- a/src/libgdl/gdl-dock-master.h +++ b/src/libgdl/gdl-dock-master.h @@ -44,6 +44,15 @@ typedef struct _GdlDockMaster GdlDockMaster; typedef struct _GdlDockMasterClass GdlDockMasterClass; typedef struct _GdlDockMasterPrivate GdlDockMasterPrivate; +typedef enum { + GDL_SWITCHER_STYLE_TEXT, + GDL_SWITCHER_STYLE_ICON, + GDL_SWITCHER_STYLE_BOTH, + GDL_SWITCHER_STYLE_TOOLBAR, + GDL_SWITCHER_STYLE_TABS, + GDL_SWITCHER_STYLE_NONE +} GdlSwitcherStyle; + struct _GdlDockMaster { GObject object; diff --git a/src/libgdl/gdl-dock-notebook.c b/src/libgdl/gdl-dock-notebook.c index f6e0aeeef..3db3fab3f 100644 --- a/src/libgdl/gdl-dock-notebook.c +++ b/src/libgdl/gdl-dock-notebook.c @@ -270,7 +270,7 @@ gdl_dock_notebook_switch_page_cb (GtkNotebook *nb, { GdlDockNotebook *notebook; GtkWidget *tablabel; - (void)page_num; + GdlDockItem *item; notebook = GDL_DOCK_NOTEBOOK (data); @@ -293,6 +293,10 @@ gdl_dock_notebook_switch_page_cb (GtkNotebook *nb, GDL_DOCK_OBJECT (notebook)->master) g_signal_emit_by_name (GDL_DOCK_OBJECT (notebook)->master, "layout-changed"); + + /* Signal that a new dock item has been selected */ + item = GDL_DOCK_ITEM (gtk_notebook_get_nth_page (nb, page_num)); + gdl_dock_item_notify_selected (item); } static void diff --git a/src/libgdl/gdl-dock-object.c b/src/libgdl/gdl-dock-object.c index 9bdcd18ed..129cc28d9 100644 --- a/src/libgdl/gdl-dock-object.c +++ b/src/libgdl/gdl-dock-object.c @@ -396,6 +396,7 @@ gdl_dock_object_real_reduce (GdlDockObject *object) children = gtk_container_get_children (GTK_CONTAINER (object)); if (g_list_length (children) <= 1) { GList *l; + GList *dchildren = NULL; /* detach ourselves and then re-attach our children to our current parent. if we are not currently attached, the @@ -403,18 +404,41 @@ gdl_dock_object_real_reduce (GdlDockObject *object) if (parent) gdl_dock_object_freeze (parent); gdl_dock_object_freeze (object); - gdl_dock_object_detach (object, FALSE); + /* Detach the children before detaching this object, since in this + * way the children can have access to the whole object hierarchy. + * Set the InDetach flag now, so the children know that this object + * is going to be detached. */ + + + GDL_DOCK_OBJECT_SET_FLAGS (object, GDL_DOCK_IN_DETACH); + for (l = children; l; l = l->next) { - GdlDockObject *child = GDL_DOCK_OBJECT (l->data); + GdlDockObject *child; + + if (!GDL_IS_DOCK_OBJECT (l->data)) + continue; + + child = GDL_DOCK_OBJECT (l->data); g_object_ref (child); - GDL_DOCK_OBJECT_SET_FLAGS (child, GDL_DOCK_IN_REFLOW); gdl_dock_object_detach (child, FALSE); + GDL_DOCK_OBJECT_SET_FLAGS (child, GDL_DOCK_IN_REFLOW); if (parent) - gtk_container_add (GTK_CONTAINER (parent), GTK_WIDGET (child)); + dchildren = g_list_append (dchildren, child); GDL_DOCK_OBJECT_UNSET_FLAGS (child, GDL_DOCK_IN_REFLOW); - g_object_unref (child); } + /* Now it can be detached */ + gdl_dock_object_detach (object, FALSE); + + /* After detaching the reduced object, we can add the + children (the only child in fact) to the new parent */ + for (l = dchildren; l; l = l->next) { + gtk_container_add (GTK_CONTAINER (parent), l->data); + g_object_unref (l->data); + } + g_list_free (dchildren); + + /* sink the widget, so any automatic floating widget is destroyed */ g_object_ref_sink (object); /* don't reenter */ @@ -469,6 +493,9 @@ gdl_dock_object_detach (GdlDockObject *object, { g_return_if_fail (object != NULL); + if (!GDL_IS_DOCK_OBJECT (object)) + return; + if (!GDL_DOCK_OBJECT_ATTACHED (object)) return; diff --git a/src/libgdl/gdl-dock-object.h b/src/libgdl/gdl-dock-object.h index 6ac36a44c..d1c27ffbd 100644 --- a/src/libgdl/gdl-dock-object.h +++ b/src/libgdl/gdl-dock-object.h @@ -221,7 +221,7 @@ GType gdl_dock_object_set_type_for_nick (const gchar *nick, __PRETTY_FUNCTION__, \ G_OBJECT_TYPE_NAME (object), object, \ G_OBJECT (object)->ref_count, \ - (GTK_IS_OBJECT (object) && GTK_OBJECT_FLOATING (object)) ? "(float)" : "", \ + (GTK_IS_OBJECT (object) && g_object_is_floating (object)) ? "(float)" : "", \ GDL_IS_DOCK_OBJECT (object) ? GDL_DOCK_OBJECT (object)->freeze_count : -1, \ ##args); } G_STMT_END diff --git a/src/libgdl/gdl-dock-paned.c b/src/libgdl/gdl-dock-paned.c index 5d0ac17ed..141770aa2 100644 --- a/src/libgdl/gdl-dock-paned.c +++ b/src/libgdl/gdl-dock-paned.c @@ -710,6 +710,7 @@ gdl_dock_paned_dock (GdlDockObject *object, } else { gdl_dock_item_show_grip (GDL_DOCK_ITEM (requestor)); + gtk_widget_show (GTK_WIDGET (requestor)); GDL_DOCK_OBJECT_SET_FLAGS (requestor, GDL_DOCK_ATTACHED); } } diff --git a/src/libgdl/gdl-dock-placeholder.c b/src/libgdl/gdl-dock-placeholder.c index ca7763a55..7a86ebe81 100644 --- a/src/libgdl/gdl-dock-placeholder.c +++ b/src/libgdl/gdl-dock-placeholder.c @@ -30,6 +30,7 @@ #include "gdl-tools.h" #include "gdl-dock-placeholder.h" #include "gdl-dock-item.h" +#include "gdl-dock-paned.h" #include "gdl-dock-master.h" #include "libgdltypebuiltins.h" @@ -189,14 +190,14 @@ gdl_dock_placeholder_class_init (GdlDockPlaceholderClass *klass) g_object_class_install_property ( g_object_class, PROP_FLOAT_X, g_param_spec_int ("floatx", _("X-Coordinate"), - _("X coordinate for dock when floating"), + _("X-Coordinate for dock when floating"), -1, G_MAXINT, -1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | GDL_DOCK_PARAM_EXPORT)); g_object_class_install_property ( g_object_class, PROP_FLOAT_Y, g_param_spec_int ("floaty", _("Y-Coordinate"), - _("Y coordinate for dock when floating"), + _("Y-Coordinate for dock when floating"), -1, G_MAXINT, -1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | GDL_DOCK_PARAM_EXPORT)); @@ -494,7 +495,7 @@ gdl_dock_placeholder_dock (GdlDockObject *object, GdlDockObject *toplevel; if (!gdl_dock_object_is_bound (GDL_DOCK_OBJECT (ph))) { - g_warning ("%s",_("Attempt to dock a dock object to an unbound placeholder")); + g_warning ("%s", _("Attempt to dock a dock object to an unbound placeholder")); return; } @@ -543,7 +544,7 @@ gdl_dock_placeholder_present (GdlDockObject *object, /* ----- Public interface ----- */ GtkWidget * -gdl_dock_placeholder_new (gchar *name, +gdl_dock_placeholder_new (const gchar *name, GdlDockObject *object, GdlDockPlacement position, gboolean sticky) diff --git a/src/libgdl/gdl-dock-placeholder.h b/src/libgdl/gdl-dock-placeholder.h index aeb55da67..c7e57e204 100644 --- a/src/libgdl/gdl-dock-placeholder.h +++ b/src/libgdl/gdl-dock-placeholder.h @@ -55,7 +55,7 @@ struct _GdlDockPlaceholderClass { GType gdl_dock_placeholder_get_type (void); -GtkWidget *gdl_dock_placeholder_new (gchar *name, +GtkWidget *gdl_dock_placeholder_new (const gchar *name, GdlDockObject *object, GdlDockPlacement position, gboolean sticky); diff --git a/src/libgdl/gdl-dock.c b/src/libgdl/gdl-dock.c index d80a47a1f..47a4f5b3d 100644 --- a/src/libgdl/gdl-dock.c +++ b/src/libgdl/gdl-dock.c @@ -349,21 +349,6 @@ gdl_dock_constructor (GType type, g_signal_connect (dock, "notify::long-name", (GCallback) gdl_dock_notify_cb, NULL); - /* set transient for the first dock if that is a non-floating dock */ - controller = gdl_dock_master_get_controller (master); - if (controller && GDL_IS_DOCK (controller)) { - gboolean first_is_floating; - g_object_get (controller, "floating", &first_is_floating, NULL); - if (!first_is_floating) { - GtkWidget *toplevel = - gtk_widget_get_toplevel (GTK_WIDGET (controller)); - - if (GTK_IS_WINDOW (toplevel)) - gtk_window_set_transient_for (GTK_WINDOW (dock->_priv->window), - GTK_WINDOW (toplevel)); - } - } - gtk_container_add (GTK_CONTAINER (dock->_priv->window), GTK_WIDGET (dock)); g_signal_connect (dock->_priv->window, "delete_event", @@ -1139,6 +1124,8 @@ gdl_dock_select_larger_item (GdlDockItem *dock_item_1, return ((size_1.width * size_1.height) >= (size_2.width * size_2.height)? dock_item_1 : dock_item_2); + } else if (placement == GDL_DOCK_NONE) { + return dock_item_1; } else { g_warning ("Should not reach here: %s:%d", __FUNCTION__, __LINE__); } diff --git a/src/libgdl/gdl-stock.c b/src/libgdl/gdl-stock.c deleted file mode 100644 index dc86e523b..000000000 --- a/src/libgdl/gdl-stock.c +++ /dev/null @@ -1,126 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- - * gdl-stock.c - * - * Copyright (C) 2003 Jeroen Zwartepoorte - * - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <gtk/gtk.h> -#include "gdl-stock.h" -#include "gdl-stock-icons.h" - -static GtkIconFactory *gdl_stock_factory = NULL; - -static struct { - const gchar *stock_id; - const guint8 *icon_data; - const guint data_size; -} -gdl_icons[] = -{ - { GDL_STOCK_CLOSE, stock_close_icon, sizeof (stock_close_icon) }, - { GDL_STOCK_MENU_LEFT, stock_menu_left_icon, sizeof (stock_menu_left_icon) }, - { GDL_STOCK_MENU_RIGHT, stock_menu_right_icon, sizeof (stock_menu_right_icon) } -}; - -static void -icon_set_from_data (GtkIconSet *set, - const guint8 *icon_data, - const guint data_size, - GtkIconSize size, - gboolean fallback) -{ - GtkIconSource *source; - GdkPixbuf *pixbuf; - GError *err = NULL; - - source = gtk_icon_source_new (); - - gtk_icon_source_set_size (source, size); - gtk_icon_source_set_size_wildcarded (source, FALSE); - - pixbuf = gdk_pixbuf_new_from_inline (data_size, icon_data, FALSE, &err); - if (err) { - g_warning ("%s",err->message); - g_error_free (err); - err = NULL; - g_object_unref (source); - return; - } - - gtk_icon_source_set_pixbuf (source, pixbuf); - - g_object_unref (pixbuf); - - gtk_icon_set_add_source (set, source); - - if (fallback) { - gtk_icon_source_set_size_wildcarded (source, TRUE); - gtk_icon_set_add_source (set, source); - } - - gtk_icon_source_free (source); -} - -static void -add_icon (GtkIconFactory *factory, - const gchar *stock_id, - const guint8 *icon_data, - const guint data_size) -{ - GtkIconSet *set; - gboolean fallback = FALSE; - - set = gtk_icon_factory_lookup (factory, stock_id); - - if (!set) { - set = gtk_icon_set_new (); - gtk_icon_factory_add (factory, stock_id, set); - gtk_icon_set_unref (set); - - fallback = TRUE; - } - - icon_set_from_data (set, icon_data, data_size, GTK_ICON_SIZE_MENU, fallback); -} - -void -gdl_stock_init (void) -{ - static gboolean initialized = FALSE; - gint i; - - if (initialized) - return; - - gdl_stock_factory = gtk_icon_factory_new (); - - for (i = 0; i < G_N_ELEMENTS (gdl_icons); i++) { - add_icon (gdl_stock_factory, - gdl_icons[i].stock_id, - gdl_icons[i].icon_data, - gdl_icons[i].data_size); - } - - gtk_icon_factory_add_default (gdl_stock_factory); - - initialized = TRUE; -} diff --git a/src/libgdl/gdl-switcher.c b/src/libgdl/gdl-switcher.c index eccd66ce2..65013e390 100644 --- a/src/libgdl/gdl-switcher.c +++ b/src/libgdl/gdl-switcher.c @@ -4,20 +4,22 @@ * Copyright (C) 2003 Ettore Perazzoli, * 2007 Naba Kumar * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * Library General Public License for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * + * * Copied and adapted from ESidebar.[ch] from evolution * * Authors: Ettore Perazzoli <ettore@ximian.com> @@ -36,10 +38,6 @@ #include <gtk/gtk.h> -#if HAVE_GNOME -#include <gconf/gconf-client.h> -#endif - static void gdl_switcher_set_property (GObject *object, guint prop_id, const GValue *value, @@ -55,7 +53,7 @@ static void gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *stock_id, const GdkPixbuf *pixbuf_icon, gint switcher_id); -static void gdl_switcher_remove_button (GdlSwitcher *switcher, gint switcher_id); +/* static void gdl_switcher_remove_button (GdlSwitcher *switcher, gint switcher_id); */ static void gdl_switcher_select_page (GdlSwitcher *switcher, gint switcher_id); static void gdl_switcher_select_button (GdlSwitcher *switcher, gint switcher_id); static void gdl_switcher_set_show_buttons (GdlSwitcher *switcher, gboolean show); @@ -216,7 +214,7 @@ button_toggled_callback (GtkToggleButton *toggle_button, static int layout_buttons (GdlSwitcher *switcher) { - GtkRequisition client_requisition; + GtkRequisition client_requisition = {0,}; GtkAllocation *allocation = & GTK_WIDGET (switcher)->allocation; GdlSwitcherStyle switcher_style; gboolean icons_only; @@ -514,7 +512,7 @@ gdl_switcher_expose (GtkWidget *widget, GdkEventExpose *event) } } return GDL_CALL_PARENT_WITH_DEFAULT (GTK_WIDGET_CLASS, expose_event, - (widget, event), FALSE); + (widget, event), FALSE); } static void @@ -608,12 +606,6 @@ static void gdl_switcher_notify_cb (GObject *g_object, GParamSpec *pspec, GdlSwitcher *switcher) { - gboolean show_tabs; - (void)g_object; - (void)pspec; - g_return_if_fail (switcher != NULL && GDL_IS_SWITCHER (switcher)); - show_tabs = gtk_notebook_get_show_tabs (GTK_NOTEBOOK (switcher)); - gdl_switcher_set_show_buttons (switcher, !show_tabs); } static void @@ -678,11 +670,9 @@ gdl_switcher_select_page (GdlSwitcher *switcher, gint id) static void gdl_switcher_class_init (GdlSwitcherClass *klass) { - GtkNotebookClass *notebook_class = GTK_NOTEBOOK_CLASS (klass); GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); - (void)notebook_class; container_class->forall = gdl_switcher_forall; container_class->remove = gdl_switcher_remove; @@ -704,6 +694,15 @@ gdl_switcher_class_init (GdlSwitcherClass *klass) GDL_TYPE_SWITCHER_STYLE, GDL_SWITCHER_STYLE_BOTH, G_PARAM_READWRITE)); + + gtk_rc_parse_string ("style \"gdl-button-style\"\n" + "{\n" + "GtkWidget::focus-padding = 1\n" + "GtkWidget::focus-line-width = 1\n" + "xthickness = 0\n" + "ythickness = 0\n" + "}\n" + "widget \"*.gdl-button\" style \"gdl-button-style\""); } static void @@ -745,6 +744,7 @@ gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *label, const gchar *tooltips, const gchar *stock_id, const GdkPixbuf *pixbuf_icon, gint switcher_id) { + GtkWidget *event_box; GtkWidget *button_widget; GtkWidget *hbox; GtkWidget *icon_widget; @@ -752,6 +752,8 @@ gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *label, GtkWidget *arrow; button_widget = gtk_toggle_button_new (); + gtk_widget_set_name (button_widget, "gdl-button"); + gtk_button_set_relief (GTK_BUTTON(button_widget), GTK_RELIEF_HALF); if (switcher->priv->show) gtk_widget_show (button_widget); g_signal_connect (button_widget, "toggled", @@ -763,11 +765,11 @@ gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *label, gtk_widget_show (hbox); if (stock_id) { - icon_widget = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON); + icon_widget = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU); } else if (pixbuf_icon) { icon_widget = gtk_image_new_from_pixbuf (pixbuf_icon); } else { - icon_widget = gtk_image_new_from_stock (GTK_STOCK_NEW, GTK_ICON_SIZE_BUTTON); + icon_widget = gtk_image_new_from_stock (GTK_STOCK_NEW, GTK_ICON_SIZE_MENU); } gtk_widget_show (icon_widget); @@ -781,8 +783,11 @@ gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *label, } gtk_misc_set_alignment (GTK_MISC (label_widget), 0.0, 0.5); gtk_widget_show (label_widget); - gtk_widget_set_tooltip_text (button_widget, tooltips); - + + + gtk_widget_set_tooltip_text (button_widget, + tooltips); + switch (INTERNAL_MODE (switcher)) { case GDL_SWITCHER_STYLE_TEXT: gtk_box_pack_start (GTK_BOX (hbox), label_widget, TRUE, TRUE, 0); @@ -803,13 +808,14 @@ gdl_switcher_add_button (GdlSwitcher *switcher, const gchar *label, switcher->priv->buttons = g_slist_append (switcher->priv->buttons, button_new (button_widget, label_widget, - icon_widget, + icon_widget, arrow, hbox, switcher_id)); + gtk_widget_set_parent (button_widget, GTK_WIDGET (switcher)); - gtk_widget_queue_resize (GTK_WIDGET (switcher)); } +#if 0 static void gdl_switcher_remove_button (GdlSwitcher *switcher, gint switcher_id) { @@ -827,6 +833,7 @@ gdl_switcher_remove_button (GdlSwitcher *switcher, gint switcher_id) } gtk_widget_queue_resize (GTK_WIDGET (switcher)); } +#endif static void gdl_switcher_select_button (GdlSwitcher *switcher, gint switcher_id) @@ -864,179 +871,87 @@ gdl_switcher_insert_page (GdlSwitcher *switcher, GtkWidget *page, } static void -set_switcher_style_internal (GdlSwitcher *switcher, - GdlSwitcherStyle switcher_style ) +set_switcher_style_toolbar (GdlSwitcher *switcher, + GdlSwitcherStyle switcher_style) { GSList *p; - if (switcher_style == GDL_SWITCHER_STYLE_TABS && - switcher->priv->show == FALSE) + if (switcher_style == GDL_SWITCHER_STYLE_NONE + || switcher_style == GDL_SWITCHER_STYLE_TABS) return; - if (switcher_style == GDL_SWITCHER_STYLE_TABS) - { - gtk_notebook_set_show_tabs (GTK_NOTEBOOK (switcher), TRUE); - return; - } - - gtk_notebook_set_show_tabs (GTK_NOTEBOOK (switcher), FALSE); - + if (switcher_style == GDL_SWITCHER_STYLE_TOOLBAR) + switcher_style = GDL_SWITCHER_STYLE_BOTH; + if (switcher_style == INTERNAL_MODE (switcher)) return; - + + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (switcher), FALSE); + for (p = switcher->priv->buttons; p != NULL; p = p->next) { Button *button = p->data; gtk_container_remove (GTK_CONTAINER (button->hbox), button->arrow); + + if (gtk_widget_get_parent (button->icon)) + gtk_container_remove (GTK_CONTAINER (button->hbox), button->icon); + if (gtk_widget_get_parent (button->label)) + gtk_container_remove (GTK_CONTAINER (button->hbox), button->label); + switch (switcher_style) { case GDL_SWITCHER_STYLE_TEXT: - gtk_container_remove (GTK_CONTAINER (button->hbox), button->icon); - if (INTERNAL_MODE (switcher) - == GDL_SWITCHER_STYLE_ICON) { - gtk_box_pack_start (GTK_BOX (button->hbox), button->label, - TRUE, TRUE, 0); - gtk_widget_show (button->label); - } + gtk_box_pack_start (GTK_BOX (button->hbox), button->label, + TRUE, TRUE, 0); + gtk_widget_show (button->label); break; + case GDL_SWITCHER_STYLE_ICON: - gtk_container_remove(GTK_CONTAINER (button->hbox), button->label); - if (INTERNAL_MODE (switcher) - == GDL_SWITCHER_STYLE_TEXT) { - gtk_box_pack_start (GTK_BOX (button->hbox), button->icon, - TRUE, TRUE, 0); - gtk_widget_show (button->icon); - } else - gtk_container_child_set (GTK_CONTAINER (button->hbox), - button->icon, "expand", TRUE, NULL); + gtk_box_pack_start (GTK_BOX (button->hbox), button->icon, + TRUE, TRUE, 0); + gtk_widget_show (button->icon); break; - case GDL_SWITCHER_STYLE_BOTH: - if (INTERNAL_MODE (switcher) - == GDL_SWITCHER_STYLE_TEXT) { - gtk_container_remove (GTK_CONTAINER (button->hbox), - button->label); - gtk_box_pack_start (GTK_BOX (button->hbox), button->icon, - FALSE, TRUE, 0); - gtk_widget_show (button->icon); - } else { - gtk_container_child_set (GTK_CONTAINER (button->hbox), - button->icon, "expand", FALSE, NULL); - } - gtk_box_pack_start (GTK_BOX (button->hbox), button->label, TRUE, - TRUE, 0); + case GDL_SWITCHER_STYLE_BOTH: + gtk_box_pack_start (GTK_BOX (button->hbox), button->icon, + FALSE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (button->hbox), button->label, + TRUE, TRUE, 0); + gtk_widget_show (button->icon); gtk_widget_show (button->label); break; + default: break; } - gtk_box_pack_start (GTK_BOX (button->hbox), button->arrow, FALSE, - FALSE, 0); - } -} - -#if HAVE_GNOME -static GConfEnumStringPair toolbar_styles[] = { - { GDL_SWITCHER_STYLE_TEXT, "text" }, - { GDL_SWITCHER_STYLE_ICON, "icons" }, - { GDL_SWITCHER_STYLE_BOTH, "both" }, - { GDL_SWITCHER_STYLE_BOTH, "both-horiz" }, - { GDL_SWITCHER_STYLE_BOTH, "both_horiz" }, - { -1, NULL } -}; - -static void -style_changed_notify (GConfClient *gconf, guint id, GConfEntry *entry, - void *data) -{ - GdlSwitcher *switcher = data; - char *val; - int switcher_style; - - val = gconf_client_get_string (gconf, - "/desktop/gnome/interface/toolbar_style", - NULL); - if (val == NULL || !gconf_string_to_enum (toolbar_styles, val, - &switcher_style)) - switcher_style = GDL_SWITCHER_STYLE_BOTH; - g_free(val); - set_switcher_style_internal (GDL_SWITCHER (switcher), switcher_style); - switcher->priv->toolbar_style = switcher_style; + gtk_box_pack_start (GTK_BOX (button->hbox), button->arrow, + FALSE, FALSE, 0); + } - gtk_widget_queue_resize (GTK_WIDGET (switcher)); + gdl_switcher_set_show_buttons (switcher, TRUE); } static void gdl_switcher_set_style (GdlSwitcher *switcher, GdlSwitcherStyle switcher_style) { - GConfClient *gconf_client = gconf_client_get_default (); - - if (switcher_style == GDL_SWITCHER_STYLE_TABS && - switcher->priv->show == FALSE) - return; - - if (switcher->priv->switcher_style == switcher_style && - switcher->priv->show == TRUE) + if (switcher->priv->switcher_style == switcher_style) return; - if (switcher->priv->switcher_style == GDL_SWITCHER_STYLE_TOOLBAR) { - if (switcher->priv->style_changed_id) { - gconf_client_notify_remove (gconf_client, - switcher->priv->style_changed_id); - switcher->priv->style_changed_id = 0; - } + if (switcher_style == GDL_SWITCHER_STYLE_NONE) { + gdl_switcher_set_show_buttons (switcher, FALSE); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (switcher), FALSE); } - - if (switcher_style != GDL_SWITCHER_STYLE_TOOLBAR) { - set_switcher_style_internal (switcher, switcher_style); - - gtk_widget_queue_resize (GTK_WIDGET (switcher)); - } else { - /* This is a little bit tricky, toolbar style is more - * of a meta-style where the actual style is dictated by - * the gnome toolbar setting, so that is why we have - * the is_toolbar_style bool - it tracks the toolbar - * style while the switcher_style member is the actual look and - * feel */ - switcher->priv->style_changed_id = - gconf_client_notify_add (gconf_client, - "/desktop/gnome/interface/toolbar_style", - style_changed_notify, switcher, - NULL, NULL); - style_changed_notify (gconf_client, 0, NULL, switcher); + else if (switcher_style == GDL_SWITCHER_STYLE_TABS) { + gdl_switcher_set_show_buttons (switcher, FALSE); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (switcher), TRUE); } - - g_object_unref (gconf_client); - - if (switcher_style != GDL_SWITCHER_STYLE_TABS) - switcher->priv->switcher_style = switcher_style; -} - -#else /* HAVE_GNOME */ - -static void -gdl_switcher_set_style (GdlSwitcher *switcher, GdlSwitcherStyle switcher_style) -{ - if (switcher_style == GDL_SWITCHER_STYLE_TABS && - switcher->priv->show == FALSE) - return; - - if (switcher->priv->switcher_style == switcher_style && - switcher->priv->show == TRUE) - return; + else + set_switcher_style_toolbar (switcher, switcher_style); - set_switcher_style_internal (switcher, - ((switcher_style == - GDL_SWITCHER_STYLE_TOOLBAR)? - GDL_SWITCHER_STYLE_BOTH : switcher_style)); gtk_widget_queue_resize (GTK_WIDGET (switcher)); - - if (switcher_style != GDL_SWITCHER_STYLE_TABS) - switcher->priv->switcher_style = switcher_style; + switcher->priv->switcher_style = switcher_style; } -#endif /* HAVE_GNOME */ - static void gdl_switcher_set_show_buttons (GdlSwitcher *switcher, gboolean show) { diff --git a/src/libgdl/gdl-switcher.h b/src/libgdl/gdl-switcher.h index 9c33f8bbf..991f2da20 100644 --- a/src/libgdl/gdl-switcher.h +++ b/src/libgdl/gdl-switcher.h @@ -4,20 +4,22 @@ * Copyright (C) 2003 Ettore Perazzoli * 2007 Naba Kumar * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. +* This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * Library General Public License for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * + * * Authors: Ettore Perazzoli <ettore@ximian.com> * Naba Kumar <naba@gnome.org> */ @@ -39,14 +41,6 @@ typedef struct _GdlSwitcher GdlSwitcher; typedef struct _GdlSwitcherPrivate GdlSwitcherPrivate; typedef struct _GdlSwitcherClass GdlSwitcherClass; -typedef enum { - GDL_SWITCHER_STYLE_TEXT, - GDL_SWITCHER_STYLE_ICON, - GDL_SWITCHER_STYLE_BOTH, - GDL_SWITCHER_STYLE_TOOLBAR, - GDL_SWITCHER_STYLE_TABS -} GdlSwitcherStyle; - struct _GdlSwitcher { GtkNotebook parent; diff --git a/src/libgdl/gdl-tools.h b/src/libgdl/gdl-tools.h index 2cc68c035..4e515b23b 100644 --- a/src/libgdl/gdl-tools.h +++ b/src/libgdl/gdl-tools.h @@ -79,9 +79,10 @@ G_BEGIN_DECLS #endif /* DO_GDL_TRACE */ -/** +/* * Class boilerplate and base class call macros copied from * bonobo/bonobo-macros.h. Original copyright follows. + * * * Author: * Darin Adler <darin@bentspoon.com> diff --git a/src/libgdl/gdl-stock.h b/src/libgdl/gdl.h index cb6f7abb9..d136b9295 100644 --- a/src/libgdl/gdl-stock.h +++ b/src/libgdl/gdl.h @@ -1,8 +1,8 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- - * gdl-stock.h - * - * Copyright (C) 2003 Jeroen Zwartepoorte +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * + * This file is part of the GNOME Devtools Libraries. + * + * Copyright (C) 1999-2000 Dave Camp <dave@helixcode.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -19,19 +19,15 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GDL_STOCK_H__ -#define __GDL_STOCK_H__ - -#include <glib/gmacros.h> // G_BEGIN_DECLS - -G_BEGIN_DECLS - -#define GDL_STOCK_CLOSE "gdl-close" -#define GDL_STOCK_MENU_LEFT "gdl-menu-left" -#define GDL_STOCK_MENU_RIGHT "gdl-menu-right" - -void gdl_stock_init (void); +#ifndef __GDL_H__ +#define __GDL_H__ -G_END_DECLS +#include "libgdl/gdl-tools.h" +#include "libgdl/gdl-dock-object.h" +#include "libgdl/gdl-dock-master.h" +#include "libgdl/gdl-dock.h" +#include "libgdl/gdl-dock-item.h" +#include "libgdl/gdl-dock-item-grip.h" +#include "libgdl/gdl-dock-bar.h" -#endif /* __GDL_STOCK_H__ */ +#endif diff --git a/src/libgdl/libgdl.h b/src/libgdl/libgdl.h deleted file mode 100644 index 5ee84e1ae..000000000 --- a/src/libgdl/libgdl.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- - * - * This file is part of the GNOME Devtools Libraries. - * - * Copyright (C) 1999-2000 Dave Camp <dave@helixcode.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __GDL_H__ -#define __GDL_H__ - -#include "libgdl/gdl-tools.h" -#include "libgdl/gdl-dock-object.h" -#include "libgdl/gdl-dock-master.h" -#include "libgdl/gdl-dock.h" -#include "libgdl/gdl-dock-item.h" -#include "libgdl/gdl-dock-paned.h" -#include "libgdl/gdl-dock-notebook.h" -#include "libgdl/gdl-dock-tablabel.h" -#include "libgdl/gdl-dock-bar.h" -#include "libgdl/gdl-switcher.h" - -#endif diff --git a/src/libgdl/libgdltypebuiltins.h b/src/libgdl/libgdltypebuiltins.h index 8be5decb1..f5e6ea17b 100644 --- a/src/libgdl/libgdltypebuiltins.h +++ b/src/libgdl/libgdltypebuiltins.h @@ -4,7 +4,7 @@ #ifndef __LIBGDLTYPEBUILTINS_H__ #define __LIBGDLTYPEBUILTINS_H__ 1 -#include "libgdl/libgdl.h" +#include "libgdl/gdl.h" G_BEGIN_DECLS diff --git a/src/libnrtype/Layout-TNG-Input.cpp b/src/libnrtype/Layout-TNG-Input.cpp index 45bc0c89b..c5ea3969d 100644 --- a/src/libnrtype/Layout-TNG-Input.cpp +++ b/src/libnrtype/Layout-TNG-Input.cpp @@ -135,7 +135,7 @@ float Layout::InputStreamTextSource::styleComputeFontSize() const if (this_style->font_size.set && !this_style->font_size.inherit) { switch (this_style->font_size.type) { case SP_FONT_SIZE_LITERAL: { - switch(this_style->font_size.value) { // these multipliers are straight out of the CSS spec + switch(this_style->font_size.literal) { // these multipliers are straight out of the CSS spec case SP_CSS_FONT_SIZE_XX_SMALL: return medium_font_size * inherit_multiplier * (3.0/5.0); case SP_CSS_FONT_SIZE_X_SMALL: return medium_font_size * inherit_multiplier * (3.0/4.0); case SP_CSS_FONT_SIZE_SMALL: return medium_font_size * inherit_multiplier * (8.0/9.0); diff --git a/src/seltrans.cpp b/src/seltrans.cpp index f95a204a9..f6a702ed9 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -1566,7 +1566,7 @@ Geom::Point Inkscape::SelTrans::_getGeomHandlePos(Geom::Point const &visual_hand // Calculate the absolute affine while taking into account the scaling of the stroke width Inkscape::Preferences *prefs = Inkscape::Preferences::get(); bool transform_stroke = prefs->getBool("/options/transform/stroke", true); - Geom::Affine abs_affine = get_scale_transform_with_stroke (*_bbox, _strokewidth, transform_stroke, + Geom::Affine abs_affine = get_scale_transform_with_uniform_stroke (*_bbox, _strokewidth, transform_stroke, new_bbox.min()[Geom::X], new_bbox.min()[Geom::Y], new_bbox.max()[Geom::X], new_bbox.max()[Geom::Y]); // Calculate the scaled geometrical bbox @@ -1613,7 +1613,7 @@ Geom::Point Inkscape::SelTrans::_calcAbsAffineDefault(Geom::Scale const default_ strokewidth = _strokewidth; } - _absolute_affine = get_scale_transform_with_stroke (*_approximate_bbox, strokewidth, transform_stroke, + _absolute_affine = get_scale_transform_with_uniform_stroke (*_approximate_bbox, strokewidth, transform_stroke, new_bbox_min[Geom::X], new_bbox_min[Geom::Y], new_bbox_max[Geom::X], new_bbox_max[Geom::Y]); // return the new handle position diff --git a/src/snap-preferences.cpp b/src/snap-preferences.cpp index 4859b111e..b98726a86 100644 --- a/src/snap-preferences.cpp +++ b/src/snap-preferences.cpp @@ -5,7 +5,7 @@ * Authors: * Diederik van Lierop <mail@diedenrezi.nl> * - * Copyright (C) 2008 Authors + * Copyright (C) 2008 - 2011 Authors * * Released under GNU GPL, read the file 'COPYING' for more information */ diff --git a/src/snap-preferences.h b/src/snap-preferences.h index 8e8ebc9cf..35d05c40e 100644 --- a/src/snap-preferences.h +++ b/src/snap-preferences.h @@ -8,7 +8,7 @@ * Authors: * Diederik van Lierop <mail@diedenrezi.nl> * - * Copyright (C) 2008 - 2010 Authors + * Copyright (C) 2008 - 2011 Authors * * Released under GNU GPL, read the file 'COPYING' for more information */ diff --git a/src/sp-image.cpp b/src/sp-image.cpp index 3f1c19295..791e88b39 100644 --- a/src/sp-image.cpp +++ b/src/sp-image.cpp @@ -45,8 +45,9 @@ #include "io/sys.h" #if ENABLE_LCMS -#include "color-profile-fns.h" +#include "cms-system.h" #include "color-profile.h" +#include <lcms.h> //#define DEBUG_LCMS #ifdef DEBUG_LCMS @@ -849,9 +850,9 @@ static void sp_image_update( SPObject *object, SPCtx *ctx, unsigned int flags ) DEBUG_MESSAGE( lcmsFive, "in <image>'s sp_image_update. About to call colorprofile_get_handle()" ); #endif // DEBUG_LCMS guint profIntent = Inkscape::RENDERING_INTENT_UNKNOWN; - cmsHPROFILE prof = Inkscape::colorprofile_get_handle( object->document, - &profIntent, - image->color_profile ); + cmsHPROFILE prof = Inkscape::CMSSystem::getHandle( object->document, + &profIntent, + image->color_profile ); if ( prof ) { icProfileClassSignature profileClass = cmsGetDeviceClass( prof ); if ( profileClass != icSigNamedColorClass ) { diff --git a/src/sp-item-transform.cpp b/src/sp-item-transform.cpp index ae55a5c50..eb4b81a61 100644 --- a/src/sp-item-transform.cpp +++ b/src/sp-item-transform.cpp @@ -7,8 +7,9 @@ * bulia byak <buliabyak@gmail.com> * Johan Engelen <goejendaagh@zonnet.nl> * Abhishek Sharma + * Diederik van Lierop <mail@diedenrezi.nl> * - * Copyright (C) 1999-2008 authors + * Copyright (C) 1999-2011 authors * * Released under GNU GPL, read the file 'COPYING' for more information */ @@ -67,46 +68,76 @@ sp_item_skew_rel (SPItem *item, double skewX, double skewY) void sp_item_move_rel(SPItem *item, Geom::Translate const &tr) { - item->set_i2d_affine(item->i2d_affine() * tr); + item->set_i2d_affine(item->i2d_affine() * tr); - item->doWriteTransform(item->getRepr(), item->transform); + item->doWriteTransform(item->getRepr(), item->transform); } -/* -** Returns the matrix you need to apply to an object with given visual bbox and strokewidth to -scale/move it to the new visual bbox x0/y0/x1/y1. Takes into account the "scale stroke" -preference value passed to it. Has to solve a quadratic equation to make sure -the goal is met exactly and the stroke scaling is obeyed. +/** + * \brief Calculate the affine transformation required to transform one visual bounding box into another, accounting for a uniform strokewidth + * + * PS: This function will only return accurate results for the visual bounding box of a selection of one of more objects, all having + * the same strokewidth. If the stroke width varies from object to object in this selection, then the function + * get_scale_transform_with_unequal_stroke() should be called instead + * + * When scaling or stretching an object using the selector, e.g. by dragging the handles or by entering a value, we will + * need to calculate the affine transformation for the old dimensions to the new dimensions. When using a geometric bounding + * box this is very straightforward, but when using a visual bounding box this become more tricky as we need to account for + * the strokewidth, which is either constant or scales width the area of the object. This function takes care of the calculation + * of the affine transformation: + * \param bbox_visual Current visual bounding box + * \param strokewidth Strokewidth + * \param transform_stroke If true then the stroke will be scaled proportional to the square root of the area of the geometric bounding box + * \param x0 Coordinate of the target visual bounding box + * \param y0 Coordinate of the target visual bounding box + * \param x1 Coordinate of the target visual bounding box + * \param y1 Coordinate of the target visual bounding box + * PS: we have to pass each coordinate individually, to find out if we are mirroring the object; Using a Geom::Rect() instead is + not possible here because it will only allow for a positive width and height, and therefore cannot mirror + * \return */ Geom::Affine -get_scale_transform_with_stroke (Geom::Rect const &bbox_param, gdouble strokewidth, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1) +get_scale_transform_with_uniform_stroke (Geom::Rect const &bbox_visual, gdouble strokewidth, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1) { - Geom::Rect bbox (bbox_param); - - Geom::Affine p2o = Geom::Translate (-bbox.min()); + Geom::Affine p2o = Geom::Translate (-bbox_visual.min()); Geom::Affine o2n = Geom::Translate (x0, y0); - Geom::Affine scale = Geom::Scale (1, 1); // scale component - Geom::Affine unbudge = Geom::Translate (0, 0); // move component to compensate for the drift caused by stroke width change + Geom::Affine scale = Geom::Scale (1, 1); + Geom::Affine unbudge = Geom::Translate (0, 0); // moves the object(s) to compensate for the drift caused by stroke width change + + // 1) We start with a visual bounding box (w0, h0) which we want to transfer into another visual bounding box (w1, h1) + // 2) The stroke is r0, equal for all edges + // 3) Given this visual bounding box we can calculate the geometric bounding box by subtracting half the stroke from each side; + // -> The width and height of the geometric bounding box will therefore be (w0 - 2*0.5*r0) and (h0 - 2*0.5*r0) - gdouble w0 = bbox[Geom::X].extent(); // will return a value >= 0, as required further down the road - gdouble h0 = bbox[Geom::Y].extent(); + gdouble w0 = bbox_visual.width(); // will return a value >= 0, as required further down the road + gdouble h0 = bbox_visual.height(); + gdouble r0 = fabs(strokewidth); + + // We also know the width and height of the new visual bounding box gdouble w1 = x1 - x0; // can have any sign gdouble h1 = y1 - y0; - gdouble r0 = strokewidth; + // The new visual bounding box will have a stroke r1 + + // We will now try to calculate the affine transformation required to transform the first visual bounding box into + // the second one, while accounting for strokewidth - if (bbox.hasZeroArea()) { - Geom::Affine move = Geom::Translate(x0 - bbox.min()[Geom::X], y0 - bbox.min()[Geom::Y]); - return (move); // cannot scale from empty boxes at all, so only translate + if (bbox_visual.hasZeroArea()) { // Obviously we cannot scale from empty visual bounding boxes at all, so we will only translate in such a case + Geom::Affine move = Geom::Translate(x0 - bbox_visual.min()[Geom::X], y0 - bbox_visual.min()[Geom::Y]); + return (move); } - Geom::Affine direct = Geom::Scale(w1 / w0, h1 / h0); + Geom::Affine direct = Geom::Scale(w1 / w0, h1 / h0); // Scaling of the visual bounding box + // Although the area of the visual bounding box is not zero, we can still have a geometric + // bounding box with one or both sides having zero length. We can't handle this and will therefore + // simply return the scaling of the visual bounding box, without accounting for any stroke scaling if (fabs(w0 - r0) < 1e-6 || fabs(h0 - r0) < 1e-6 || (!transform_stroke && (fabs(w1 - r0) < 1e-6 || fabs(h1 - r0) < 1e-6))) { - return (p2o * direct * o2n); // can't solve the equation: one of the dimensions is equal to stroke width, so return the straightforward scaler + return (p2o * direct * o2n); } + // Here starts the calculation you've been waiting for; first do some preparation int flip_x = (w1 > 0) ? 1 : -1; int flip_y = (h1 > 0) ? 1 : -1; @@ -115,41 +146,46 @@ get_scale_transform_with_stroke (Geom::Rect const &bbox_param, gdouble strokewid w1 = fabs(w1); h1 = fabs(h1); r0 = fabs(r0); - // w0 and h0 will always be positive due to the definition extent() + // w0 and h0 will always be positive due to the definition of the width() and height() methods. - gdouble ratio_x = (w1 - r0) / (w0 - r0); + gdouble ratio_x = (w1 - r0) / (w0 - r0); // Only valid when the stroke is kept constant, in which case r1 = r0 gdouble ratio_y = (h1 - r0) / (h0 - r0); - + + // Calculating the scaling of the geometric bounding box if the stroke is kept constant Geom::Affine direct_constant_r = Geom::Scale(flip_x * ratio_x, flip_y * ratio_y); - if (transform_stroke && r0 != 0 && r0 != Geom::infinity()) { // there's stroke, and we need to scale it - // These coefficients are obtained from the assumption that scaling applies to the - // non-stroked "shape proper" and that stroke scale is scaled by the expansion of that - // matrix. We're trying to solve this equation: - // r1 = r0 * sqrt (((w1-r0)/(w0-r0))*((h1-r0)/(h0-r0))) - // The operant of the sqrt() must be positive, which is ensured by the fabs() a few lines above + // If the stroke is not kept constant however, the scaling of the geometric bbox is more difficult to find + if (transform_stroke && r0 != 0 && r0 != Geom::infinity()) { // Check if there's stroke, and we need to scale it + /* Initial area of the geometric bounding box: A0 = (w0-r0)*(h0-r0) + * Desired area of the geometric bounding box: A1 = (w1-r1)*(h1-r1) + * This is how the stroke should scale: r1^2 / A1 = r0^2 / A0 + * So therefore we will need to solve this equation: + * + * r1^2 * (w0-r0) * (h1-r1) = r0^2 * (w1-r1) * (h0-r0) + * + * This is a quadratic equation in r1, of which the roots can be found using the ABC formula + * */ gdouble A = -w0*h0 + r0*(w0 + h0); gdouble B = -(w1 + h1) * r0*r0; gdouble C = w1 * h1 * r0*r0; if (B*B - 4*A*C > 0) { + // Of the two roots, I verified experimentally that this is the one we need gdouble r1 = fabs((-B - sqrt(B*B - 4*A*C))/(2*A)); - //gdouble r2 = (-B + sqrt (B*B - 4*A*C))/(2*A); - //std::cout << "r0" << r0 << " r1" << r1 << " r2" << r2 << "\n"; - // - // If w1 < 0 then the scale will be wrong if we just do - // gdouble scale_x = (w1 - r1)/(w0 - r0); - // Here we also need the absolute values of w0, w1, h0, h1, and r1 + // If w1 < 0 then the scale will be wrong if we just assume that scale_x = (w1 - r1)/(w0 - r0); + // Therefore we here need the absolute values of w0, w1, h0, h1, and r0, as taken care of earlier gdouble scale_x = (w1 - r1)/(w0 - r0); gdouble scale_y = (h1 - r1)/(h0 - r0); + // Now we account for mirroring by flipping if needed scale *= Geom::Scale(flip_x * scale_x, flip_y * scale_y); + // Make sure that the lower-left corner of the visual bounding box stays where it is, even though the stroke width has changed unbudge *= Geom::Translate (-flip_x * 0.5 * (r0 * scale_x - r1), -flip_y * 0.5 * (r0 * scale_y - r1)); - } else { + } else { // Can't find the roots of the quadratic equation. Likely the input parameters are invalid? scale *= direct; } - } else { - if (r0 == 0 || r0 == Geom::infinity()) { // no stroke to scale + } else { // The stroke should not be scaled, or is zero + if (r0 == 0 || r0 == Geom::infinity() ) { // Strokewidth is zero or infinite scale *= direct; - } else {// nonscaling strokewidth + } else { // Nonscaling strokewidth scale *= direct_constant_r; unbudge *= Geom::Translate (flip_x * 0.5 * r0 * (1 - ratio_x), flip_y * 0.5 * r0 * (1 - ratio_y)); } @@ -158,10 +194,162 @@ get_scale_transform_with_stroke (Geom::Rect const &bbox_param, gdouble strokewid return (p2o * scale * unbudge * o2n); } +/** + * \brief Calculate the affine transformation required to transform one visual bounding box into another, accounting for a VARIABLE strokewidth + * + * Note: Please try to understand get_scale_transform_with_uniform_stroke() first, and read all it's comments carefully. This function + * (get_scale_transform_with_unequal_stroke) is a bit different because it will allow for a strokewidth that's different for each + * side of the visual bounding box. Such a situation will arise when transforming the visual bounding box of a selection of objects, + * each having a different stroke width. In fact this function is a generalized version of get_scale_transform_with_uniform_stroke(), but + * will not (yet) replace it because it has not been tested as carefully, and because the old function is can serve as an introduction to + * understand the new one. + * + * When scaling or stretching an object using the selector, e.g. by dragging the handles or by entering a value, we will + * need to calculate the affine transformation for the old dimensions to the new dimensions. When using a geometric bounding + * box this is very straightforward, but when using a visual bounding box this become more tricky as we need to account for + * the strokewidth, which is either constant or scales width the area of the object. This function takes care of the calculation + * of the affine transformation: + * + * \param bbox_visual Current visual bounding box + * \param bbox_geometric Current geometric bounding box (allows for calculating the strokewidth of each edge) + * \param transform_stroke If true then the stroke will be scaled proportional to the square root of the area of the geometric bounding box + * \param x0 Coordinate of the target visual bounding box + * \param y0 Coordinate of the target visual bounding box + * \param x1 Coordinate of the target visual bounding box + * \param y1 Coordinate of the target visual bounding box + PS: we have to pass each coordinate individually, to find out if we are mirroring the object; Using a Geom::Rect() instead is + not possible here because it will only allow for a positive width and height, and therefore cannot mirror + * \return +*/ + +Geom::Affine +get_scale_transform_with_unequal_stroke (Geom::Rect const &bbox_visual, Geom::Rect const &bbox_geom, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1) +{ + Geom::Affine p2o = Geom::Translate (-bbox_visual.min()); + Geom::Affine o2n = Geom::Translate (x0, y0); + + Geom::Affine scale = Geom::Scale (1, 1); + Geom::Affine unbudge = Geom::Translate (0, 0); // moves the object(s) to compensate for the drift caused by stroke width change + + // 1) We start with a visual bounding box (w0, h0) which we want to transfer into another visual bounding box (w1, h1) + // 2) We will also know the geometric bounding box, which can be used to calculate the strokewidth. The strokewidth will however + // be different for each of the four sides (left/right/top/bottom: r0l, r0r, r0t, r0b) + + gdouble w0 = bbox_visual.width(); // will return a value >= 0, as required further down the road + gdouble h0 = bbox_visual.height(); + + // We also know the width and height of the new visual bounding box + gdouble w1 = x1 - x0; // can have any sign + gdouble h1 = y1 - y0; + // The new visual bounding box will have strokes r1l, r1r, r1t, and r1b + + // We will now try to calculate the affine transformation required to transform the first visual bounding box into + // the second one, while accounting for strokewidth + gdouble r0w = w0 - bbox_geom.width(); // r0w is the average strokewidth of the left and right edges, i.e. 0.5*(r0l + r0r) + gdouble r0h = h0 - bbox_geom.height(); // r0h is the average strokewidth of the top and bottom edges, i.e. 0.5*(r0t + r0b) + + // Check whether the stroke is not negative; should not be possible, but just in case: + g_assert(r0w >= 0); + g_assert(r0h >= 0); + + if (bbox_visual.hasZeroArea()) { // Obviously we cannot scale from empty visual bounding boxes at all, so we will only translate in such a case + Geom::Affine move = Geom::Translate(x0 - bbox_visual.min()[Geom::X], y0 - bbox_visual.min()[Geom::Y]); + return (move); + } + + Geom::Affine direct = Geom::Scale(w1 / w0, h1 / h0); + + // Although the area of the visual bounding box is not zero, we can still have a geometric + // bounding box with one or both sides having zero length. We can't handle this and will therefore + // simply return the scaling of the visual bounding box, without accounting for any stroke scaling + if (fabs(w0 - r0w) < 1e-6 || fabs(h0 - r0h) < 1e-6 || (!transform_stroke && (fabs(w1 - r0w) < 1e-6 || fabs(h1 - r0h) < 1e-6))) { + return (p2o * direct * o2n); + } + + // Here starts the calculation you've been waiting for; first do some preparation + int flip_x = (w1 > 0) ? 1 : -1; + int flip_y = (h1 > 0) ? 1 : -1; + + // w1 and h1 will be negative when mirroring, but if so then e.g. w1-r0 won't make sense + // Therefore we will use the absolute values from this point on + w1 = fabs(w1); + h1 = fabs(h1); + // w0 and h0 will always be positive due to the definition of the width() and height() methods. + + gdouble ratio_x = (w1 - r0w) / (w0 - r0w); // Only valid when the stroke is kept constant, in which case r1 = r0 + gdouble ratio_y = (h1 - r0h) / (h0 - r0h); + + // Calculating the scaling of the geometric bounding box if the stroke is kept constant + Geom::Affine direct_constant_r = Geom::Scale(flip_x * ratio_x, flip_y * ratio_y); + + // The calculation of the new strokewidth will only use the average stroke for each of the dimensions; To find the new stroke for each + // of the edges individually though, we will use the boundary condition that the ratio of the left/right strokewidth will not change due to the + // scaling. The same holds for the ratio of the top/bottom strokewidth. + gdouble stroke_ratio_w = fabs(r0w) < 1e-6 ? 1 : (bbox_geom[Geom::X].min() - bbox_visual[Geom::X].min())/r0w; + gdouble stroke_ratio_h = fabs(r0h) < 1e-6 ? 1 : (bbox_geom[Geom::Y].min() - bbox_visual[Geom::Y].min())/r0h; + + // If the stroke is not kept constant however, the scaling of the geometric bbox is more difficult to find + if (transform_stroke && r0w != 0 && r0w != Geom::infinity() && r0h != 0 && r0h != Geom::infinity()) { // Check if there's stroke, and we need to scale it + /* Initial area of the geometric bounding box: A0 = (w0-r0w)*(h0-r0h) + * Desired area of the geometric bounding box: A1 = (w1-r1w)*(h1-r1h) + * This is how the stroke should scale: r1w^2 = A1/A0 * r0w^2, AND + * r1h^2 = A1/A0 * r0h^2 + * Now we have to solve this set of two equations and find r1w and r1h; this too complicated to do by hand, + * so I used wxMaxima for that (http://wxmaxima.sourceforge.net/). These lines can be copied into Maxima + * + * A1: (w1-r1w)*(h1-r1h); + * s: A1/A0; + * expr1a: r1w^2 = s*r0w^2; + * expr1b: r1h^2 = s*r0h^2; + * sol: solve([expr1a, expr1b], [r1h, r1w]); + * sol[1][1]; sol[2][1]; sol[3][1]; sol[4][1]; + * sol[1][2]; sol[2][2]; sol[3][2]; sol[4][2]; + * + * PS1: The last two lines are only needed for readability of the output, and can be omitted if desired + * PS2: A0 is known beforehand and assumed to be constant, instead of using A0 = (w0-r0w)*(h0-r0h). This reduces the + * length of the results significantly + * PS3: You'll get 8 solutions, 4 for each of the strokewidths r1w and r1h. Some experiments quickly showed which of the solutions + * lead to meaningful strokewidths + * */ + gdouble r0h2 = r0h*r0h; + gdouble r0h3 = r0h2*r0h; + gdouble r0w2 = r0w*r0w; + gdouble w12 = w1*w1; + gdouble h12 = h1*h1; + gdouble A0 = bbox_geom.area(); + gdouble A02 = A0*A0; + + gdouble operant = 4*h1*w1*A0+r0h2*w12-2*h1*r0h*r0w*w1+h12*r0w2; + if (operant >= 0) { + // Of the eight roots, I verified experimentally that these are the two we need + gdouble r1h= fabs((r0h*sqrt(operant)-r0h2*w1-h1*r0h*r0w)/(2*A0-2*r0h*r0w)); + gdouble r1w= fabs(-((h1*r0w*A0+r0h2*r0w*w1)*sqrt(operant)+(-3*h1*r0h*r0w*w1-h12*r0w2)*A0-r0h3*r0w*w12+h1*r0h2*r0w2*w1)/((r0h*A0-r0h2*r0w)*sqrt(operant)-2*h1*A02+(3*h1*r0h*r0w-r0h2*w1)*A0+r0h3*r0w*w1-h1*r0h2*r0w2)); + // If w1 < 0 then the scale will be wrong if we just assume that scale_x = (w1 - r1)/(w0 - r0); + // Therefore we here need the absolute values of w0, w1, h0, h1, and r0, as taken care of earlier + gdouble scale_x = (w1 - r1w)/(w0 - r0w); + gdouble scale_y = (h1 - r1h)/(h0 - r0h); + // Now we account for mirroring by flipping if needed + scale *= Geom::Scale(flip_x * scale_x, flip_y * scale_y); + // Make sure that the lower-left corner of the visual bounding box stays where it is, even though the stroke width has changed + unbudge *= Geom::Translate (-flip_x * stroke_ratio_w * (r0w * scale_x - r1w), -flip_y * stroke_ratio_h * (r0h * scale_y - r1h)); + } else { // Can't find the roots of the quadratic equation. Likely the input parameters are invalid? + scale *= direct; + } + } else { // The stroke should not be scaled, or is zero (or infinite) + if (r0w == 0 || r0w == Geom::infinity() || r0h == 0 || r0h == Geom::infinity()) { // can't calculate, because apparently strokewidth is zero or infinite + scale *= direct; + } else { + scale *= direct_constant_r; + unbudge *= Geom::Translate (flip_x * stroke_ratio_w * r0w * (1 - ratio_x), flip_y * stroke_ratio_h * r0h * (1 - ratio_y)); + } + } + + return (p2o * scale * unbudge * o2n); +} + Geom::Rect get_visual_bbox (Geom::OptRect const &initial_geom_bbox, Geom::Affine const &abs_affine, gdouble const initial_strokewidth, bool const transform_stroke) { - g_assert(initial_geom_bbox); // Find the new geometric bounding box; Do this by transforming each corner of diff --git a/src/sp-item-transform.h b/src/sp-item-transform.h index 552b23e2f..47e0ec0ec 100644 --- a/src/sp-item-transform.h +++ b/src/sp-item-transform.h @@ -9,7 +9,8 @@ void sp_item_scale_rel (SPItem *item, Geom::Scale const &scale); void sp_item_skew_rel (SPItem *item, double skewX, double skewY); void sp_item_move_rel(SPItem *item, Geom::Translate const &tr); -Geom::Affine get_scale_transform_with_stroke (Geom::Rect const &bbox, gdouble strokewidth, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1); +Geom::Affine get_scale_transform_with_uniform_stroke (Geom::Rect const &bbox_visual, gdouble strokewidth, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1); +Geom::Affine get_scale_transform_with_unequal_stroke (Geom::Rect const &bbox_visual, Geom::Rect const &bbox_geom, bool transform_stroke, gdouble x0, gdouble y0, gdouble x1, gdouble y1); Geom::Rect get_visual_bbox (Geom::OptRect const &initial_geom_bbox, Geom::Affine const &abs_affine, gdouble const initial_strokewidth, bool const transform_stroke); diff --git a/src/sp-object-repr.cpp b/src/sp-object-repr.cpp index c6d6729cc..b40017e65 100644 --- a/src/sp-object-repr.cpp +++ b/src/sp-object-repr.cpp @@ -55,7 +55,7 @@ #include "sp-style-elem.h" #include "sp-switch.h" -#include "color-profile-fns.h" +#include "color-profile.h" #include "xml/repr.h" #include "sp-filter.h" #include "filters/blend.h" diff --git a/src/sp-object.cpp b/src/sp-object.cpp index e0b3e3201..c12b9344b 100644 --- a/src/sp-object.cpp +++ b/src/sp-object.cpp @@ -39,7 +39,7 @@ #include "helper/sp-marshal.h" #include "xml/node-event-vector.h" #include "attributes.h" -#include "color-profile-fns.h" +#include "color-profile.h" #include "document.h" #include "style.h" #include "sp-object-repr.h" diff --git a/src/style.cpp b/src/style.cpp index e66c15494..44d2b0761 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -6,6 +6,7 @@ * Peter Moulder <pmoulder@mail.csse.monash.edu.au> * bulia byak <buliabyak@users.sf.net> * Abhishek Sharma + * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. @@ -919,8 +920,137 @@ sp_style_merge_property(SPStyle *style, gint id, gchar const *val) style->text->font.value = g_strdup(val); style->text->font.set = TRUE; style->text->font.inherit = (val && !strcmp(val, "inherit")); + + // Break string into white space separated tokens + std::stringstream os( val ); + Glib::ustring param; + + while (os >> param) { + + // CSS is case insensitive but we're comparing against lowercase strings + Glib::ustring lparam = param.lowercase(); + + if (lparam == "/") { + + os >> param; + // Eat the line-height for the moment as it is not an SVG property. + // lparam = param.lowercase(); + // sp_style_read_ilengthornormal(&style->line_height, lparam); + + } else { + + // Skip if "normal" as that is the default (and we don't know which attribute it applies to). + if (lparam == "normal") continue; + + // Check each property in turn + + // font-style + SPIEnum test_style; + test_style.set = FALSE; + + // Read once to see if param is valid style. If valid, .set will be TRUE. + sp_style_read_ienum(&test_style, lparam.c_str(), enum_font_style, true); + + // If valid style parameter + if (test_style.set) { + + // If not previously set + if (!style->font_style.set) { + style->font_style.set = TRUE; + style->font_style.inherit = test_style.inherit; + style->font_style.value = test_style.value; + style->font_style.computed = test_style.computed; + } + continue; // Next parameter. + } + + // font-variant (small-caps) + SPIEnum test_variant; + test_variant.set = FALSE; + sp_style_read_ienum(&test_variant, lparam.c_str(), enum_font_variant, true); + + // If valid variant parameter + if (test_variant.set) { + + // If not previously set + if (!style->font_variant.set) { + style->font_variant.set = TRUE; + style->font_variant.inherit = test_variant.inherit; + style->font_variant.value = test_variant.value; + style->font_variant.computed = test_variant.computed; + } + continue; // Next parameter. + } + + // font-weight + SPIEnum test_weight; + test_weight.set = FALSE; + sp_style_read_ienum(&test_weight, lparam.c_str(), enum_font_weight, true); + + // If valid weight parameter + if (test_weight.set) { + + // If not previously set + if (!style->font_weight.set) { + style->font_weight.set = TRUE; + style->font_weight.inherit = test_weight.inherit; + style->font_weight.value = test_weight.value; + style->font_weight.computed = test_weight.computed; + } + continue; // Next parameter + } + + // Font-size + SPIFontSize test_size; + test_size.set = FALSE; + + // Read once to see if param is valid size. + sp_style_read_ifontsize( &test_size, lparam.c_str() ); + + // If valid size parameter + if (test_size.set) { + + // If not previously set + if (!style->font_size.set) { + style->font_size.set = TRUE; + style->font_size.inherit = test_size.inherit; + style->font_size.unit = test_size.unit; + style->font_size.value = test_size.value; + style->font_size.computed = test_size.computed; + style->font_size.type = test_size.type; + style->font_size.literal = test_size.literal; + } + continue; + } + + // No valid property value found. + break; + } + } // params + + // The rest must be font-family... + std::string val_s = val; + std::string family = val_s.substr( val_s.find( param ) ); + + if (!style->text_private) sp_style_privatize_text(style); + if (!style->text->font_family.set) { + gchar *val_unquoted = attribute_unquote( family.c_str() ); + sp_style_read_istring(&style->text->font_family, val_unquoted); + if (val_unquoted) g_free (val_unquoted); + } + + // Set all properties to their default values per CSS 2.1 spec if not already set + SPS_READ_IFONTSIZE_IF_UNSET(&style->font_size, "medium" ); + SPS_READ_IENUM_IF_UNSET(&style->font_style, "normal", enum_font_style, true); + SPS_READ_IENUM_IF_UNSET(&style->font_variant, "normal", enum_font_variant, true); + SPS_READ_IENUM_IF_UNSET(&style->font_weight, "normal", enum_font_weight, true); + // Line height is not an SVG property but Inkscape uses it for multi-line text. + // sp_style_read_ilengthornormal(&style->line_height, "normal"); + } + break; + /* Text */ case SP_PROP_TEXT_INDENT: SPS_READ_ILENGTH_IF_UNSET(&style->text_indent, val); @@ -1353,11 +1483,11 @@ sp_style_merge_font_size_from_parent(SPIFontSize &child, SPIFontSize const &pare * fixme: SVG and CSS do not specify clearly, whether we should use * user or screen coordinates (Lauris) */ - if (child.value < SP_CSS_FONT_SIZE_SMALLER) { - child.computed = font_size_table[child.value]; - } else if (child.value == SP_CSS_FONT_SIZE_SMALLER) { + if (child.literal < SP_CSS_FONT_SIZE_SMALLER) { + child.computed = font_size_table[child.literal]; + } else if (child.literal == SP_CSS_FONT_SIZE_SMALLER) { child.computed = parent.computed / 1.2; - } else if (child.value == SP_CSS_FONT_SIZE_LARGER) { + } else if (child.literal == SP_CSS_FONT_SIZE_LARGER) { child.computed = parent.computed * 1.2; } else { /* Illegal value */ @@ -1365,7 +1495,21 @@ sp_style_merge_font_size_from_parent(SPIFontSize &child, SPIFontSize const &pare } else if (child.type == SP_FONT_SIZE_PERCENTAGE) { /* Unlike most other lengths, percentage for font size is relative to parent computed value * rather than viewport. */ - child.computed = parent.computed * SP_F8_16_TO_FLOAT(child.value); + child.computed = parent.computed * child.value; + } else if (child.type == SP_FONT_SIZE_LENGTH) { + switch (child.unit) { + case SP_CSS_UNIT_EM: + /* Relative to parent font size */ + child.computed = parent.computed * child.value; + break; + case SP_CSS_UNIT_EX: + /* Relative to parent font size */ + child.computed = parent.computed * child.value * 0.5; /* Hack */ + break; + default: + /* No change */ + break; + } } } @@ -1805,7 +1949,7 @@ get_relative_font_size_frac(SPIFontSize const &font_size) { switch (font_size.type) { case SP_FONT_SIZE_LITERAL: { - switch (font_size.value) { + switch (font_size.literal) { case SP_CSS_FONT_SIZE_SMALLER: return 5.0 / 6.0; @@ -1818,10 +1962,20 @@ get_relative_font_size_frac(SPIFontSize const &font_size) } case SP_FONT_SIZE_PERCENTAGE: - return SP_F8_16_TO_FLOAT(font_size.value); + return font_size.value; + + case SP_FONT_SIZE_LENGTH: { + switch (font_size.unit ) { + case SP_CSS_UNIT_EM: + return font_size.value; - case SP_FONT_SIZE_LENGTH: - g_assert_not_reached(); + case SP_CSS_UNIT_EX: + return font_size.value * 0.5; + + default: + g_assert_not_reached(); + } + } } g_assert_not_reached(); } @@ -1868,20 +2022,29 @@ sp_style_merge_from_dying_parent(SPStyle *const style, SPStyle const *const pare { /* font-size. Note that we update the computed font-size of style, to assist in em calculations later in this function. */ + if (parent->font_size.set && !parent->font_size.inherit) { + /* Parent has defined font-size */ + if (!style->font_size.set || style->font_size.inherit) { /* font_size inherits the computed value, so we can use the parent value * verbatim. */ style->font_size = parent->font_size; - } else if ( style->font_size.type == SP_FONT_SIZE_LENGTH ) { + + } else if ( style->font_size.type == SP_FONT_SIZE_LENGTH && + style->font_size.unit != SP_CSS_UNIT_EM && + style->font_size.unit != SP_CSS_UNIT_EX ) { + /* Child already has absolute size (stored in computed value), so do nothing. */ + } else if ( style->font_size.type == SP_FONT_SIZE_LITERAL - && style->font_size.value < SP_CSS_FONT_SIZE_SMALLER ) { + && style->font_size.literal < SP_CSS_FONT_SIZE_SMALLER ) { /* Child already has absolute size, but we ensure that the computed value is up-to-date. */ - unsigned const ix = style->font_size.value; + unsigned const ix = style->font_size.literal; g_assert(ix < G_N_ELEMENTS(font_size_table)); style->font_size.computed = font_size_table[ix]; + } else { /* Child has relative size. */ double const child_frac(get_relative_font_size_frac(style->font_size)); @@ -1890,17 +2053,26 @@ sp_style_merge_from_dying_parent(SPStyle *const style, SPStyle const *const pare style->font_size.computed = parent->font_size.computed * child_frac; if ( ( parent->font_size.type == SP_FONT_SIZE_LITERAL - && parent->font_size.value < SP_CSS_FONT_SIZE_SMALLER ) - || parent->font_size.type == SP_FONT_SIZE_LENGTH ) - { + && parent->font_size.literal < SP_CSS_FONT_SIZE_SMALLER ) || + ( parent->font_size.type == SP_FONT_SIZE_LENGTH && + parent->font_size.unit != SP_CSS_UNIT_EM && + parent->font_size.unit != SP_CSS_UNIT_EX ) ) { + /* Absolute value. */ style->font_size.type = SP_FONT_SIZE_LENGTH; - /* .value is unused for SP_FONT_SIZE_LENGTH. */ + /* .value is unused for non ex/em SP_FONT_SIZE_LENGTH. */ + } else { /* Relative value. */ + double const parent_frac(get_relative_font_size_frac(parent->font_size)); - style->font_size.type = SP_FONT_SIZE_PERCENTAGE; - style->font_size.value = SP_F8_16_FROM_FLOAT(parent_frac * child_frac); + if( style->font_size.type == SP_FONT_SIZE_LENGTH ) { + /* Value in terms of ex/em */ + style->font_size.value *= parent_frac; + } else { + style->font_size.value = parent_frac * child_frac; + style->font_size.type = SP_FONT_SIZE_PERCENTAGE; + } } } } @@ -2697,7 +2869,7 @@ sp_style_clear(SPStyle *style) style->font_size.set = FALSE; style->font_size.type = SP_FONT_SIZE_LITERAL; - style->font_size.value = SP_CSS_FONT_SIZE_MEDIUM; + style->font_size.literal = SP_CSS_FONT_SIZE_MEDIUM; style->font_size.computed = 12.0; style->font_style.set = FALSE; style->font_style.value = style->font_style.computed = SP_CSS_FONT_STYLE_NORMAL; @@ -3030,6 +3202,7 @@ sp_style_read_ienum(SPIEnum *val, gchar const *str, SPStyleEnum const *dict, } } } + return; } @@ -3088,9 +3261,8 @@ sp_style_read_ilength(SPILength *val, gchar const *str) val->unit = SP_CSS_UNIT_PT; val->computed = value * PX_PER_PT; } else if (!strcmp(e, "pc")) { - /* 1 pica = 12pt; FIXME: add it to SPUnit */ val->unit = SP_CSS_UNIT_PC; - val->computed = value * PX_PER_PT * 12; + val->computed = value * PX_PER_PC; } else if (!strcmp(e, "mm")) { val->unit = SP_CSS_UNIT_MM; val->computed = value * PX_PER_MM; @@ -3306,52 +3478,29 @@ sp_style_read_ifontsize(SPIFontSize *val, gchar const *str) val->set = TRUE; val->inherit = FALSE; val->type = SP_FONT_SIZE_LITERAL; - val->value = enum_font_size[i].value; + val->literal = enum_font_size[i].value; return; } } /* Invalid */ return; } else { - gdouble value; - gchar *e; - /* fixme: Move this to standard place (Lauris) */ - value = g_ascii_strtod(str, &e); - if ((gchar const *) e != str) { - if (!*e) { - /* Userspace */ - } else if (!strcmp(e, "px")) { - /* Userspace */ - } else if (!strcmp(e, "pt")) { - /* Userspace * DEVICESCALE */ - value *= PX_PER_PT; - } else if (!strcmp(e, "pc")) { - /* 12pt */ - value *= PX_PER_PT * 12.0; - } else if (!strcmp(e, "mm")) { - value *= PX_PER_MM; - } else if (!strcmp(e, "cm")) { - value *= PX_PER_CM; - } else if (!strcmp(e, "in")) { - value *= PX_PER_IN; - } else if (!strcmp(e, "%")) { - /* Percentage */ - val->set = TRUE; - val->inherit = FALSE; + SPILength length; + length.set = FALSE; + sp_style_read_ilength(&length, str); + if( length.set ) { + val->set = TRUE; + val->inherit = length.inherit; + val->unit = length.unit; + val->value = length.value; + val->computed = length.computed; + if( val->unit == SP_CSS_UNIT_PERCENT ) { val->type = SP_FONT_SIZE_PERCENTAGE; - val->value = SP_F8_16_FROM_FLOAT(value / 100.0); - return; } else { - /* Invalid */ - return; + val->type = SP_FONT_SIZE_LENGTH; } - /* Length */ - val->set = TRUE; - val->inherit = FALSE; - val->type = SP_FONT_SIZE_LENGTH; - val->computed = value; - return; } + return; } } @@ -3957,7 +4106,7 @@ sp_style_write_ifontsize(gchar *p, gint const len, gchar const *key, return g_strlcpy(p, os.str().c_str(), len); } else if (val->type == SP_FONT_SIZE_PERCENTAGE) { Inkscape::CSSOStringStream os; - os << key << ":" << (SP_F8_16_TO_FLOAT(val->value) * 100.0) << "%;"; + os << key << ":" << (val->value * 100.0) << "%;"; return g_strlcpy(p, os.str().c_str(), len); } } diff --git a/src/style.h b/src/style.h index 3ca1d4dbc..b8b3d6c0d 100644 --- a/src/style.h +++ b/src/style.h @@ -206,21 +206,24 @@ enum { SP_BASELINE_SHIFT_PERCENTAGE }; -#define SP_FONT_SIZE ((1 << 24) - 1) - +/* +Not used anymore, originally for SPIFontSize #define SP_F8_16_TO_FLOAT(v) ((gdouble) (v) / (1 << 16)) #define SP_F8_16_FROM_FLOAT(v) ((int) ((v) * ((1 << 16) + 0.9999))) +*/ #define SP_STYLE_FLAG_IFSET (1 << 0) #define SP_STYLE_FLAG_IFDIFF (1 << 1) #define SP_STYLE_FLAG_ALWAYS (1 << 2) -/// Fontsize type internal to SPStyle. +/// Fontsize type internal to SPStyle (also used by libnrtype/Layout-TNG-Input.cpp). struct SPIFontSize { unsigned set : 1; unsigned inherit : 1; unsigned type : 2; - unsigned value : 24; + unsigned unit : 4; + unsigned literal: 4; + float value; float computed; }; diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp index e50cb2928..9293564d5 100644 --- a/src/svg/svg-color.cpp +++ b/src/svg/svg-color.cpp @@ -1,5 +1,3 @@ -#define __SP_SVG_COLOR_C__ - /** * \file * Reading \& writing of SVG/CSS colors. @@ -37,15 +35,16 @@ #include "svg-icc-color.h" #if ENABLE_LCMS -#include <lcms.h> #include "color.h" #include "color-profile.h" #include "document.h" #include "inkscape.h" #include "profile-manager.h" #endif // ENABLE_LCMS +#include "cms-system.h" using std::sprintf; +using Inkscape::CMSSystem; struct SPSVGColor { unsigned long rgb; @@ -465,7 +464,7 @@ sp_svg_create_color_hash() #if ENABLE_LCMS //helper function borrowed from src/widgets/sp-color-icc-selector.cpp: -void getThings( DWORD space, gchar const**& namers, gchar const**& tippies, guint const*& scalies ); +void getThings( Inkscape::ColorProfile *prof, gchar const**& namers, gchar const**& tippies, guint const*& scalies ); void icc_color_to_sRGB(SVGICCColor* icc, guchar* r, guchar* g, guchar* b){ guchar color_out[4]; @@ -479,16 +478,18 @@ g_message("profile name: %s", icc->colorProfile.c_str()); gchar const** names = 0; gchar const** tips = 0; guint const* scales = 0; - getThings( prof->getColorSpace(), names, tips, scales ); + getThings( prof, names, tips, scales ); - guint count = _cmsChannelsOf( prof->getColorSpace() ); - if (count>4) count=4; //do we need it? Should we allow an arbitrary number of color values? Or should we limit to a maximum? (max==4?) - for (guint i=0;i<count; i++){ + gint count = CMSSystem::getChannelCount( prof ); + if (count > 4) { + count = 4; //do we need it? Should we allow an arbitrary number of color values? Or should we limit to a maximum? (max==4?) + } + for (gint i = 0; i < count; i++){ color_in[i] = (guchar) ((((gdouble)icc->colors[i])*256.0) * (gdouble)scales[i]); g_message("input[%d]: %d",i, color_in[i]); } - cmsDoTransform( trans, color_in, color_out, 1 ); + CMSSystem::doTransform( trans, color_in, color_out, 1 ); g_message("transform to sRGB done"); } *r = color_out[0]; diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 9bbdd861e..1a662f3be 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -159,7 +159,6 @@ set(ui_SRC dialog/print-colors-preview-dialog.h dialog/print.h dialog/scriptdialog.h - dialog/session-player.h dialog/svg-fonts-dialog.h dialog/swatches.h dialog/tile.h diff --git a/src/ui/cache/svg_preview_cache.cpp b/src/ui/cache/svg_preview_cache.cpp index c631631fb..cd1d65ba7 100644 --- a/src/ui/cache/svg_preview_cache.cpp +++ b/src/ui/cache/svg_preview_cache.cpp @@ -80,8 +80,7 @@ GdkPixbuf* render_pixbuf(NRArenaItem* root, double scale_factor, const Geom::Rec GDK_COLORSPACE_RGB, TRUE, 8, psize, psize, cairo_image_surface_get_stride(s), - (GdkPixbufDestroyNotify)cairo_surface_destroy, - NULL); + ink_cairo_pixbuf_cleanup, s); convert_pixbuf_argb32_to_normal(pixbuf); return pixbuf; diff --git a/src/ui/dialog/color-item.cpp b/src/ui/dialog/color-item.cpp index 89245575c..598827da9 100644 --- a/src/ui/dialog/color-item.cpp +++ b/src/ui/dialog/color-item.cpp @@ -225,7 +225,7 @@ static void colorItemDragBegin( GtkWidget */*widget*/, GdkDragContext* dc, gpoin pixbuf = gdk_pixbuf_new_from_data(cairo_image_surface_get_data(s), GDK_COLORSPACE_RGB, TRUE, 8, width, height, cairo_image_surface_get_stride(s), - (GdkPixbufDestroyNotify) cairo_surface_destroy, NULL); + ink_cairo_pixbuf_cleanup, s); convert_pixbuf_argb32_to_normal(pixbuf); } else { Glib::RefPtr<Gdk::Pixbuf> thumb = Gdk::Pixbuf::create( Gdk::COLORSPACE_RGB, false, 8, width, height ); @@ -517,11 +517,13 @@ void ColorItem::_regenPreview(EekPreview * preview) (def.getG() << 8) | def.getG(), (def.getB() << 8) | def.getB() ); } else { - double w; - cairo_pattern_get_linear_points(_pattern, NULL, NULL, &w, NULL); - int width = ceil(w); + // These correspond to PREVIEW_PIXBUF_WIDTH and VBLOCK from swatches.cpp + // TODO: the pattern to draw should be in the widget that draws the preview, + // so the preview can be scalable + int w = 128; + int h = 16; - cairo_surface_t *s = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, 1); + cairo_surface_t *s = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w, h); cairo_t *ct = cairo_create(s); cairo_set_source(ct, _pattern); cairo_paint(ct); @@ -530,8 +532,8 @@ void ColorItem::_regenPreview(EekPreview * preview) GdkPixbuf* pixbuf = gdk_pixbuf_new_from_data( cairo_image_surface_get_data(s), GDK_COLORSPACE_RGB, TRUE, 8, - width, 1, cairo_image_surface_get_stride(s), - (GdkPixbufDestroyNotify) cairo_surface_destroy, NULL); + w, h, cairo_image_surface_get_stride(s), + ink_cairo_pixbuf_cleanup, s); convert_pixbuf_argb32_to_normal(pixbuf); eek_preview_set_pixbuf( preview, pixbuf ); } diff --git a/src/ui/dialog/dock-behavior.h b/src/ui/dialog/dock-behavior.h index b865af545..98c111719 100644 --- a/src/ui/dialog/dock-behavior.h +++ b/src/ui/dialog/dock-behavior.h @@ -21,7 +21,7 @@ #include "ui/widget/dock-item.h" -#include "libgdl/libgdl.h" +#include "libgdl/gdl.h" #include "behavior.h" diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp index 569dd2311..5d32839cb 100644 --- a/src/ui/dialog/document-properties.cpp +++ b/src/ui/dialog/document-properties.cpp @@ -43,8 +43,6 @@ #include "xml/repr.h" #if ENABLE_LCMS -#include <lcms.h> -//#include "color-profile-fns.h" #include "color-profile.h" #endif // ENABLE_LCMS @@ -309,53 +307,29 @@ DocumentProperties::build_snap() } #if ENABLE_LCMS -static void -lcms_profile_get_name (cmsHPROFILE profile, const gchar **name) -{ - if (profile) - { - *name = cmsTakeProductDesc (profile); - - if (! *name) - *name = cmsTakeProductName (profile); - - if (*name && ! g_utf8_validate (*name, -1, NULL)) - *name = _("(invalid UTF-8 string)"); - } - else - { - *name = _("None"); - } -} - -void -DocumentProperties::populate_available_profiles(){ +void DocumentProperties::populate_available_profiles(){ Glib::ListHandle<Gtk::Widget*> children = _menu.get_children(); for ( Glib::ListHandle<Gtk::Widget*>::iterator it2 = children.begin(); it2 != children.end(); ++it2 ) { _menu.remove(**it2); delete(*it2); } - std::list<Glib::ustring> files = ColorProfile::getProfileFiles(); - for ( std::list<Glib::ustring>::const_iterator it = files.begin(); it != files.end(); ++it ) { - cmsHPROFILE hProfile = cmsOpenProfileFromFile(it->c_str(), "r"); - if ( hProfile ){ - const gchar* name = 0; - lcms_profile_get_name(hProfile, &name); - Gtk::MenuItem* mi = manage(new Gtk::MenuItem()); - mi->set_data("filepath", g_strdup(it->c_str())); - mi->set_data("name", g_strdup(name)); - Gtk::HBox *hbox = manage(new Gtk::HBox()); - hbox->show(); - Gtk::Label* lbl = manage(new Gtk::Label(name)); - lbl->show(); - hbox->pack_start(*lbl, true, true, 0); - mi->add(*hbox); - mi->show_all(); - _menu.append(*mi); -// g_free((void*)name); - cmsCloseProfile(hProfile); - } + std::vector<std::pair<Glib::ustring, Glib::ustring> > pairs = ColorProfile::getProfileFilesWithNames(); + for ( std::vector<std::pair<Glib::ustring, Glib::ustring> >::const_iterator it = pairs.begin(); it != pairs.end(); ++it ) { + Glib::ustring file = it->first; + Glib::ustring name = it->second; + + Gtk::MenuItem* mi = manage(new Gtk::MenuItem()); + mi->set_data("filepath", g_strdup(file.c_str())); + mi->set_data("name", g_strdup(name.c_str())); + Gtk::HBox *hbox = manage(new Gtk::HBox()); + hbox->show(); + Gtk::Label* lbl = manage(new Gtk::Label(name)); + lbl->show(); + hbox->pack_start(*lbl, true, true, 0); + mi->add(*hbox); + mi->show_all(); + _menu.append(*mi); } _menu.show_all(); diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index c6d81b070..68cf3b505 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -965,10 +965,10 @@ public: _settings.add_spinslider(0, SP_ATTR_ELEVATION, _("Elevation"), 0, 360, 1, 1, 0, _("Direction angle for the light source on the YZ plane, in degrees")); _settings.type(LIGHT_POINT); - _settings.add_multispinbutton(/*default x:*/ (double) 0, /*default y:*/ (double) 0, /*default z:*/ (double) 0, SP_ATTR_X, SP_ATTR_Y, SP_ATTR_Z, _("Location"), -99999, 99999, 1, 100, 0, _("X coordinate"), _("Y coordinate"), _("Z coordinate")); + _settings.add_multispinbutton(/*default x:*/ (double) 0, /*default y:*/ (double) 0, /*default z:*/ (double) 0, SP_ATTR_X, SP_ATTR_Y, SP_ATTR_Z, _("Location:"), -99999, 99999, 1, 100, 0, _("X coordinate"), _("Y coordinate"), _("Z coordinate")); _settings.type(LIGHT_SPOT); - _settings.add_multispinbutton(/*default x:*/ (double) 0, /*default y:*/ (double) 0, /*default z:*/ (double) 0, SP_ATTR_X, SP_ATTR_Y, SP_ATTR_Z, _("Location"), -99999, 99999, 1, 100, 0, _("X coordinate"), _("Y coordinate"), _("Z coordinate")); + _settings.add_multispinbutton(/*default x:*/ (double) 0, /*default y:*/ (double) 0, /*default z:*/ (double) 0, SP_ATTR_X, SP_ATTR_Y, SP_ATTR_Z, _("Location:"), -99999, 99999, 1, 100, 0, _("X coordinate"), _("Y coordinate"), _("Z coordinate")); _settings.add_multispinbutton(/*default x:*/ (double) 0, /*default y:*/ (double) 0, /*default z:*/ (double) 0, SP_ATTR_POINTSATX, SP_ATTR_POINTSATY, SP_ATTR_POINTSATZ, _("Points At"), -99999, 99999, 1, 100, 0, _("X coordinate"), _("Y coordinate"), _("Z coordinate")); diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 3c272e691..d11ffd565 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -41,7 +41,7 @@ #include "ui/widget/spinbutton.h" #include "display/nr-filter-gaussian.h" #include "display/nr-filter-types.h" -#include "color-profile-fns.h" +#include "cms-system.h" #include "color-profile.h" #include "display/canvas-grid.h" #include "path-prefix.h" @@ -62,6 +62,7 @@ using Inkscape::UI::Widget::PrefCheckButton; using Inkscape::UI::Widget::PrefRadioButton; using Inkscape::UI::Widget::PrefSpinButton; using Inkscape::UI::Widget::StyleSwatch; +using Inkscape::CMSSystem; InkscapePreferences::InkscapePreferences() @@ -858,7 +859,7 @@ static void profileComboChanged( Gtk::ComboBoxText* combo ) } else { Glib::ustring active = combo->get_active_text(); - Glib::ustring path = get_path_for_profile(active); + Glib::ustring path = CMSSystem::getPathForProfile(active); if ( !path.empty() ) { prefs->setString("/options/displayprofile/uri", path); } @@ -868,7 +869,7 @@ static void profileComboChanged( Gtk::ComboBoxText* combo ) static void proofComboChanged( Gtk::ComboBoxText* combo ) { Glib::ustring active = combo->get_active_text(); - Glib::ustring path = get_path_for_profile(active); + Glib::ustring path = CMSSystem::getPathForProfile(active); if ( !path.empty() ) { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); @@ -906,8 +907,8 @@ void InkscapePreferences::initPageCMS() _page_cms.add_group_header( _("Display adjustment")); Glib::ustring tmpStr; - std::list<Glib::ustring> sources = ColorProfile::getBaseProfileDirs(); - for ( std::list<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) { + std::vector<Glib::ustring> sources = ColorProfile::getBaseProfileDirs(); + for ( std::vector<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) { gchar* part = g_strdup_printf( "\n%s", it->c_str() ); tmpStr += part; g_free(part); @@ -975,7 +976,7 @@ void InkscapePreferences::initPageCMS() #if ENABLE_LCMS { - std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names(); + std::vector<Glib::ustring> names = ::Inkscape::CMSSystem::getDisplayNames(); Glib::ustring current = prefs->getString( "/options/displayprofile/uri" ); gint index = 0; @@ -983,7 +984,7 @@ void InkscapePreferences::initPageCMS() index++; for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) { _cms_display_profile.append_text( *it ); - Glib::ustring path = get_path_for_profile(*it); + Glib::ustring path = CMSSystem::getPathForProfile(*it); if ( !path.empty() && path == current ) { _cms_display_profile.set_active(index); } @@ -993,12 +994,12 @@ void InkscapePreferences::initPageCMS() _cms_display_profile.set_active(0); } - names = ::Inkscape::colorprofile_get_softproof_names(); + names = ::Inkscape::CMSSystem::getSoftproofNames(); current = prefs->getString("/options/softproof/uri"); index = 0; for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) { _cms_proof_profile.append_text( *it ); - Glib::ustring path = get_path_for_profile(*it); + Glib::ustring path = CMSSystem::getPathForProfile(*it); if ( !path.empty() && path == current ) { _cms_proof_profile.set_active(index); } diff --git a/src/ui/dialog/session-player.cpp b/src/ui/dialog/session-player.cpp deleted file mode 100644 index 040c1419b..000000000 --- a/src/ui/dialog/session-player.cpp +++ /dev/null @@ -1,231 +0,0 @@ -/** @file - * @brief Whiteboard session playback control dialog - implementation - */ -/* Authors: - * David Yip <yipdw@rose-hulman.edu> - * Abhishek Sharma - * - * Copyright (c) 2005 Authors - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include <glibmm.h> -#include <glibmm/i18n.h> -#include <gtk/gtk.h> -#include <gtkmm.h> - -#include "inkscape.h" -#include "path-prefix.h" - -#include "desktop.h" -#include "desktop-handles.h" -#include "document.h" - -#include "jabber_whiteboard/node-tracker.h" -#include "jabber_whiteboard/session-manager.h" -#include "jabber_whiteboard/session-file-player.h" - -#include "ui/dialog/session-player.h" - -#include "util/ucompose.hpp" - -namespace Inkscape { - -namespace UI { - -namespace Dialog { - -SessionPlaybackDialog* -SessionPlaybackDialog::create() -{ - return new SessionPlaybackDialogImpl(); -} - -SessionPlaybackDialogImpl::SessionPlaybackDialogImpl() - : _delay(100, 1, 5000, 10, 100), _delayentry(_delay) -{ - this->_desktop = this->getDesktop(); - this->_sm = this->_desktop->whiteboard_session_manager(); - this->_sfp = this->_sm->session_player(); - this->_openfile.set_text(this->_sfp->filename()); - - this->_construct(); - this->get_vbox()->show_all_children(); -} - -SessionPlaybackDialogImpl::~SessionPlaybackDialogImpl() -{ - -} - -void -SessionPlaybackDialogImpl::_construct() -{ - Gtk::VBox* main = this->get_vbox(); - - // Dialog organization - this->_filemanager.set_label(_("Session file")); - this->_playback.set_label(_("Playback controls")); - this->_currentmsgbox.set_label(_("Message information")); - - this->_filemanager.set_border_width(4); - this->_playback.set_border_width(4); - this->_fm.set_border_width(4); - this->_toolbarbox.set_border_width(4); - - // Active session file display - // fixme: Does this mean the active file for the session, or the file for the active session? - // Please indicate which with a TRANSLATORS comment. - this->_labels[0].set_text(_("Active session file:")); - this->_labels[1].set_text(_("Delay (milliseconds):")); - - this->_openfile.set_editable(false); - - this->_filebox.pack_start(this->_labels[0], true, false, 8); - this->_filebox.pack_end(this->_openfile, true, true, 0); - - // Unload/load buttons - this->_close.set_label(_("Close file")); - this->_open.set_label(_("Open new file")); - this->_setdelay.set_label(_("Set delay")); - - // Attach callbacks - this->_close.signal_clicked().connect(sigc::bind< 0 >(sigc::mem_fun(*this, &SessionPlaybackDialogImpl::_respCallback), CLOSE_FILE)); - this->_open.signal_clicked().connect(sigc::bind< 0 >(sigc::mem_fun(*this, &SessionPlaybackDialogImpl::_respCallback), OPEN_FILE)); - this->_setdelay.signal_clicked().connect(sigc::bind< 0 >(sigc::mem_fun(*this, &SessionPlaybackDialogImpl::_respCallback), RESET_DELAY)); - - // Button box - this->_filebuttons.pack_start(this->_close, true, false, 0); - this->_filebuttons.pack_start(this->_open, true, false, 0); - - // Message information box - this->_currentmsgbuffer = Gtk::TextBuffer::create(); - this->_currentmsgview.set_buffer(this->_currentmsgbuffer); - this->_currentmsgview.set_editable(false); - this->_currentmsgview.set_cursor_visible(false); - this->_currentmsgview.set_wrap_mode(Gtk::WRAP_WORD); - this->_currentmsgscroller.add(this->_currentmsgview); - this->_currentmsgbox.add(this->_currentmsgscroller); - this->_sfp->setMessageOutputWidget(this->_currentmsgbuffer); - - // Delay setting - // parameters: initial lower upper single-incr page-incr - this->_delayentry.set_numeric(true); - - // Playback controls - this->_playbackcontrols.set_show_arrow(false); - - this->_controls[0].set_label("Rewind"); - this->_controls[1].set_label("Go back one"); - this->_controls[2].set_label("Pause"); - this->_controls[3].set_label("Go forward one"); - this->_controls[4].set_label("Play"); - - this->_controls[0].set_tooltip(this->_tooltips, _("Rewind")); - this->_controls[1].set_tooltip(this->_tooltips, _("Go back one change")); - this->_controls[2].set_tooltip(this->_tooltips, _("Pause")); - this->_controls[3].set_tooltip(this->_tooltips, _("Go forward one change")); - this->_controls[4].set_tooltip(this->_tooltips, _("Play")); - - for(int i = 0; i < 5; i++) { - this->_playbackcontrols.append(this->_controls[i], sigc::bind< 0 >(sigc::mem_fun(*this, &SessionPlaybackDialogImpl::_respCallback), TOOLBAR_BASE + i)); - } - - this->_delaybox.pack_start(this->_labels[1]); - this->_delaybox.pack_start(this->_delayentry); - this->_delaybox.pack_end(this->_setdelay); - - this->_toolbarbox.pack_start(this->_delaybox); - this->_toolbarbox.pack_end(this->_playbackcontrols); - - // Pack widgets into frames - this->_fm.pack_start(this->_filebox); - this->_fm.pack_end(this->_filebuttons); - - this->_filemanager.add(this->_fm); - this->_playback.add(this->_toolbarbox); - - // Pack widgets into main vbox - main->pack_start(this->_filemanager); - main->pack_start(this->_playback); - main->pack_end(this->_currentmsgbox); -} - -void -SessionPlaybackDialogImpl::_respCallback(int resp) -{ - g_log(NULL, G_LOG_LEVEL_DEBUG, "_respCallback: %u", resp); - switch(resp) { - case CLOSE_FILE: - this->_sfp->unload(); - break; - case OPEN_FILE: { - Gtk::FileChooserDialog sessionfiledlg(_("Open session file"), Gtk::FILE_CHOOSER_ACTION_OPEN); - sessionfiledlg.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); - sessionfiledlg.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK); - - int result = sessionfiledlg.run(); - switch (result) { - case Gtk::RESPONSE_OK: - this->_sm->clearDocument(); - SPDocumentUndo::done(sp_desktop_document(this->_desktop), SP_VERB_NONE, - /* TODO: annotate */ "session-player.cpp:186"); - this->_sm->loadSessionFile(sessionfiledlg.get_filename()); - this->_openfile.set_text(this->_sfp->filename()); - break; - default: - break; - } - break; - } - case RESET_DELAY: - this->_sfp->setDelay(this->_delayentry.get_value_as_int()); - break; - case REWIND: - if (this->_sfp->_playing) { - this->_sfp->stop(); - } - this->_sfp->_curdir = Whiteboard::SessionFilePlayer::BACKWARD; - this->_sfp->start(); - break; - case STEP_REWIND: - this->_sfp->step(Whiteboard::SessionFilePlayer::BACKWARD); - break; - case PAUSE: - this->_sfp->stop(); - break; - case STEP_PLAY: - this->_sfp->step(Whiteboard::SessionFilePlayer::FORWARD); - break; - case PLAY: - if (this->_sfp->_playing) { - this->_sfp->stop(); - } - this->_sfp->_curdir = Whiteboard::SessionFilePlayer::FORWARD; - this->_sfp->start(); - break; - default: - break; - } -} - -} - -} - -} - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/ui/dialog/session-player.h b/src/ui/dialog/session-player.h deleted file mode 100644 index 2d235cd25..000000000 --- a/src/ui/dialog/session-player.h +++ /dev/null @@ -1,134 +0,0 @@ -/** @file - * @brief Whiteboard session playback control dialog - */ -/* Authors: - * David Yip <yipdw@rose-hulman.edu> - * - * Copyright (c) 2005 Authors - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifndef __SESSION_PLAYBACK_DIALOG_H__ -#define __SESSION_PLAYBACK_DIALOG_H__ - -#include "verbs.h" -#include "dialog.h" - -#include "gtkmm/toolbutton.h" -#include "gtkmm/toolbar.h" -#include "gtkmm/expander.h" - -#include "ui/widget/icon-widget.h" - -struct SPDesktop; - -namespace Inkscape { - -namespace Whiteboard { - -class SessionManager; -class SessionFilePlayer; - -} - -namespace UI { - -namespace Dialog { - -class SessionPlaybackDialog : public Dialog { -public: - SessionPlaybackDialog() : Dialog("/dialogs/session_playback", SP_VERB_DIALOG_WHITEBOARD_SESSIONPLAYBACK) - { - - } - - static SessionPlaybackDialog* create(); - - virtual ~SessionPlaybackDialog() - { - - } -private: - SessionPlaybackDialog(SessionPlaybackDialog const& dlg); // no copy - void operator=(SessionPlaybackDialog const& dlg); // no assign -}; - -class SessionPlaybackDialogImpl : public SessionPlaybackDialog { -public: - SessionPlaybackDialogImpl(); - ~SessionPlaybackDialogImpl(); - -private: - // GTK+ widgets - Gtk::HBox _filebox; - Gtk::HBox _filebuttons; - Gtk::HBox _toolbarbox; - Gtk::HBox _delaybox; - - Gtk::Entry _openfile; - - Gtk::Label _labels[2]; - Gtk::ToolButton _controls[5]; - - Gtk::Button _close, _open, _setdelay; - - Gtk::Tooltips _tooltips; - Gtk::Toolbar _playbackcontrols; - Gtk::Adjustment _delay; - Widget::SpinButton _delayentry; - - Gtk::Frame _filemanager; - Gtk::VBox _fm; - - Gtk::Frame _playback; - - Gtk::Expander _currentmsgbox; - Glib::RefPtr<Gtk::TextBuffer> _currentmsgbuffer; - Gtk::TextView _currentmsgview; - Gtk::ScrolledWindow _currentmsgscroller; - - // Construction and callback - void _construct(); - void _respCallback(int resp); - - // SessionManager and SPDesktop pointers - ::SPDesktop* _desktop; - Whiteboard::SessionManager* _sm; - Whiteboard::SessionFilePlayer* _sfp; - - // button values - static unsigned short const CLOSE_FILE = 0; - static unsigned short const OPEN_FILE = 1; - static unsigned short const RESET_DELAY = 2; - - static unsigned short const TOOLBAR_BASE = 10; - static unsigned short const REWIND = TOOLBAR_BASE + 0; - static unsigned short const STEP_REWIND = TOOLBAR_BASE + 1; - static unsigned short const PAUSE = TOOLBAR_BASE + 2; - static unsigned short const STEP_PLAY = TOOLBAR_BASE + 3; - static unsigned short const PLAY = TOOLBAR_BASE + 4; - - - // noncopyable - SessionPlaybackDialogImpl(SessionPlaybackDialogImpl const& dlg); // no copy - void operator=(SessionPlaybackDialogImpl const& dlg); // no assign -}; - -} - -} - -} - -#endif - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/ui/widget/dock-item.h b/src/ui/widget/dock-item.h index 79d69d862..1780b7525 100644 --- a/src/ui/widget/dock-item.h +++ b/src/ui/widget/dock-item.h @@ -19,7 +19,7 @@ #include <gtkmm/paned.h> #include <gtkmm/window.h> -#include "libgdl/libgdl.h" +#include "libgdl/gdl.h" namespace Inkscape { namespace UI { diff --git a/src/ui/widget/dock.h b/src/ui/widget/dock.h index 5836cf83f..bd5685348 100644 --- a/src/ui/widget/dock.h +++ b/src/ui/widget/dock.h @@ -20,7 +20,7 @@ #include "ui/widget/dock-item.h" -#include "libgdl/libgdl.h" +#include "libgdl/gdl.h" namespace Inkscape { namespace UI { diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp index 1af678dc6..075a24f82 100644 --- a/src/widgets/desktop-widget.cpp +++ b/src/widgets/desktop-widget.cpp @@ -29,7 +29,7 @@ #include <2geom/rect.h> #include "box3d-context.h" -#include "color-profile-fns.h" +#include "cms-system.h" #include "conn-avoid-ref.h" #include "desktop-events.h" #include "desktop-handles.h" @@ -194,7 +194,7 @@ void CMSPrefWatcher::hook(EgeColorProfTracker */*tracker*/, gint screen, gint mo guint len = 0; ege_color_prof_tracker_get_profile_for( screen, monitor, reinterpret_cast<gpointer*>(&buf), &len ); - Glib::ustring id = Inkscape::colorprofile_set_display_per( buf, len, screen, monitor ); + Glib::ustring id = Inkscape::CMSSystem::setDisplayPer( buf, len, screen, monitor ); #endif // ENABLE_LCMS } @@ -541,7 +541,7 @@ void SPDesktopWidget::init( SPDesktopWidget *dtw ) #if ENABLE_LCMS bool fromDisplay = prefs->getBool( "/options/displayprofile/from_display"); if ( fromDisplay ) { - Glib::ustring id = Inkscape::colorprofile_get_display_id( 0, 0 ); + Glib::ustring id = Inkscape::CMSSystem::getDisplayId( 0, 0 ); bool enabled = false; if ( dtw->canvas->cms_key ) { @@ -806,7 +806,7 @@ void sp_dtw_color_profile_event(EgeColorProfTracker */*tracker*/, SPDesktopWidge GdkScreen* screen = gtk_widget_get_screen(GTK_WIDGET(dtw)); gint screenNum = gdk_screen_get_number(screen); gint monitor = gdk_screen_get_monitor_at_window(screen, gtk_widget_get_toplevel(GTK_WIDGET(dtw))->window); - Glib::ustring id = Inkscape::colorprofile_get_display_id( screenNum, monitor ); + Glib::ustring id = Inkscape::CMSSystem::getDisplayId( screenNum, monitor ); bool enabled = false; if ( dtw->canvas->cms_key ) { *(dtw->canvas->cms_key) = id; diff --git a/src/widgets/select-toolbar.cpp b/src/widgets/select-toolbar.cpp index eb9b2805d..ba32dc321 100644 --- a/src/widgets/select-toolbar.cpp +++ b/src/widgets/select-toolbar.cpp @@ -159,12 +159,16 @@ sp_object_layout_any_value_changed(GtkAdjustment *adj, SPWidget *spw) document->ensureUpToDate (); Inkscape::Preferences *prefs = Inkscape::Preferences::get(); + + Geom::OptRect bbox_vis = selection->bounds(SPItem::APPROXIMATE_BBOX); + Geom::OptRect bbox_geom = selection->bounds(SPItem::GEOMETRIC_BBOX); + int prefs_bbox = prefs->getInt("/tools/bounding_box"); - SPItem::BBoxType bbox_type = (prefs_bbox ==0)? + SPItem::BBoxType bbox_type = (prefs_bbox == 0)? SPItem::APPROXIMATE_BBOX : SPItem::GEOMETRIC_BBOX; - Geom::OptRect bbox = selection->bounds(bbox_type); + Geom::OptRect bbox_user = selection->bounds(bbox_type); - if ( !bbox ) { + if ( !bbox_user ) { g_object_set_data(G_OBJECT(spw), "update", GINT_TO_POINTER(FALSE)); return; } @@ -186,35 +190,35 @@ sp_object_layout_any_value_changed(GtkAdjustment *adj, SPWidget *spw) x0 = sp_units_get_pixels (a_x->value, unit); y0 = sp_units_get_pixels (a_y->value, unit); x1 = x0 + sp_units_get_pixels (a_w->value, unit); - xrel = sp_units_get_pixels (a_w->value, unit) / bbox->dimensions()[Geom::X]; + xrel = sp_units_get_pixels (a_w->value, unit) / bbox_user->dimensions()[Geom::X]; y1 = y0 + sp_units_get_pixels (a_h->value, unit); - yrel = sp_units_get_pixels (a_h->value, unit) / bbox->dimensions()[Geom::Y]; + yrel = sp_units_get_pixels (a_h->value, unit) / bbox_user->dimensions()[Geom::Y]; } else { double const x0_propn = a_x->value * unit.unittobase; - x0 = bbox->min()[Geom::X] * x0_propn; + x0 = bbox_user->min()[Geom::X] * x0_propn; double const y0_propn = a_y->value * unit.unittobase; - y0 = y0_propn * bbox->min()[Geom::Y]; + y0 = y0_propn * bbox_user->min()[Geom::Y]; xrel = a_w->value * unit.unittobase; - x1 = x0 + xrel * bbox->dimensions()[Geom::X]; + x1 = x0 + xrel * bbox_user->dimensions()[Geom::X]; yrel = a_h->value * unit.unittobase; - y1 = y0 + yrel * bbox->dimensions()[Geom::Y]; + y1 = y0 + yrel * bbox_user->dimensions()[Geom::Y]; } // Keep proportions if lock is on GtkToggleAction *lock = GTK_TOGGLE_ACTION( g_object_get_data(G_OBJECT(spw), "lock") ); if ( gtk_toggle_action_get_active(lock) ) { if (adj == a_h) { - x1 = x0 + yrel * bbox->dimensions()[Geom::X]; + x1 = x0 + yrel * bbox_user->dimensions()[Geom::X]; } else if (adj == a_w) { - y1 = y0 + xrel * bbox->dimensions()[Geom::Y]; + y1 = y0 + xrel * bbox_user->dimensions()[Geom::Y]; } } // scales and moves, in px - double mh = fabs(x0 - bbox->min()[Geom::X]); - double sh = fabs(x1 - bbox->max()[Geom::X]); - double mv = fabs(y0 - bbox->min()[Geom::Y]); - double sv = fabs(y1 - bbox->max()[Geom::Y]); + double mh = fabs(x0 - bbox_user->min()[Geom::X]); + double sh = fabs(x1 - bbox_user->max()[Geom::X]); + double mv = fabs(y0 - bbox_user->min()[Geom::Y]); + double sv = fabs(y1 - bbox_user->max()[Geom::Y]); // unless the unit is %, convert the scales and moves to the unit if (unit.base == SP_UNIT_ABSOLUTE || unit.base == SP_UNIT_DEVICE) { @@ -244,11 +248,11 @@ sp_object_layout_any_value_changed(GtkAdjustment *adj, SPWidget *spw) Geom::Affine scaler; if (bbox_type == SPItem::APPROXIMATE_BBOX) { - // get_scale_transform_with_stroke() is intended for VISUAL (or APPROXIMATE) bounding boxes, not geometrical ones! - scaler = get_scale_transform_with_stroke (*bbox, strokewidth, transform_stroke, x0, y0, x1, y1); + scaler = get_scale_transform_with_unequal_stroke (*bbox_vis, *bbox_geom, transform_stroke, x0, y0, x1, y1); } else { - // we'll trick it into using a geometrical bounding box though, by setting the stroke width to zero - scaler = get_scale_transform_with_stroke (*bbox, 0, false, x0, y0, x1, y1); + // get_scale_transform_with_stroke() is intended for VISUAL (or APPROXIMATE) bounding boxes, not geometrical ones! + // we'll trick it into using a geometric bounding box though, by setting the stroke width to zero + scaler = get_scale_transform_with_uniform_stroke (*bbox_user, 0, false, x0, y0, x1, y1); } sp_selection_apply_affine(selection, scaler); diff --git a/src/widgets/sp-color-icc-selector.cpp b/src/widgets/sp-color-icc-selector.cpp index 94f450e50..888cc2629 100644 --- a/src/widgets/sp-color-icc-selector.cpp +++ b/src/widgets/sp-color-icc-selector.cpp @@ -15,8 +15,9 @@ #define noDEBUG_LCMS #if ENABLE_LCMS -#include "color-profile-fns.h" #include "color-profile.h" +#include "cms-system.h" +#include "color-profile-cms-fns.h" #ifdef DEBUG_LCMS #include "preferences.h" @@ -258,6 +259,12 @@ void getThings( DWORD space, gchar const**& namers, gchar const**& tippies, guin tippies = tips[index]; scalies = scales[index]; } + + +void getThings( Inkscape::ColorProfile *prof, gchar const**& namers, gchar const**& tippies, guint const*& scalies ) { + getThings( asICColorSpaceSig(prof->getColorSpace()), namers, tippies, scalies ); +} + #endif // ENABLE_LCMS @@ -497,12 +504,12 @@ void ColorICCSelector::_switchToProfile( gchar const* name ) #ifdef DEBUG_LCMS g_message("got on out [%04x] [%04x] [%04x] [%04x]", post[0], post[1], post[2], post[3]); #endif // DEBUG_LCMS - guint count = _cmsChannelsOf( newProf->getColorSpace() ); + guint count = _cmsChannelsOf( asICColorSpaceSig(newProf->getColorSpace()) ); gchar const** names = 0; gchar const** tips = 0; guint const* scales = 0; - getThings( newProf->getColorSpace(), names, tips, scales ); + getThings( asICColorSpaceSig(newProf->getColorSpace()), names, tips, scales ); for ( guint i = 0; i < count; i++ ) { gdouble val = (((gdouble)post[i])/65535.0) * (gdouble)scales[i]; @@ -680,12 +687,12 @@ void ColorICCSelector::_setProfile( SVGICCColor* profile ) if ( profile ) { _prof = SP_ACTIVE_DOCUMENT->profileManager->find(profile->colorProfile.c_str()); - if ( _prof && _prof->getProfileClass() != icSigNamedColorClass ) { - _profChannelCount = _cmsChannelsOf( _prof->getColorSpace() ); + if ( _prof && (asICColorProfileClassSig(_prof->getProfileClass()) != icSigNamedColorClass) ) { + _profChannelCount = _cmsChannelsOf( asICColorSpaceSig(_prof->getColorSpace()) ); gchar const** names = 0; gchar const** tips = 0; - getThings( _prof->getColorSpace(), names, tips, _fooScales ); + getThings( asICColorSpaceSig(_prof->getColorSpace()), names, tips, _fooScales ); if ( profChanged ) { for ( guint i = 0; i < _profChannelCount; i++ ) { diff --git a/src/widgets/sp-color-icc-selector.h b/src/widgets/sp-color-icc-selector.h index 9238e3f68..a3915cd48 100644 --- a/src/widgets/sp-color-icc-selector.h +++ b/src/widgets/sp-color-icc-selector.h @@ -8,11 +8,9 @@ #include "sp-color-slider.h" #include "sp-color-selector.h" -#if ENABLE_LCMS -#include "color-profile.h" -#endif // ENABLE_LCMS - - +namespace Inkscape { +struct ColorProfile; +} struct SPColorICCSelector; struct SPColorICCSelectorClass; diff --git a/src/widgets/sp-color-notebook.cpp b/src/widgets/sp-color-notebook.cpp index 377abf219..1324e0b16 100644 --- a/src/widgets/sp-color-notebook.cpp +++ b/src/widgets/sp-color-notebook.cpp @@ -1,5 +1,3 @@ -#define __SP_COLOR_NOTEBOOK_C__ - /* * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages * @@ -37,6 +35,10 @@ #include "../inkscape.h" #include "../document.h" #include "../profile-manager.h" +#include "color-profile.h" +#include "cms-system.h" + +using Inkscape::CMSSystem; struct SPColorNotebookTracker { const gchar* name; @@ -529,14 +531,14 @@ void ColorNotebook::_updateRgbaEntry( const SPColor& color, gfloat alpha ) if (color.icc){ Inkscape::ColorProfile* target_profile = SP_ACTIVE_DOCUMENT->profileManager->find(color.icc->colorProfile.c_str()); if ( target_profile ) - gtk_widget_set_sensitive (_box_outofgamut, target_profile->GamutCheck(color)); + gtk_widget_set_sensitive(_box_outofgamut, target_profile->GamutCheck(color)); } /* update too-much-ink icon */ gtk_widget_set_sensitive (_box_toomuchink, false); if (color.icc){ Inkscape::ColorProfile* prof = SP_ACTIVE_DOCUMENT->profileManager->find(color.icc->colorProfile.c_str()); - if ( prof && ( (prof->getColorSpace() == icSigCmykData) || (prof->getColorSpace() == icSigCmyData) ) ) { + if ( prof && CMSSystem::isPrintColorSpace(prof) ) { gtk_widget_show(GTK_WIDGET(_box_toomuchink)); double ink_sum = 0; for (unsigned int i=0; i<color.icc->colors.size(); i++){ |
